Showing posts with label ip Hacking. Show all posts
Showing posts with label ip Hacking. Show all posts

Tuesday, 11 November 2014

Posted by Haxor On 23:45

HOW TO GET SOMEONE IP WITH PHP



























HY visitors! Here in this will teach you ''how to get someone IP and other details like port & browser etc etc with PHP"......

1: Simply copy this script  and make a PHP file with this:





<?php

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



2: Then upload on any hosting site and send link to victim.

3: Victim information will save in a file called 'log.txt'

IF you are having some problem to make file you can download this script from the following link:

                            Download

Thanks 4 visiting my BLOG!!!!  

Friday, 3 January 2014

Posted by Haxor On 10:49

Quick Way To Change Your IP

Salam From #Haxor Farhan This is my First Post Hope U Like it :p
We've all been in a situation where we want to hide our IP from a page quickly. Now it takes some time to activate the VPN adapter and connecting to the VPN server.


#Requirements:
  • Website to hide your IP from
  • Internet

Here is a very quick way to hide your IP from a page:


# Go to the page you want to hide your IP from (http://www.IPchicken.com).

# Go to the beginning of the URL and add "unbanip.com" for example: UnbanIP.com/www.ipchicken.com

# Press "Hide Me".

#Done, your IP is now changed; you can continue on surfing with your new IP.


Wednesday, 27 November 2013

Posted by Haxor On 02:06