Skip to content

Commit

Permalink
typo fixed (#10)
Browse files Browse the repository at this point in the history
* typo fixed

* Align Uppercase to rest of descriptions in table
  • Loading branch information
secf00tprint authored and JacobReynolds committed Oct 18, 2019
1 parent 8a69d78 commit 6195bae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dbmsIdentification/mysql.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h3 id="sql-injection-detection">DBMS Identification</h3>
<td>page.php?id=' 'mysql' -- </td>
</tr>
<tr>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose errors messages that include the DBMS name.</i></td>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose error messages that include the DBMS name.</i></td>
<td>page.php?id='</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion dbmsIdentification/oracle.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3 id="sql-injection-detection">DBMS Identification</h3>
<td>page.jsp?id='UNION SELECT 1 FROM v$version -- </td>
</tr>
<tr>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose errors messages that include the DBMS name.</i></td>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose error messages that include the DBMS name.</i></td>
<td>page.jsp?id='</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion dbmsIdentification/sqlserver.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ <h3 id="sql-injection-detection">DBMS Identification</h3>
<td>page.asp?id=sql'; SELECT @@SERVERNAME -- </td>
</tr>
<tr>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose errors messages that include the DBMS name.</i></td>
<td>Error messages<br/><i>Note: Triggering DB errors through invalid syntax will sometimes return verbose error messages that include the DBMS name.</i></td>
<td>page.asp?id='</td>
</tr>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion injectionTechniques/obfuscation/oracle.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h3 id="obfuscating-queries">Obfuscating Queries</h3>
<td>SELECT 1 FROM dual -- comment</td>
</tr>
<tr>
<td>If statement</td>
<td>If Statement</td>
<td>BEGIN IF 1=1 THEN dbms_lock.sleep(3); ELSE dbms_lock.sleep(0); END IF;</td>
</tr>
<tr>
Expand Down

0 comments on commit 6195bae

Please sign in to comment.