Hacking

Hacking

Hacking is wonderful practise only when you keep on safe side...

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




Fast-forward to last summer, when the first of the latest generation of WEP cracking tools appeared. This current generation uses a combination of statistical techniques focused on unique IVs captured and brute-force dictionary attacks to break 128 bit WEP keys in minutes instead of hours. As Special Agent Bickers noted, \"It doesn\'t matter if you use 128 bit WEP keys, you are vulnerable!\"

WEP Hacking - The Next Generation
WEP is an encryption scheme, based on the RC-4 cipher, that is available on all 802.11a, b and g wireless products. WEP uses a set of bits called a key to scramble information in the data frames as it leaves the access point or client adapter and the scrambled message is then decrypted by the receiver.

Both sides must have the same WEP key, which is usually a total of 64 or 128 bits long. A semi-random 24 bit number called an Initialization Vector (IV), is part of the key, so a 64 bit WEP key actually contains only 40 bits of \"strong\"encryption while a 128 bit key has 104. The IV is placed in encrypted frame\'s header, and is transmitted in plain text.

Traditionally, cracking WEP keys has been a slow and boring process. An attacker would have to capture hundreds of thousands or millions of packets? a process that could take hours or even days, depending on the volume of traffic passing over the wireless network. After enough packets were captured, a WEP cracking program such as Aircrack would be used to find the WEP key.

Basic Directions:
1)Boot from cd
2)Get the wep key
3)Write it down
4)Reboot into windows
5)Connect using wep key.




http://ugotfile.com/file/906539/WiFi.Slax.Wireless.Hacking.BootCD.part1.rar?rid=54322
http://ugotfile.com/file/906540/WiFi.Slax.Wireless.Hacking.BootCD.part2.rar?rid=54322
http://ugotfile.com/file/906541/WiFi.Slax.Wireless.Hacking.BootCD.part3.rar?rid=54322
http://ugotfile.com/file/906543/WiFi.Slax.Wireless.Hacking.BootCD.part4.rar?rid=54322
http://ugotfile.com/file/906545/WiFi.Slax.Wireless.Hacking.BootCD.part5.rar?rid=54322
http://ugotfile.com/file/906546/WiFi.Slax.Wireless.Hacking.BootCD.part6.rar?rid=54322
http://ugotfile.com/file/906544/WiFi.Slax.Wireless.Hacking.BootCD.part7.rar?rid=54322










You already know that if you want to lock down your Wi-Fi network, you should opt for WPA encryption because WEP is easy to crack. But did you know how easy? Take a look. Today we're going to run down, step-by-step, how to crack a Wi-Fi network with WEP security turned on. But first, a word: Knowledge is power, but power doesn't mean you should be a jerk, or do anything illegal. Knowing how to pick a lock doesn't make you a thief. Consider this post educational, or a proof-of-concept intellectual exercise. Dozens of tutorials on how to crack WEP are already all over the internet using this method. Seriously—Google it. This ain't what you'd call "news." But what is surprising is that someone like me, with minimal networking experience, can get this done with free software and a cheap Wi-Fi adapter. Here's how it goes.
What You'll Need
How to Crack a Wi-Fi Network's WEP Password with BackTrack - CRACK0HACKUnless you're a computer security and networking ninja, chances are you don't have all the tools on hand to get this job done. Here's what you'll need:

* A compatible wireless adapter—This is the biggest requirement. You'll need a wireless adapter that's capable of packet injection, and chances are the one in your computer is not. After consulting with my friendly neighborhood security expert, I purchased an Alfa AWUS050NH USB adapter, pictured here, and it set me back about $50 on Amazon. The guy in this video below is using a $12 model he bought on Ebay (and is even selling his router of choice). You won't go wrong with the Alfa, but do your research. There are plenty of resources on getting aircrack-compatible adapters out there.
* A BackTrack 3 Live CD. We already took you on a full screenshot tour of how to install and use BackTrack 3, the Linux Live CD that lets you do all sorts of security testing and tasks. Download yourself a copy of the CD and burn it, or load it up in VMware to get started. (I tried the BackTrack 4 pre-release, and it didn't work as well as BT3. Do yourself a favor and stick with BackTrack 3 for now.)
* A nearby WEP-enabled Wi-Fi network. The signal should be strong and ideally people are using it, connecting and disconnecting their devices from it. The more use it gets while you collect the data you need to run your crack, the better your chances of success.
* Patience with the command line. This is an ten-step process that requires typing in long, arcane commands and waiting around for your Wi-Fi card to collect data in order to crack the password. Like the doctor said to the short person, be a little patient.

Crack That WEP
To crack WEP, you'll need to launch Konsole, BackTrack's built-in command line. It's right there on the taskbar in the lower left corner, second button to the right. Now, the commands. First run the following to get a list of your network interfaces:

airmon-ng

The only one I've got there is labeled ra0. Yours may be different; take note of the label and write it down. From here on in, substitute it in everywhere a command includes (interface). Now, run the following four commands. See the output that I got for them in the screenshot below.


airmon-ng stop (interface)
ifconfig (interface) down
macchanger --mac 00:11:22:33:44:55 (interface)
airmon-ng start (interface)





If you don't get the same results from these commands as pictured here, most likely your network adapter won't work with this particular crack. If you do, you've successfully "faked" a new MAC address on your network interface, 00:11:22:33:44:55.
Now it's time to pick your network. Run:

airodump-ng (interface)

To see a list of wireless networks around you. When you see the one you want, hit Ctrl+C to stop the list. Highlight the row pertaining to the network of interest, and take note of two things: its BSSID and its channel (in the column labeled CH), as pictured below. Obviously the network you want to crack should have WEP encryption (in the ENC) column, not WPA or anything else.




Like I said, hit Ctrl+C to stop this listing. (I had to do this once or twice to find the network I was looking for.) Once you've got it, highlight the BSSID and copy it to your clipboard for reuse in the upcoming commands.
Now we're going to watch what's going on with that network you chose and capture that information to a file. Run:

airodump-ng -c (channel) -w (file name) --bssid (bssid) (interface)

Where (channel) is your network's channel, and (bssid) is the BSSID you just copied to clipboard. You can use the Shift+Insert key combination to paste it into the command. Enter anything descriptive for (file name). I chose "yoyo," which is the network's name I'm cracking.



You'll get output like what's in the window in the background pictured below. Leave that one be. Open a new Konsole window in the foreground, and enter this command:

aireplay-ng -1 0 -a (bssid) -h 00:11:22:33:44:55 -e (essid) (interface)

Here the ESSID is the access point's SSID name, which in my case is yoyo. What you want to get after this command is the reassuring "Association successful" message with that smiley face.




You're almost there. Now it's time for:

aireplay-ng -3 -b (bssid) -h 00:11:22:33:44:55 (interface)

Here we're creating router traffic to capture more throughput faster to speed up our crack. After a few minutes, that front window will start going crazy with read/write packets. (Also, I was unable to surf the web with the yoyo network on a separate computer while this was going on.) Here's the part where you might have to grab yourself a cup of coffee or take a walk. Basically you want to wait until enough data has been collected to run your crack. Watch the number in the "#Data" column—you want it to go above 10,000. (Pictured below it's only at 854.) Depending on the power of your network (mine is inexplicably low at -32 in that screenshot, even though the yoyo AP was in the same room as my adapter), this process could take some time. Wait until that #Data goes over 10k, though—because the crack won't work if it doesn't. In fact, you may need more than 10k, though that seems to be a working threshold for many.









Once you've collected enough data, it's the moment of truth. Launch a third Konsole window and run the following to crack that data you've collected:

aircrack-ng -b (bssid) (file name-01.cap)

Here the filename should be whatever you entered above for (file name). You can browse to your Home directory to see it; it's the one with .cap as the extension. If you didn't get enough data, aircrack will fail and tell you to try again with more. If it




succeeds, it will look like this: How to Crack a Wi-Fi Network's WEP Password with BackTrack - CRACK0HACK The WEP key appears next to "KEY FOUND." Drop the colons and enter it to log onto the network.



QUOTE
Your anonymous SSL tunnel to the Internet - surf, download, share files...

Why do you need Steganos Internet Anonym VPN?

Each visit to the Internet discloses your identity to Web providers – often, without you noticing or wanting this. And also your Internet provider can exactly see which Web sites you visit and what kind of data you upload or download. When you use a WLAN (Wireless Local Area Network) or a hot spot to access the Internet wirelessly, for example at a train station, an airport, or in an Internet café, it won't be a problem for anyone to spy on you.

It just takes the corresponding software to turn you into a transparent user. All your movements on the Web can then be exactly traced – whether you send private e-mails, carry out online purchases, or enter your personal access data. Even when you dial in to online applications, you are unprotected: Someone could "stow away" and use your access data unnoticed in order to manipulate and even delete important data!
Why surf anonymously? I don't have anything to hide.

As soon as you go online, you receive a clear Internet protocol address - an IP. The IP acts like a transmitter on the Internet to fix your location and can therefore be traced back to the very door of your house. Every provider of Web pages can recognize precisely what you have done on their Web site: Which products have you viewed but not bought? Which images have you looked at? And even your provider can view a large amount of data such as the movies and songs you have uploaded and downloaded on your legal file sharing platform.

It's not about whether you have something to hide or not. You have a right to privacy and do not have to justify this. Allow yourself the freedom of surfing the Web anonymously as well as of uploading and downloading data.
How does Steganos Internet Anonym VPN work?

A Virtual Private Network (VPN) establishes a tunnel between your computer and one of the Steganos VPN servers. All your activities on the Internet are then carried out through that tunnel. The tunnel encrypts all information that runs through it by using an SSL connection which protects the information from being eavesdropped – even by your ISP. SSL connections are, for instance, also used for online banking activities. The tunnel leads to one of the Steganos servers which, in turn, forwards the request onto the Web. This way you can act completely anonymously on the Internet. The Web sites you visit will merely see the IP address of the Steganos servers.

All you need to do is install the Steganos Internet Anonym VPN™ service on your machine. A setup wizard assists you in establishing the connection to the server and activating your account. Once your access has been activated, the main window displays the amount of GB you used within the current month, which gives you 100% control of the costs.



Uploading.com Links :-

CODE
http://uploading.com/files/1ma6e4fm/steg.rar
http://uploading.com/files/2a79979m/stegser.rar

Schools, Offices and Governments alike like to put curbs on your freedom. For example
Our College has banned Orkut Use using cyberdrome locks also a search on Google china would reveal considerably censored and doctored results to suit the Chinese government. Schools ban sites so that students are less distracted and use the internet for useful things. Offices ban sites to increase productivity.
So is orkut banned at your workplace or School ? , if yes we have got the perfect solution for you. We always do articles on opera Mini, thats because Opera Mini was the very first cool software me and my brother installed on our mobile phones. So how can Opera Mini help you access blocked and banned sites ?

It works like any other proxy, for people who dont know, proxies are web servers who fetch the page for you. For example, you cant go to the market, you tell your maid to get the stuff and give it to you. In the same way, when your computer is banned from accessing Orkut, you can ask another computer (a proxy) to get Orkut.com for your computer.
You may also log onto http://www.operamini.com/beta/simulator/ and browse to the site of your choice , as the simulator uses a proxy based in Norway, your sites open as though you are not sitting in your school or office, but in Norway in Europe. And here is proof that Orkut works in Opera Mini simulator even if its banned.





To our friends in ACET : We are looking for more such proxies which will allow you to access Orkut.com easily , the current thing we have discovered to access banned Orkut does not allow posting scraps till now, but be aware, we are working on finding new stuff to help you get over the BAN on Orkut placed by your governments. ;)

Orkutproxy.in also looks good, but always think twice before using your username and password on proxies !!!


“WarVOX is a suite of tools for exploring, classifying, and auditing
telephone systems. Unlike normal wardialing tools, WarVOX works with the actual audio from each call and does not use a modem
directly. This model allows WarVOX to find and classify a wide range of interesting lines, including modems, faxes, voice mail boxes, PBXs, loops, dial tones, IVRs, and forwarders. WarVOX provides the unique ability to classify all telephone lines in a given range, not just those connected to modems, allowing for a comprehensive audit of a telephone system.

WarVOX requires no telephony hardware and is massively scalable by
leveraging Internet-based VoIP providers. A single instance of WarVOX on a residential broadband connection
, with a typical VoIP account, can scan over 1,000 numbers per hour.

WarVOX is designed to run on modern Linux systems, specifically Ubuntu 8.10 and BackTrack 4.

Download :
http://warvox.org/install.html





This tool has many different tools to hack and crack wifi so you can use your neighbours internet and do whatever. Tools for Windows and Linux also some nice extra tools!

* Aircrack
* Wireshark
* Ettercap
* Netstumbler
* Airsnare
* WIFIfofum
* Wdriver
* Pong
* CommView
* Airsnort
* AiroPeek
* Knsgem 2
* Aptools
* And A Nice PDF File

Linux Hacks:

* Airpwn
* WEPcrack
* Prismstumbler
* WIFIscanner
* Airfart
* Magicmap
* WPA-cracker
* Wellenreiter
* Void
* Kismet
* Cowpatty
* WIFIzoo
* And A Nice PDF File

download from:

http://rapidshare.com/files/275668924/www.codehacks.org.wifi.part2.rar
http://rapidshare.com/files/275668920/www.codehacks.org.wifi.part1.rar

Okay, before we begin, I give you Hungry Hacker´s fun facts on WEP.

FUN FACTS:

-WEP stands for Wired Equivalent Privacy
-WEP is used to secure wireless networks from eavesdroppers
-WEP usually takes hours to crack

WEP has always been a long and tedious job, untill recently, when two FBI agents demonstrated how it´s possible to crack WEP in under 4 minutes (3 to be exact).

Here is how they did it:

1. Run Kismet to find your target network. Get the SSID and the channel.
2. Run Airodump and start capturing data.
3. With Aireplay, start replaying a packet on the target network. (You can find a ‘good packet’ by looking at the BSSID MAC on Kismet and comparing it to the captured packet’s BSSID MAC).
4. Watch as Airodump goes crazy with new IVs. Thanks to Aireplay.
5. Stop Airodump when you have about 1,000 IVs.
6. Run Aircrack on the captured file.
7. You should see the WEP key infront of you now.

PROGRAMS USED:

-Kismet

Kismet is an 802.11 layer2 wireless network detector, sniffer, and intrusion detection system.
It is designed for Linux.

You can download it at www.kismetwireless.net
A windows version can be downloaded at http://www.renderlab.net/projects/wrt54g/kiswin.html

-Aircrack (Includes Airodump, Aireplay, Aircrack and optional Airdecap for decrypting WEP/WPA capture files)

Aircrack is the 802.11 WEP and WPA-PSK keys cracking program that can recover this keys once enough encrypted packets have been captured with airodump.

Airdecap is used to decrypt WEP/WPA capture files.

Airmon can be used to configure the wireless card.

Aireplay is used to inject frames.

Airodump is used for packet capturing of raw 802.11 frames and is particularly suitable for collecting WEP IVs (initialization vectors) for the intent of using them with aircrack-ng.

Download the whole suit at www.aircrack-ng.org

Counter

Followers

Subscribe Via Email &Sms

Enter your email address:

Expert Hackers

Also Subscribe Via Sms Just click here to follow via
SMS