Sunday 28 December 2014

Posted by Haxor On 10:47

How to See Full Private Profile Pictures on Facebook Now!

After launching the timeline in 2012, the first thing that Facebook did was to protect the profile pictures with privacy Settings. Well, it’s actually a good thing. Because you’ll be safer from people with bad intentions. But, what if someone, with his entire body as a private profile picture, sent you a friend-request and at the same time, you can’t recognize his name. Won’t you like to check out at least his profile picture? Obviously, you’ll. In fact, there may come many such situations when you need to check out the private profile picture of someone, but you can’t because of his/her privacy settings. Well, don’t worry. With me, you definitely can!


The trick behind this is very simple and you’ve two different ways to do so. You can choose both or whichever you prefer. Remember, the picture above is of this website’s official facebook page. For facebook pages, you don’t need this trick. Because there is nothing like privacy system for pages’ profile pictures. This trick will work on only those user accounts where the profile picture is not clickable from the user’s timeline, it means you are not allowed to see the full version of the picture according to the user’s privacy settings.

Trick – 1

  1. Visit the user’s timeline.
  2. Right click on his/her profile picture.
  3. Copy the image URL.
  4. Open a new browser tab.
  5. Paste the URL into the address bar.
  6. Remove the entire part from “hprofile-ak-…” to  “…s160x160/” in the URL (without quotes) and make sure there is no double slashes at the removed location of the URL.
  7. Hit ENTER, and there you go.
You may feel some problem during the 6th step. Let me clarify it:
If the URL is like,
https://m.ak.fbcdn.net/sphotos-h.ak/hphotos-ak-prn2/p160x160/1391478_243092262524544_132243173_n.jpg
Then turn it into,
https://m.ak.fbcdn.net/sphotos-h.ak/1391478_243092262524544_132243173_n.jpg

Trick – 2

  1. Get the username or user ID from his/her timeline URL.
  2. Click on this URL 
  3. http://graph.facebook.com/USERNAME/picture?width=2000&height=2000.
  4. Replace ‘USERNAME’ with the his/her username.
  5. Hit ENTER, and there you go.
The 2nd trick is much more easier than the first one. Moreover, if you can’t access his/her profile due to some reasons (like, she blocked you), then too you can get the profile picture without any hassle. You just need to keep his/her username or user ID in mind.
If you feel any problem with this trick or if you have any queries, opinions, thoughts, advice etc, just leave a comment below and I’ll get back to you. Thanks for reading. Have a nice day!

Friday 19 December 2014

Posted by Haxor On 10:55

SOURCE IPTRAK IP

Salam From •?((¯°·._.• hąж๏я ƒąяhąɲ (ƒąяhąɲ яǥ) •._.·°¯))؟•

IP Address Lookup Tool.

INFORMATION:

Here is a simple command line program I made to do IP address lookups. This will retrieve the ISP, Country, City and State, if availible. Here is a screenshot of the results :




USAGE:

The usage is simple, it is a command line program, so it takes arguments.

Code:

Usage : iptrak.py <ip address>


SOURCE CODE:

    # IP Address Lookup Tool
    # Version 1.0.0
    # Coded by BlackMan in Python 3.3.2
    # Download : N/A
    # File     : iptrak.py
     
    #IMPORTS
    import re
    import sys
    import urllib.request
     
    #BYTE CONTROL
    def encodeString(string) : return string.encode('utf-8')
    def decodeString(string) : return string.decode('utf-8')
     
    #DEBUG MESSAGES
    def action(msg)    : print('[#] - ' + msg)
    def alert(msg)     : print('[+] - ' + msg)
    def error(msg)     : print('[!] - ' + msg)
    def errorExit(msg) : raise SystemExit('[!] - ' + msg)
     
    #GET BETWEEN
    def getBetween(source, start, stop):
        search = encodeString(start + '(.*?)' + stop)
        data   = re.compile(search).search(source)
        if data:
            found = decodeString(data.group(1))
            return found.replace('\n', '')
        else:
            return False
     
    #GET IP INFORMATION
    def getIP(ip):
        source  = urllib.request.urlopen('http://www.whatismyipaddress.com/ip/' + ip).read()
        country = getBetween(source, 'Country:</th><td>', ' <img ')
        state   = getBetween(source, 'State/Region:</th><td>', '</td>')
        city    = getBetween(source, 'City:</th><td>', '</td>')
        isp     = getBetween(source, 'ISP:</th><td>', '</td>')
        return [isp, country, state, city]
     
    #VERIFY IP ADDRESS
    def verifyIP(ip):
        if re.match('^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$', ip):
            return True
        else:
            return False
     
    #VERSION CHECK (sys)
    def versionCheck():
        if sys.version_info.major != 3 or sys.version_info.minor != 3:
            errorExit('Requires Python version 3.3 to be installed.')
     
    #START
    versionCheck()
    if len(sys.argv) != 2:
        error('Missing command line arguments!')
        errorExit('Usage : iptrak.py <ip>')
    ip = sys.argv[1]
    if verifyIP(ip) == True:
        try:
            data = getIP(ip)
            alert('IP Address : ' + ip)
            alert('ISP       : ' + data[0])
            alert('Country   : ' + data[1])
            alert('State     : ' + data[2])
            alert('City      : ' + data[3])
        except:
            errorExit('Failed to retrieve IP address information online!')
    else:
        error('Invalid IP address!')
        errorExit('Usage : iptrak.py <ip>')

Thanks for visiting my BLOG!

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!!!!  
Posted by Haxor On 22:41

ENABLE GOD MODE



In this tutorial i will show you to enable God Mode in Windows 7, Windows 8  windows 8.1 & windows Vista. By enabling God mode you can access all your windows setting from one folder which basically seems like master control panel struct and it makes really easy to access and change windows settings. This work both 32 as well as 64 bit operating system. So enjoy gode mode in windows to control computer by following tutorial.


Enable God Mode In Windows 7 And Windows 8 & 8.1:


1. On your desktop, right click and create a New Folder.
2. Rename this folder to the code given below:

GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}

3. Done now double click on this folder you created and you will have access to all your windows operating system settings in one master god mode panel.


Video Tutorial On Enabling God Mode for Windows:



Enjoy Enable God Mode In Windows 7 And Windows 8 & 8.1 as you now have your master godmode panel.

Thanks!
Posted by Haxor On 11:02

           TOP 10 FREE VPN CLIENTS

1. OpenVPN – Free VPN client


OpenVPN.net is a SSL/TLS based VPN, it provides high security and privacy. The biggest difference between PPTP VPN and OpenVPN is you need install OpenVPN client software to use OpenVPN service, and OpenVPN DO NOT work on mobile devices such as iPhone, iPad, Windows Mobile and Android. But OpenVPN works on Windows, Mac and Linux.


2. PacketiX.NET – Free VPN client


PacketiX.NET is a Japan VPN service. It is actually a premium service, but they have PacketiX.NET online test service as well which is free to use. The service is fast and reliable and it is easy to use as well. Just download the VPN connection manager, install and connect! It works on Windows and Linux only.

3. UltraVPN – an OpenVPN client

UltraVPN is a French VPN client that hides your connection from unwanted ears and allows you to use blocked applications. It is also based on OpenVPN service. Traffic is quota is 


4. Hotspot Shield – The most popular free VPN client

HotspotShield is possibly the most popular Free VPN client in the world. It made waves when Hulu was launched as it allowed users to watch Hulu even when it was blocked. Now, they have US & UK based VPN services which you can use to protect yourself from WiFi Snoopers, identity thefts and censorships. The best part is, Hotspot Shield provides unlimited bandwidth and works on both PC & Mac.


5. CyberGhost – Free VPN service

CyberGhost is a free VPN service from Germany which helps you route you through a German IP. The free service is limited to 10GB traffic every month, which is more than enough for surfing on websites, chatting and email. The paid service is also affordable.
The free service is limited to just 1GB per month now.


6. TorVPN

TorVPN is one of the latest entrants into the VPN market. TorVPN is great for bypassing strict content filters, browsing the web anonymously, securing your VOIP communications or remote access to your home/office workstation. With TorVPN you can get an OpenVPN server, SSH access, PPTP & TOR proxy. Free vpn access is restricted to 1GB per month and works on Windows, Mac, iPhone & iPad.


7. SecurityKiss

SecurityKiss is a tunnel service which ensures security and privacy once your data leaves your computer. It redirects all your traffic through an impenetrable tunnel to our security gateway. Everything in the tunnel is encrypted.


8. Your-Freedom

Your-Freedom makes accessible what is unaccessible to you, and it hides your network address from those who don’t need to know. The free service lets you use it for 6 hours a day (up to 15 hours a week). You can either download their software or use the OpenVPN mode. Windows, Mac & Linux platforms are supported.


9. USA IP

For free user, you don’t need to register, just download the USAIP.pbk file, and then double-click on the file and select one of the USAIP PPTP connections. After that, you can access the USA IP free VPN services with the username demo and the password demo. But you will need to reconnect the USA IP network after every 7 minutes.


10. MacroVPN

A new player in the VPN field MacroVPN does provide a Free VPN service, but it is more like an extended trial. There is a limit of 2GB traffic and 256kbps speed.



Thanks for visiting my BLOG!

Monday 10 November 2014

Posted by Haxor On 05:54

           HOW TO USE PHISHING PAGES

























Many of guys asked me how to use phishing pages so this post is only for Beginners....

See the video below:
https://vimeo.com/111415123


how to use phishing files from Farhan_Rg on Vimeo.

                           Thanks 4 visiting my BLOG!!

Friday 7 November 2014

Posted by Haxor On 07:02

      FREE ONLINE SMS TO PAKISTAN

Salam From (Haxor Farhan) FArhan Rg 


Online Link :) (Click HEre)
Your Name:
Receiver Number:
Message:
Characters left:
Captcha Code:
Posted by Haxor On 03:55

HOW TO CREATE A BOOTABLE WINDOWS 8 USB FLASH DRIVE

                                                   SAlam From Haxor FArhan
How to create a bootable Windows 8 USB flash drive :  If anyhow you don’t have a windows 8 installation disk or either it is damaged , then you can also use a bootable  USB pen drive to install windows 8 . The process of creating a bootable windows 8 USB flash drive is fairly easy  . However you would require a windows 8 ISO file . Once you download a Windwos 8 ISo file , you can then follow these instructions to create a bootable windows 8 USB flash drive .

Instructions to create a Bootable Windows 8 USB Flash Drive:

    • Step 1: Download rufus and run it .
    • Step 2: Plug in your USB flash drive into your computer .
    • Step 3:From Rufu’s settings , Choose NTFS as the file system.
    • Step 4: Check “ Quick format ” and ” Create extended label and icon files “
    • Step 5: Check ” Create a bootable disk using ” and click the drive icon beside it to select the windows 8 ISO file .
    • Step 6: Now click on start to create a bootable window 8 USB flash drive .
  • minutes your Windows 8 bootable  USB flash drive will be  ready for installation.
    Reboot your PC and set the bootable flash drive as a first boot priority in the bios settings . Save the bios settings to reboot once again and continue with the windows 8 installation process .
  • Note:You have to allow booting from USB devices in your BIOS settings in order to proceed further with the installation .

  • Thanks for visiting my BLOG!