didou Tue Jan 6 04:22:21 2004 EDT
Modified files:
/phpdoc/en/security index.xml
Log:
more CS
Index: phpdoc/en/security/index.xml
diff -u phpdoc/en/security/index.xml:1.65 phpdoc/en/security/index.xml:1.66
--- phpdoc/en/security/index.xml:1.65 Sat Dec 20 20:23:01 2003
+++ phpdoc/en/security/index.xml Tue Jan 6 04:22:21 2004
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.65 $ -->
+<!-- $Revision: 1.66 $ -->
<chapter id="security.index">
<title>Security</title>
@@ -920,9 +920,9 @@
<title>Attacking Variables with a custom HTML page</title>
<programlisting role="php">
<![CDATA[
-<form method="POST" action="attacktarget?username=badfoo&password=badfoo">
-<input type="hidden" name="username" value="badfoo">
-<input type="hidden" name="password" value="badfoo">
+<form method="post" action="attacktarget?username=badfoo&password=badfoo">
+<input type="hidden" name="username" value="badfoo" />
+<input type="hidden" name="password" value="badfoo" />
</form>
]]>
</programlisting>
@@ -947,10 +947,10 @@
<title>Exploiting common debugging variables</title>
<programlisting role="php">
<![CDATA[
-<form method="POST" action="attacktarget?errors=Y&showerrors=1&debug=1">
-<input type="hidden" name="errors" value="Y">
-<input type="hidden" name="showerrors" value="1">
-<input type="hidden" name="debug" value="1">
+<form method="post" action="attacktarget?errors=Y&showerrors=1&debug=1">
+<input type="hidden" name="errors" value="Y" />
+<input type="hidden" name="showerrors" value="1" />
+<input type="hidden" name="debug" value="1" />
</form>
]]>
</programlisting>