<?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>Securism Blog &#187; wifi</title>
	<atom:link href="http://blog.securism.com/tag/wifi/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.securism.com</link>
	<description>Simple Security.</description>
	<lastBuildDate>Tue, 31 Jan 2012 05:39:35 +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>WEP Cracking 101</title>
		<link>http://blog.securism.com/2010/09/wep-cracking-101/</link>
		<comments>http://blog.securism.com/2010/09/wep-cracking-101/#comments</comments>
		<pubDate>Thu, 23 Sep 2010 19:51:38 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[Attacks]]></category>
		<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[attack]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=258</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2010/09/wep-cracking-101/" title="WEP Cracking 101"></a>It&#8217;s occured to me, many folks understand that WEP is easy to break, but don&#8217;t know all the steps and just how easy it is.  Here I hope to lay down the basic steps in one coherent post.. demonstrating how &#8230;<p class="read-more"><a href="http://blog.securism.com/2010/09/wep-cracking-101/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2010/09/wep-cracking-101/" title="WEP Cracking 101"></a><p>It&#8217;s occured to me, many folks understand that WEP is easy to break, but don&#8217;t know all the steps and just how easy it is.  Here I hope to lay down the basic steps in one coherent post.. demonstrating how to crack into a wireless network using WEP, with a client attached to it.</p>
<p>Like always&#8230; only do this against your own networks.  The legal grounds are a bit grey here, but the ethical grounds are clear &#8211; you shouldn&#8217;t pick your neighbor&#8217;s doorlock.  Being a security professional also comes with the responsibility to use your skills for good, not evil.</p>
<p><strong>Step 0</strong>: get the software.</p>
<p>I assume you&#8217;re using linux&#8230;.  these tools do work on OSX but they require a bit of tweaking i think, and i  haven&#8217;t done it myself.  so i&#8217;ll just write up linux.  you can use a VM  of linux but the wireless card support is a bit flakier unless you&#8217;re  using a USB card.</p>
<p>basically you only will need two packages, <a href="http://www.kismetwireless.net/">kismet</a>, and <a href="http://www.aircrack-ng.org/">aircrack-ng</a></p>
<p>So:<br />
<em>apt-get install kismet<br />
apt-get install aircrack-ng</em></p>
<p><strong>Step 1</strong>: Find a WEP network</p>
<p>Kismet  is an amazingly powerful scanning tool and I could write much more about  it than we need here.  It takes advantage of the feature in wireless cards to use &#8220;monitor  mode&#8221;, which basically does passive listening for network traffic, and  analyzes the traffic into a nice list.  It can do all sorts of other neat  stuff like gps logging, etc, but that&#8217;s not totally necessary here.</p>
<p>If you don&#8217;t know it, you&#8217;ll need the interface name for your wireless card.  Check it by typing:</p>
<p><em>iwconfig</em><br />
Then, just launch kismet (type &#8216;<em>kismet</em>&#8216;) and then it will prompt you what  your WLAN card is.  It will try and put it into monitor mode and is  usually successful, even with built-in wireless.  If not theres some  troubleshooting to be done&#8230;.</p>
<p>Assuming it works, it will give you a list of networks it sees.  It  &#8216;hops&#8217; channels by switching the frequency the card is listening on and  collects traffic on that frequency.  If there&#8217;s a WEP network in sight,  kismet will highlight it in red, and you will need to pay attention to four things:</p>
<ul>
<li>Its BSSID &#8211; similar to the MAC address of the access point</li>
<li>The ESSID &#8211; the &#8216;friendly name&#8217; of the network</li>
<li>The MAC address of a client that is attached to it.</li>
<li>The channel the AP is broadcasting on</li>
</ul>
<p>Kismet has a column that shows the amount of traffic it sees for both  the AP in general and the client.  You want to target one with a client  attached that is passing data&#8230; they&#8217;re the easiest targets.</p>
<p><em>An alternate path to WLAN monitor mode:</em></p>
<p><em>If kismet has a hard time putting your card into  monitor mode, try running &#8216;airomon-ng start &lt;interfacename&gt;&#8217; and  it should attempt to do so.  If that still doesn&#8217;t work&#8230;. investigate  getting a new card.  The Alfa AWUS306Hf is an excellent USB choice.<br />
</em><br />
<strong>Step 2</strong>: prepare to attack</p>
<p>If it&#8217;s not setup yet, enable monitor mode:</p>
<p><em>airomon-ng start &lt;interfacename&gt;</em>.</p>
<p>Begin  a dump session &#8211; this logs traffic, sort of like a lightweight Wireshark.  You want to filter it to only the transactions we&#8217;re  interested in:</p>
<p><em>airodump-ng &#8211;channel &lt;c&gt; &#8211;bssid &lt;xx:xx:xx:xx:xx&gt; &#8211;write &lt;fileprefixname&gt; &lt;interfacename&gt;</em></p>
<p>where c: the broadcast channel of the network<br />
xx: BSSID of the network<br />
&lt;interfacename&gt; &#8211; self explanatory (i.e. wlan0mon)</p>
<p>Keep this running and launch a new window for the next steps.</p>
<p><strong>Step 3</strong>: do an ARP replay attack</p>
<p>This  essentially looks for an ARP request from the attached client, and  replays it many many times, enough to create a data set large enough to  mount a cryptographic attack against WEP.</p>
<p><em>aireplay-ng &#8211;arpreplay -h &lt;xx:xx:xx:xx:xx:xx&gt; -b &lt;yy:yy:yy:yy:yy:yy:&gt; &lt;interfacename&gt;</em></p>
<p>where xx: the MAC address of the client<br />
yy: BSSID of the network<br />
&lt;interfacename&gt; &#8211; self explanatory (i.e. wlan0mon)</p>
<p>Once this has started, check out the other window.  You should see  the data packets starting to increase rapidly.  When you&#8217;re at about 40k  there is enough to crack a 104-bit WEP key.  The more the better, but  no harm in starting early&#8230;</p>
<p><strong>Step 4</strong>: mount the cryptographic attack</p>
<p>From the same directory you launched the dump process just run this:</p>
<p><em>aicrcrack-ng &lt;fileprefixname&gt;.cap -0</em></p>
<p>This  will launch a window that shows progress.  if it&#8217;s successful, you&#8217;ll  see the key!  if it&#8217;s not&#8230; keep waiting for more traffic.  40k+ data  packets increases your odds tremendously but if it&#8217;s a simple WEP key it  requires less.  This tool will actually keep trying as the packet  capture increases in size so you can keep it running.  Or quit it  (ctrl-c) and wait till you have more.</p>
<p><strong>Step 5</strong>: connect!</p>
<p>If all went well you have broken the  WEP key via the PTW attack method.  Now you can connect to the network.  Close down the dump  sessions, etc etc and bring down your WLAN card &#8211; <em>ifconfig wlan0 down</em></p>
<p>Then you&#8217;ve just gotta connect:<br />
<em>ifconfig &lt;interface&gt; up -</em> bring up the wlan card</p>
<p><em>iwconfig </em><em>&lt;interface&gt;</em><em>mode managed key [WEP key]</em></p>
<p><em>iwconfig </em><em>&lt;interface&gt;</em><em> essid  &#8220;[ESSID]&#8221; (</em>Specify ESSID for the WLAN)</p>
<p><em>dhclient [interface]</em><strong> </strong>(to receive an IP address, netmask, DNS server and default gateway from the Access  Point)</p>
<p>If all goes well you&#8217;ll get an IP and then you&#8217;re good to go, test by pinging or whatever else.</p>
<p>But if it didn&#8217;t work, they may have MAC filtering in place&#8230;</p>
<p>So change the MAC address of your wireless card to the same one that you just cracked with!  This is a bit messy and could freak out the DHCP server of the access point, but it&#8217;s worth a shot.</p>
<p>Bring the card down first:</p>
<p><em>ifconfig wlan0 down<br />
</em></p>
<p>Then change the MAC:</p>
<p><em>i</em><em>fconfig wlan0 hw ether xx:xx:xx:xx:xx:xx</em></p>
<p>Bring it back up again and repeat.  You should be good to go.</p>
<p>This is a simplified walkthrough of a process that is documented many other places.  It should give you a taste of kismet, and the basics of the aircrack-ng suite, which has many many other great features.  I encourage you to read all about it over on <a href="http://www.aircrack-ng.org/">their website</a>.</p>
<p>Additionally, their site also contains a <a href="http://www.aircrack-ng.org/doku.php?id=simple_wep_crack">much more in-depth WEP crack tutorial</a>.</p>
<p>Again, this is not ground-breaking, but it is always good to share the fundamentals in case someone hasn&#8217;t seen it before.  Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2010/09/wep-cracking-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLAN Strategy &#8211; Segmented and Guest Networks</title>
		<link>http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/</link>
		<comments>http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 21:53:11 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Network Design]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=254</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/" title="WLAN Strategy - Segmented and Guest Networks"></a>Continuing my small series on WLAN deployment strategy, now I&#8217;ll cover the two more uses for wireless networks in a business. Segmented Mobile Data Segmented Mobile Data networks can be found in retail environments for mobile point of sale, hospitals &#8230;<p class="read-more"><a href="http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/" title="WLAN Strategy - Segmented and Guest Networks"></a><p>Continuing my small series on WLAN deployment strategy, now I&#8217;ll cover the two more uses for wireless networks in a business.</p>
<p><em>Segmented Mobile Data</em></p>
<p>Segmented Mobile Data networks can  be found in retail environments for mobile point of sale, hospitals for  critical bedside services, warehouses for inventory and logistics, or  many other types of environments.  The main idea behind the use of a  segmented mobile data network remains to isolate critical data; or to  isolate weaker security technologies from the rest of the wireless  network.  Regardless of the reasoning, the goal is the same: keep these  networks separated from everyone else.  The most critical design  decision, therefore, needs to be on the backend &#8211; deciding how exactly  to segment these networks off.</p>
<p>Professional grade wireless  infrastructure like the Cisco 5500 or Motorola RFS7000 is capable of two  completely separated WLANs using the same equipment, which is a  commonly used technique in such a design.  The infrastructure has an  internal firewall that is used to prevent traffic from crossing between  the two networks, and can use VLAN tagging to carry back to the main  network using a shared WAN connection, or can use two entirely separate  WAN connections.  Either way, the infrastructure is functioning as the  separation device.  This also generally needs to be backed up with a  firewall on the wired infrastructure side, restricting the data flows  from the segmented WLAN into the enterprise.</p>
<p>Another alternative  is to use two entirely separate pieces of hardware, with two separate  physical connections back to the enterprise.  Depending on the needs of  your organization, this may be required; if two physically separated  wired LANs are deployed, bridging them with a WLAN device may not align  with the networking vision.</p>
<p>The type of protection necessary for  the the segmented data network again comes down to the technology  available.  For data subject to technical compliance concerns, such as  PCI-DSS or HIPAA, the stronger the better.  At minimum, WPA2-AES with  pre-shared keys can suffice, although a certificate-based authentication  solution is always preferable from a strict data security perspective.</p>
<p>If  the network is being segmented due to equipment that cannot support  strong encryption and authentication technologies, use the strongest  available.  Unfortunately, many types of legacy equipment used in  warehouses today cannot support WPA2-AES, or even WPA-TKIP &#8211; some may be  stuck using WEP!  The weaker the level of protection, the more careful  your segmentation on backend should be.</p>
<p><em>Guest Internet Access</em></p>
<p>Guest  internet access generally is provided by a &#8220;hotspot&#8221;.  Users connect to an  unencrypted network, and are sent to a captive portal page, where they  can either login with pre-assigned credentials, or accept a terms of  service and proceed without any credentials necessary.  Either way,  authentication on such a network is accomplished only at the  application-level, and there is no data protection provided by the WLAN  itself.  As such, these networks should be treated as untrusted and kept  firmly segmented from the enterprise, using the techniques described  above.</p>
<p>A popular alternative deployment method for hotspot guest wireless networks  is to use an entirely separate physical network for guests.  This can dramatically increase the infrastructure costs, but it accomplishes pure segmentation.  A  typical use case for this type of physical segmentation would be a cafe  or retail environment that wants to provide guests internet access, but  doesn&#8217;t want to expose any of their business network.  Purchase a  separate internet backhaul and configure a Wireless LAN dedicated to  this network only.</p>
<p>If your business is subject to compliance regulations, such as PCI, I would strongly recommend using a physically segmented network for guest access.  While this increases capital expenses, it makes scoping activities related to compliance dramatically simpler.  When dealing with auditors, it is always advisable to have clear-cut boundaries around your critical data, and physically isolating any guest network is an easy way to do so.</p>
<p><em>Summary</em></p>
<p>Both of these network types rely on the network administrator segmenting the WLAN from the rest of the network.  It&#8217;s temping to plug an access point into an unmanaged switch and have the wireless &#8220;just work&#8221;, but this can open the network to many avenues of attack.  Assume the worse case at the beginning &#8211; that your WLAN is compromised &#8211; and design its place in the overall enterprise network to minimize the damage that an attacker could do from there.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2010/08/wlan-strategy-segmented-and-guest-networks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLAN Enterprise Mobility Strategy</title>
		<link>http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/</link>
		<comments>http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 18:17:28 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[Network Design]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=251</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/" title="WLAN Enterprise Mobility Strategy"></a>Continuing my series on deployment strategies for enterprise WLAN, today I&#8217;m covering the most common type of WLAN deployment &#8211; extending the enterprise to mobile users. Basic Enterprise Mobility &#8211; Strategy Extending the enterprise&#8217;s wired LAN to wireless is one &#8230;<p class="read-more"><a href="http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/" title="WLAN Enterprise Mobility Strategy"></a><p>Continuing my series on deployment strategies for enterprise WLAN, today I&#8217;m covering the most common type of WLAN deployment &#8211; extending the enterprise to mobile users.</p>
<p><em>Basic Enterprise Mobility &#8211; Strategy</em></p>
<p>Extending the  enterprise&#8217;s wired LAN to wireless is one of the more straightforward  tasks from a network design perspective, but the authentication piece  for the Wireless LAN needs to be strictly controlled.  Fortunately,  wireless can benefit from the widespread deployment of another  technology in the enterprise world &#8211; centralized authentication servers.</p>
<p>Many  enterprise environments utilize a centralized authentication system to  manage their user accounts, with Microsoft Active Directory being one of  the most common.  This system can also be leveraged to provide  authentication to the Wireless LAN.  Active Directory can serve as an  802.1X authenticator, allowing the wireless network to use EAP  technology to authenticate users.  The two EAP methods most worthy of  consideration in a WLAN environment are EAP-TLS, and PEAP.</p>
<p>EAP-TLS  provides full mutual authentication, using a public key infrastructure  to create and manage certificates for both client devices and the  authenticating server.  In practice, it will allow users to seamlessly  authenticate to the wireless network, because the certificate exchange  occurs behind the scenes.  In an Active Directory environment, the  certificates used in authentication can be deployed remotely by the  Domain Controllers.  This works especially well with laptop users, but  can be a challenge with mobile devices that do not have a wired  connection to the network.  Certificates can be pushed to mobile devices  in several ways, such as by use of a dedicated management WLAN or  physical installation via memory cards or barcode scanning, but in a  large environment with many mobile devices, it may be wise to look into  alternatives.</p>
<p>Fortunately, a worthy alternative to EAP-TLS exists  with PEAP authentication.  PEAP provides for similar levels of security  to EAP-TLS, but does not rely on client certificates to authenticate  devices to the network.  Instead, PEAP uses a more traditional username  &amp; password combination.  These credentials can be integrated with an  Active Directory environment, allowing administrators granular control  over what users get access to the WLAN.  PEAP also mitigates the  potentially expensive maintenance cost of managing certificates on  mobile devices.</p>
<p>EAP-TLS and PEAP, combined with WPA2-AES, provide  the strongest authentication and encryption solutions available in  WLAN, and as such should be used to protect any critical data traveling  over the network.  While integration with Active Directory is not  mandatory, because many organizations have such an environment already  deployed, extending its use to cover WLAN authentication is an  attractive option.  If your organization does not have a centralized  authentication system in place already, the deployment of a WLAN can be a  strong motivation to do so.  Several free alternatives to Active  Directory also exist, such as FreeRADIUS.  Some enterprise-grade WLAN  infrastructure also provides the ability to generate and manage  certificates using an internal server hosted on the access point.  Given  the easy integration with common authentication systems, and the  availability of free alternatives, there really is no reason not to  deploy a centralized authentication solution to secure your enterprise  WLAN.</p>
<p>Pre-Shared Keys &#8211; also known as &#8220;Personal&#8221; authentication &#8211;  are generally not appropriate for enterprise environments.  WPA2-AES  using pre-shared keys does not have any documented vulnerabilities, but  any PSK solution relies on sharing authentication credentials between  multiple users and devices.  This can affect the integrity of the  network, and doesn&#8217;t provide any traceability to activities of users on  the network.  It should be avoided in a mission-critical environment.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2010/07/wlan-enterprise-mobility-strategy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WLAN In the Enterprise &#8211; Use Cases and Strategies</title>
		<link>http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/</link>
		<comments>http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/#comments</comments>
		<pubDate>Wed, 21 Jul 2010 18:41:34 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[Network Design]]></category>
		<category><![CDATA[Securism]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=246</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/" title="WLAN In the Enterprise - Use Cases and Strategies"></a>Continuing from my first post in the series, today I hope to cover the common use cases and general strategies for securing an enterprise WLAN. Depending on the size and business needs of the enterprise, a WLAN can be used &#8230;<p class="read-more"><a href="http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/" title="WLAN In the Enterprise - Use Cases and Strategies"></a><p>Continuing from my <a href="http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/">first post</a> in the series, today I hope to cover the common use cases and general strategies for securing an enterprise WLAN.</p>
<p>Depending on the size  and business needs of the enterprise, a WLAN can be used in a few  different ways:</p>
<p><strong>Basic Mobility</strong> &#8211; the most common use of  WLAN is simply to extend the existing wired LAN to wireless users.  This  can have a very positive impact on productivity, allowing users more  flexibility throughout the workspace.</p>
<p><strong>Segmented Mobile Data -</strong> this type of WLAN is one where the network is  dedicated to use of a specific type of data that is segmented from the  main enterprise network.  Typical use cases here are in hospitals or  retail stores, where compliance regulations provide strict guidance on  data protection and segmentation.</p>
<p><strong>Guest Internet Access</strong> &#8211; common in cafes and  large businesses, this type of WLAN typically provides only internet  access and is entirely segmented from the enterprise wired LAN.</p>
<p><strong>Wired  LAN Replacement </strong>- this type of network is becoming a feasible  alternative to the hassle of running cable, and will likely continue to  grow in popularity as time goes by</p>
<p>These use cases can blend  together in any number of ways.  A well thought-out design at the  beginning, along with the right hardware planning, can accomidate these  uses and even more.</p>
<p><em>General Strategy</em></p>
<p>Like other  networking strategies, the use of proper segmentation at the Layer 2  level is critical when designing a WLAN.  Your most critical data flows  should have their own segment, protected by methods like VLAN  segmentation, firewalling, private IP spaces, and routing tables.   Regardless of the authentication and encryption method used for the WLAN  itself, properly designing its location within the enterprise wired LAN  is critical.</p>
<p>Data encryption in 802.11 is accomplished by a  combination of the authentication type with an underlying encryption  method.  Use of WPA2-AES encryption should be considered mandatory in  any new WLAN deployment.  This encryption technology has no documented  vulnerabilities and widespread hardware and software support.  If your  enterprise has devices that do not support WPA2-AES, strongly consider  replacing them.  When designing a network, its security should not be  determined by the weakest link.  Unless there is a business case for  doing something otherwise, use the strongest encryption and  authentication methods available.</p>
<p>My next post will get into some specifics about these different use cases!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2010/07/wlan-in-the-enterprise-use-cases-and-strategies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying A World-Class WLAN in Your Enterprise</title>
		<link>http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/</link>
		<comments>http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 15:23:32 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[Network Design]]></category>
		<category><![CDATA[Securism]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=242</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/" title="Deploying A World-Class WLAN in Your Enterprise"></a>In the last decade, 802.11 Wireless LAN technology has had a dramatic impact on the technology world.  Reliable, high-bandwidth networking is now easily available to anybody who wants it, and the number of WiFi enabled devices continues to grow at &#8230;<p class="read-more"><a href="http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/" title="Deploying A World-Class WLAN in Your Enterprise"></a><p><strong></strong>In the  last decade, 802.11 Wireless LAN technology has had a dramatic impact on  the technology world.  Reliable, high-bandwidth networking is now  easily available to anybody who wants it, and the number of WiFi enabled  devices continues to grow at a dramatic rate.  So naturally, businesses  ranging from basic office environments, to complicated co-located  warehousing/retail/office operations have begun leveraging the  technology as well.  Unfortunately, the ease of setup that WLAN offers  has led to some confusion among even seasoned IT practitioners.  In this series of  posts, I hope to provide some simple guidance to help clarify how to  securely and efficiently manage an enterprise Wireless LAN.</p>
<p><em>Some  History</p>
<p></em>I will not go into the history of the 802.11  standard in too much detail here, although there are a couple of  important points to recognize when thinking about how to deploy a WLAN  in your business.  The most important thing to know is this &#8211; many of  the WLAN security technologies that were being used in deployment until  three or four years ago are vulnerable to several well-known attacks.   If your business has a WLAN that has &#8220;just been working&#8221; for a while &#8211;  it should probably get some attention.</p>
<p>To elaborate on this a bit  further, the most common Wireless LAN encryption method used until late  2003, WEP, has been subject to some <a href="http://www.networkworld.com/research/2002/0909wepprimer.html">very public weaknesses,  almost since its inception</a>.  Its temporary replacement, WPA-TKIP, has  similar (although not as dramatic) weaknesses, that have been <a href="http://dl.aircrack-ng.org/breakingwepandwpa.pdf">public  since at least 2008.</a></p>
<p>Adding insult to these platform-common  weaknesses, some of the alternate, &#8220;more secure&#8221; based authentication  methods advised by vendors have also been picked apart and had their  vulnerabilities shown to the world.  I&#8217;m looking at you, <a href="http://www.wirelessdefence.org/Contents/AsleapMain.htm">LEAP</a>.</p>
<p>To  sum it up briefly &#8211; many networks that people thought were secure in  2003 or 2004 are definitely <em>not</em> secure today.  And unfortunately,  WLAN sometimes is treated like a part of the physical infrastructure &#8211;  if it ain&#8217;t broke, don&#8217;t fix it!</p>
<p><em>Current Tech</em></p>
<p>Fortunately,  802.11 is really starting to come into its own lately, and can be an  extremely secure &#8211; in some ways more secure &#8211; piece of critical  infrastructure.  The extremely solid (and so far unbroken) WPA2-AES  encryption standard defined by 802.11i has had widespread vendor support  since 2007.  And certificate-based authentication methods such as  EAP-TLS, PEAP, and EAP-TTLS have similarly experienced a growth in  support, among not just desktop OS platforms, but mobile operating  systems as well.  And Wireless Intrusion Detection Systems are hitting  their stride, ranging from several robust and effective professional  solutions from vendors like AirTight, Cisco, and Motorola, to fantastic  open-source applications like <a href="http://www.kismetwireless.net/">Kismet</a>.  And robust infrastructure  management software is now making the administration of Wireless LANs  more simple and effective.</p>
<p>In short, today it is possible to  deploy a WLAN that will meet all the use cases an enterprise can throw  at it, and that is as secure as a typical wired LAN infrastructure.</p>
<p>In the next post, I&#8217;ll cover typical enterprise WLAN use cases, and the strategies for designing and securing them.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2010/07/deploying-a-world-class-wlan-in-your-enterprise/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Integrated vs. Standalone RADIUS Servers in WLAN Deployments</title>
		<link>http://blog.securism.com/2009/06/integrated-vs-standalone-radius-servers-in-wlan-deployments/</link>
		<comments>http://blog.securism.com/2009/06/integrated-vs-standalone-radius-servers-in-wlan-deployments/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 00:33:17 +0000</pubDate>
		<dc:creator>Walter Goulet</dc:creator>
				<category><![CDATA[Network Design]]></category>
		<category><![CDATA[EAP]]></category>
		<category><![CDATA[RADIUS]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wireless]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=201</guid>
		<description><![CDATA[Some WLAN infrastructure vendors have built integrated RADIUS servers into access points, thereby eliminating the need to have a RADIUS server deployed to provide advanced authentication schemes. However, relying on integrated RADIUS servers should be carefully considered against the advantages of standalone RADIUS servers.<p class="read-more"><a href="http://blog.securism.com/2009/06/integrated-vs-standalone-radius-servers-in-wlan-deployments/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2009/06/integrated-vs-standalone-radius-servers-in-wlan-deployments/" title="Integrated vs. Standalone RADIUS Servers in WLAN Deployments"></a><p>Several popular WLAN infrastructure vendors include lightweight RADIUS servers directly in their access points. These lightweight servers are typically designed for use by vendors as a backup solution in the event that connectivity to an off-board RADIUS server is lost.</p>
<p>I recently had the opportunity to speak with a WLAN network administrator and we briefly discussed the merits of using an integrated RADIUS server on APs vs using an external RADIUS server for authentication. After thinking about it for a few days, I realized that relying solely on the integrated RADIUS server for wireless authentication is rarely a good idea.</p>
<ul>
<li>Integrated RADIUS servers on APs are typically minimal servers that are designed to serve a small number of clients. If the WLAN network grows in size, the number of users that will need to be configured could easily exceed the limits of the integrated RADIUS servers.</li>
<li>Some integrated RADIUS servers do not offer support for accounting services. This can be either a non-issue or a serious disadvantage depending on the purpose of the WLAN.</li>
<li>Integrated RADIUS servers typically use proprietary local database engines/management interfaces to administer the user database, which makes it difficult to do certain operations like import/export user databases between APs or switch to APs from a different vendor.</li>
<li>Standalone RADIUS servers offer advanced capabilities such as integrating with LDAP or Exchange servers to provide single sign-on capabilities. Integrated RADIUS servers in APs don&#8217;t have such capabilities due to the complexities and necessary protocol support required to interact with other authentication servers.</li>
<li>Integrated RADIUS servers can only support the EAP methods that are built into it, restricting the set of EAP methods that can be used in the WLAN. Standalone RADIUS servers can typically support a much larger number of EAP methods and therefore provide the WLAN administrator with a great deal of flexibility. Note that APs which are acting only as a NAS are only relaying EAP messages between clients and the RADIUS server and therefore don&#8217;t need to have support for the different EAP types built-in.</li>
</ul>
<p>However, even with all of the advantages a standalone RADIUS server offers over an integrated RADIUS server, there are some compelling advantages of the integrated solution: the integrated server is likely only to fail when the AP itself physically fails, the authentication sequence may be slightly faster since there is no extra hop between the AP and a RADIUS server, and of course it doesn&#8217;t require any additional capital expense for your network. In short, the decision between a integrated and standalone server solution should carefully consider short term and long term costs/network growth as well as flexibility in supporting both existing and future requirements of the network.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2009/06/integrated-vs-standalone-radius-servers-in-wlan-deployments/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>No WPA2 With Windows Wireless Zero Config??</title>
		<link>http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/</link>
		<comments>http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 04:34:00 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[Fundamentals]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[aes]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wireless]]></category>
		<category><![CDATA[wpa]]></category>
		<category><![CDATA[wpa2]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=199</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/" title="No WPA2 With Windows Wireless Zero Config??"></a>Wow &#8211; I would never have thought that in this day and age, a major vendor like Microsoft wouldn&#8217;t fully implement a spec.  However, in the case of WPA2 it looks like that they did exactly that &#8211; at least &#8230;<p class="read-more"><a href="http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/" title="No WPA2 With Windows Wireless Zero Config??"></a><p>Wow &#8211; I would never have thought that in this day and age, a major vendor like Microsoft wouldn&#8217;t fully implement a spec.  However, in the case of WPA2 it looks like that they did exactly that &#8211; at least until 2005.</p>
<p>BUT making things more interesting- this was an &#8220;optional&#8221; update with XP SP2, until it was finally rolled into XP SP3.  There is a hotfix for XP SP2 machines in order to support WPA2 &#8211; <a href="http://www.microsoft.com/downloads/details.aspx?familyid=662BB74D-E7C1-48D6-95EE-1459234F4483&amp;displaylang=en">KB 893357.</a></p>
<p>WPA2/AES didnt&#8217; really become widely implemented until 2006, but it was in the 802.11i spec that introduced WPA in 2004.  For a major vendor like MS to not implement it is pretty crazy.  But then again I, as a wireless security professional, didn&#8217;t setup a WPA2/AES network in my home until last month.  So maybe they were onto something.</p>
<p>Anyways, if you&#8217;re using XPSP2 and a WPA2 network &#8211; you need the hotfix, or XPSP3+.  Good luck out there!  I really recommend moving to WPA2/AES, especially considering the improvements in the Nvidia CUDA drivers that are allowing TKIP to be broken in an increasingly short amount of time.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2009/06/no-wpa2-with-windows-wireless-zero-config/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Putting Together a Wireless Security Toolkit for the Android OS</title>
		<link>http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/</link>
		<comments>http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 22:15:53 +0000</pubDate>
		<dc:creator>Jon Janego</dc:creator>
				<category><![CDATA[mobile]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[audit]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://blog.securism.com/?p=193</guid>
		<description><![CDATA[<a href="http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/" title="Putting Together a Wireless Security Toolkit for the Android OS"></a>I&#8217;ve had the first commercially available Android mobile phone, the T-Mobile G1, since the platform launched last fall, and have been really happy with it so far.  As the platform is getting more mature, we are now starting to see &#8230;<p class="read-more"><a href="http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<a href="http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/" title="Putting Together a Wireless Security Toolkit for the Android OS"></a><p>I&#8217;ve had the first commercially available <a href="http://code.google.com/android/">Android</a> mobile phone, the T-Mobile G1, since the platform launched last fall, and have been really happy with it so far.  As the platform is getting more mature, we are now starting to see a lot of new and useful applications out there &#8211; especially some useful for security!  Here&#8217;s a quick rundown of some of the tools that I&#8217;ve found and am using:</p>
<p><a href="http://www.waterflea.com/android.php">WifiScan</a> &#8211; a great wireless discovery application for the platform.  It&#8217;s a powerful wireless audit tool that will log all of the discovered networks in range, and plot them to a KML file for visualization in Google Earth.  This application records information such as BSSID, Channel, Security Type, SSID, etc.  Tremendously useful for a discrete wireless network audit!</p>
<p><a href="http://www.thenewfreedom.net/wp/2009/01/28/port-scandroid/">PortScandroid</a> &#8211; a very basic port scanning application for the platform.  It&#8217;s not terribly useful for use over the cellular data network due to the filtering applied by T-Mobile, but when using 802.11, it gets the job done.  Doesn&#8217;t do any correlation of services to ports, but it performs the basic functions.</p>
<p><a href="http://code.google.com/p/connectbot/">ConnectBot</a> &#8211; this is a full-functioned SSH client for the platform.  Handy.</p>
<p><a href="http://code.google.com/p/android-vnc-viewer/">androidVNC</a> &#8211; a VNC viewer for the Android platform that&#8217;s been forked from the tightVNC viewer development project.  Also a handy tool.  This is still in the beta phases and hasn&#8217;t been added to the Market yet, but it&#8217;s downloadable from the <a href="http://code.google.com/p/android-vnc-viewer/">project page</a>.  Easiest way to install it is to navigate to the project page within the phone&#8217;s browser and just download the APK package.</p>
<p>I am going to conduct a WarDriving contest between my little Android and a full-fledged laptop running <a href="http://www.kismetwireless.net/">Kismet</a> and an external Wifi antenna to see how the signal discovery compares, but initial tests show the G1 to have a pretty remarkable Wifi range.  I&#8217;ll post a followup after I conduct the test.</p>
<p>The Android platform is showing a lot of promise, and for use on a pen-test, these tools could prove to be useful additions to your arsenal &#8211; and are certainly more discrete than using a laptop with a big ol&#8217; antenna!</p>
<p>Thanks <a href="http://synjunkie.blogspot.com/">syn </a>for inspiring me to investigate this &#8211; <a href="http://synjunkie.blogspot.com/2009/02/bob-and-his-iphone-adventures.html">his post about the iPhone wireless toolkit</a> made me wish we had these tools on the Android, and lo-and-behold &#8211; we do!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.securism.com/2009/02/putting-together-a-wireless-security-toolkit-for-the-android-os/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

