Don`t Learn to HACK - Hack to LEARN.All about Ethical Hacking, Penetration Testing & Computer Security

Saturday, July 21, 2012

IP Adress Grabbing




find-someone-IP-Address


Ethical Hacking Tricks Level A ( For those who already knows little hacking and demanded real hacks trick)
This is an easy method to grab someones IP address using php scripts . What u all need to do is just copy the code below and paste it in notepad and save it as ip.php or anything.
Upload it on any free hosting websites (which support php) like www.ripway.com
Give the link to victim, as soon as the victim clicks on the link IP will be grabbed into a text file in the free hosting site.
Script to be used is :
<?php
$hostname = gethostbyaddr($_SERVER['REMOTE_ADDR']);
$img_number = imagecreate(400,95);
$backcolor = imagecolorallocate($img_number,10,102,153);
$textcolor = imagecolorallocate($img_number,255,255,255);
imagefill($img_number,0,0,$backcolor);
$number0 = ” This is Your IP/Proxy”;
$number1 = ” IP: $_SERVER[HTTP_X_FORWARDED_FOR]“;
$number2 = ” Host/Proxy: $hostname”;
$number4 = ” _________________________________”;
Imagestring($img_number,10,5,5,$number0,$textcolor);
Imagestring($img_number,10,5,25,$number1,$textcolor);
Imagestring($img_number,10,5,45,$number2,$textcolor);
Imagestring($img_number,10,5,50,$number4,$textcolor);
Imagestring($img_number,10,8,50,$number4,$textcolor);
Imagestring($img_number,10,5,10,$number4,$textcolor);
Imagestring($img_number,10,8,10,$number4,$textcolor);
header(“Content-type: image/png”);
imagepng($img_number);
$file=fopen(“Name-here-to-protect-the-File.txt”,”a”);
$file2 = “- IP joined – IP/Proxy: $_SERVER[HTTP_X_FORWARDED_FOR] – Host: $hostname – ‘\n’ “;
fwrite($file, $file2);
fclose($file);
?>

enjoy................

0ther way

you can going to make account in follow site.

Hey want to send Self Destructing Email, Want to convey secret message to someone and even want to make it self destructing.learning.
Second Shortcut is create account on www.self-destructing-email.com

0 comments: