<?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>blog.yeleek.co.uk</title>
	<atom:link href="http://blog.yeleek.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yeleek.co.uk</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Fri, 19 Apr 2013 18:02:29 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>Memorable password generator</title>
		<link>http://blog.yeleek.co.uk/2013/04/19/memorable-password-generator/</link>
		<comments>http://blog.yeleek.co.uk/2013/04/19/memorable-password-generator/#comments</comments>
		<pubDate>Fri, 19 Apr 2013 17:13:51 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[Infosec]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=429</guid>
		<description><![CDATA[<p>This tweet regarding Pafwert by Mark Burnett had me thinking as to how to create a *hopefully* platform agnostic memorable password generator. Pafwert: Now Open Source bit.ly/174EKvC #passwords &#8212; Mark Burnett (@m8urnett) April 18, 2013 Whilst in very early stages, and obviously inspired by Parwert, I have created a small Python script using a sqlite3 [...]</p><p>The post <a href="http://blog.yeleek.co.uk/2013/04/19/memorable-password-generator/">Memorable password generator</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This tweet regarding Pafwert by Mark Burnett had me thinking as to how to create a *hopefully* platform agnostic memorable password generator.</p>
<blockquote class="twitter-tweet" width="500"><p>Pafwert: Now Open Source <a href="http://t.co/GFZNp3flst" title="http://bit.ly/174EKvC">bit.ly/174EKvC</a> <a href="https://twitter.com/search/%23passwords">#passwords</a></p>
<p>&mdash; Mark Burnett (@m8urnett) <a href="https://twitter.com/m8urnett/status/324738383643545600">April 18, 2013</a></p></blockquote>
<p><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
<p>Whilst in very early stages, and obviously inspired by Parwert, I have created a small Python script using a sqlite3 database (which stores the words) to generate memorable passwords using the following format:</p>
<p>(dictionary word) (digit or punctuation character) (dictionary word)</p>
<p>The beauty of Python obviously being its availability on Apple, Windows and Linux platforms.</p>
<p><img src="http://blog.yeleek.co.uk/data/python_pw.png" alt="python pw output" /></p>
<p>For any who are interested in this early attempt</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="python" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">#!/usr/bin/env python</span>
<span style="color: #ff7700;font-weight:bold;">import</span> sqlite3
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">string</span>
<span style="color: #ff7700;font-weight:bold;">import</span> <span style="color: #dc143c;">random</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">def</span> word<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>:
	output_word<span style="color: #66cc66;">=</span><span style="color: black;">&#123;</span><span style="color: black;">&#125;</span>
	<span style="color: #808080; font-style: italic;">#connect to the sqlite3 database</span>
	conn <span style="color: #66cc66;">=</span> sqlite3.<span style="color: black;">connect</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'pw_words'</span><span style="color: black;">&#41;</span>
&nbsp;
	c <span style="color: #66cc66;">=</span> conn.<span style="color: black;">cursor</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">#retrieve a single random word from wordstb1 table</span>
	c.<span style="color: black;">execute</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">&quot;SELECT * FROM wordstb1 ORDER BY RANDOM() LIMIT 1&quot;</span><span style="color: black;">&#41;</span>
&nbsp;
	single_word <span style="color: #66cc66;">=</span> c.<span style="color: black;">fetchone</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
	<span style="color: #808080; font-style: italic;">#isolate it</span>
	output_word <span style="color: #66cc66;">=</span> <span style="color: #008000;">str</span><span style="color: black;">&#40;</span>single_word<span style="color: black;">&#91;</span><span style="color: #ff4500;">0</span><span style="color: black;">&#93;</span><span style="color: black;">&#41;</span>
	<span style="color: #ff7700;font-weight:bold;">return</span> output_word
	c.<span style="color: black;">close</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
&nbsp;
<span style="color: #808080; font-style: italic;">#first word</span>
a<span style="color: #66cc66;">=</span>word<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
<span style="color: #808080; font-style: italic;">#second word</span>
b<span style="color: #66cc66;">=</span>word<span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
<span style="color: #808080; font-style: italic;">#rnd contains all punctuation and all digits</span>
rnd<span style="color: #66cc66;">=</span><span style="color: #dc143c;">string</span>.<span style="color: black;">punctuation</span> + <span style="color: #dc143c;">string</span>.<span style="color: black;">digits</span>
<span style="color: #ff7700;font-weight:bold;">print</span> <span style="color: #483d8b;">&quot;Generated password:&quot;</span>
&nbsp;
<span style="color: #ff7700;font-weight:bold;">print</span> a.<span style="color: black;">title</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span> + <span style="color: #dc143c;">random</span>.<span style="color: black;">choice</span><span style="color: black;">&#40;</span>rnd<span style="color: black;">&#41;</span> + b.<span style="color: black;">title</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span></pre></td></tr></table></div>

<p>The post <a href="http://blog.yeleek.co.uk/2013/04/19/memorable-password-generator/">Memorable password generator</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/04/19/memorable-password-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Insidepro Hash Generator</title>
		<link>http://blog.yeleek.co.uk/2013/01/10/insidepro-hash-generator/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/10/insidepro-hash-generator/#comments</comments>
		<pubDate>Thu, 10 Jan 2013 15:15:29 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Misc]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=414</guid>
		<description><![CDATA[<p>Web based hash generator http://www.insidepro.com/hashes.php</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/10/insidepro-hash-generator/">Insidepro Hash Generator</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Web based hash generator<br />
<a href="http://www.insidepro.com/hashes.php" title="http://www.insidepro.com/hashes.php" target="_blank">http://www.insidepro.com/hashes.php</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/10/insidepro-hash-generator/">Insidepro Hash Generator</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/10/insidepro-hash-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YEHG &#8211; PHPCharset Encoder / String Encrypter</title>
		<link>http://blog.yeleek.co.uk/2013/01/08/yehg-phpcharset-encoder-string-encrypter/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/08/yehg-phpcharset-encoder-string-encrypter/#comments</comments>
		<pubDate>Tue, 08 Jan 2013 19:22:09 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Misc]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=412</guid>
		<description><![CDATA[<p>YEHG Encoder/Encrypter can be used for simple obfuscation, but as a website also provides many useful SQLi/XSS examples. Highly recommended! http://yehg.net/encoding/</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/08/yehg-phpcharset-encoder-string-encrypter/">YEHG &#8211; PHPCharset Encoder / String Encrypter</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>YEHG Encoder/Encrypter can be used for simple obfuscation, but as a website also provides many useful SQLi/XSS examples.  Highly recommended!<br />
<a href="http://yehg.net/encoding/" title="http://yehg.net/encoding/" target="_blank">http://yehg.net/encoding/</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/08/yehg-phpcharset-encoder-string-encrypter/">YEHG &#8211; PHPCharset Encoder / String Encrypter</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/08/yehg-phpcharset-encoder-string-encrypter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reaver</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/reaver/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/reaver/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 15:55:18 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=398</guid>
		<description><![CDATA[<p>Reaver implements a brute force attack against Wifi Protected Setup (WPS) registrar PINs in order to recover WPA/WPA2 passphrases http://code.google.com/p/reaver-wps/</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/reaver/">Reaver</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Reaver implements a brute force attack against Wifi Protected Setup (WPS) registrar PINs in order to recover WPA/WPA2 passphrases<br />
<a href="http://code.google.com/p/reaver-wps/" title="http://code.google.com/p/reaver-wps/" target="_blank">http://code.google.com/p/reaver-wps/</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/reaver/">Reaver</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/reaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Credentials Editor</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/windows-credentials-editor/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/windows-credentials-editor/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 15:54:50 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=396</guid>
		<description><![CDATA[<p>Windows Credentials Editor (WCE) is a security tool that allows the individual to list Windows logon sessions and add, change, list and delete associated credentials (e.g.: LM/NT hashes, Kerberos tickets and cleartext passwords). The tool allows users to: Perform Pass-the-Hash on Windows &#8216;Steal&#8217; NTLM credentials from memory (with and without code injection) &#8216;Steal&#8217; Kerberos Tickets [...]</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/windows-credentials-editor/">Windows Credentials Editor</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Windows Credentials Editor (WCE) is a security tool that allows the individual to list Windows logon sessions and add, change, list and delete associated credentials (e.g.: LM/NT hashes, Kerberos tickets and cleartext passwords).</p>
<p>The tool allows users to:</p>
<p>Perform Pass-the-Hash on Windows<br />
&#8216;Steal&#8217; NTLM credentials from memory (with and without code injection)<br />
&#8216;Steal&#8217; Kerberos Tickets from Windows machines<br />
Use the &#8216;stolen&#8217; kerberos Tickets on other Windows or Unix machines to gain access to systems and services<br />
Dump cleartext passwords stored by Windows authentication packages</p>
<p><a href="http://www.ampliasecurity.com/research/wcefaq.html" title="http://www.ampliasecurity.com/research/wcefaq.html" target="_blank">http://www.ampliasecurity.com/research/wcefaq.html</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/windows-credentials-editor/">Windows Credentials Editor</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/windows-credentials-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Havij</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/havij/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/havij/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 15:53:06 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=393</guid>
		<description><![CDATA[<p>Havij is an automated SQL Injection tool that helps penetration testers to find and exploit SQL Injection vulnerabilities on a web page. http://www.itsecteam.com/products/havij-v116-advanced-sql-injection/index.html</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/havij/">Havij</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Havij is an automated SQL Injection tool that helps penetration testers to find and exploit SQL Injection vulnerabilities on a web page.<br />
<a href="http://www.itsecteam.com/products/havij-v116-advanced-sql-injection/index.html" title="http://www.itsecteam.com/products/havij-v116-advanced-sql-injection/index.html" target="_blank">http://www.itsecteam.com/products/havij-v116-advanced-sql-injection/index.html</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/havij/">Havij</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/havij/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BeEF</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/beef/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/beef/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 15:50:58 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=390</guid>
		<description><![CDATA[<p>BeEF (The Browser Exploitation Framework ) allows the professional penetration tester to assess the actual security posture of a target environment by using client-side attack vectors. Unlike other security frameworks, BeEF looks past the hardened network perimeter and client system, and examines exploitability within the context of the one open door: the web browser. http://beefproject.com/</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/beef/">BeEF</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>BeEF (The Browser Exploitation Framework ) allows the professional penetration tester to assess the actual security posture of a target environment by using client-side attack vectors. Unlike other security frameworks, BeEF looks past the hardened network perimeter and client system, and examines exploitability within the context of the one open door: the web browser.<br />
<a href="http://beefproject.com/" title="http://beefproject.com/" target="_blank">http://beefproject.com/</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/beef/">BeEF</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/beef/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSLstrip</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/sslstrip/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/sslstrip/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 15:48:50 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=388</guid>
		<description><![CDATA[<p>SSLstrip will transparently hijack HTTP traffic on a network, watch for HTTPS links and redirects, then map those links into either look-alike HTTP links or homograph-similar HTTPS links http://www.thoughtcrime.org/software/sslstrip/</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/sslstrip/">SSLstrip</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>SSLstrip will transparently hijack HTTP traffic on a network, watch for HTTPS links and redirects, then map those links into either look-alike HTTP links or homograph-similar HTTPS links<br />
<a href="http://www.thoughtcrime.org/software/sslstrip/" title="http://www.thoughtcrime.org/software/sslstrip/">http://www.thoughtcrime.org/software/sslstrip/</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/sslstrip/">SSLstrip</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/sslstrip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ettercap</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/ettercap/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/ettercap/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 14:02:49 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=385</guid>
		<description><![CDATA[<p>Ettercap is a comprehensive suite for man in the middle attacks. It features sniffing of live connections, content filtering on the fly and many other interesting tricks. It supports active and passive dissection of many protocols and includes many features for network and host analysis. http://ettercap.sourceforge.net/</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/ettercap/">Ettercap</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Ettercap is a comprehensive suite for man in the middle attacks. It features sniffing of live connections, content filtering on the fly and many other interesting tricks. It supports active and passive dissection of many protocols and includes many features for network and host analysis.<br />
<a href="http://ettercap.sourceforge.net/" title="http://ettercap.sourceforge.net/" target="_blank">http://ettercap.sourceforge.net/</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/ettercap/">Ettercap</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/ettercap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Social-Engineer Toolkit</title>
		<link>http://blog.yeleek.co.uk/2013/01/02/the-social-engineer-toolkit/</link>
		<comments>http://blog.yeleek.co.uk/2013/01/02/the-social-engineer-toolkit/#comments</comments>
		<pubDate>Wed, 02 Jan 2013 13:59:59 +0000</pubDate>
		<dc:creator>Ben</dc:creator>
				<category><![CDATA[The Library - Security Testing Tools]]></category>

		<guid isPermaLink="false">http://blog.yeleek.co.uk/?p=382</guid>
		<description><![CDATA[<p>The Social-Engineer Toolkit (SET) is specifically designed to perform advanced attacks against the human element. SET was designed to be released with the http://www.social-engineer.org launch and has quickly became a standard tool in a penetration testers arsenal. http://www.social-engineer.org/framework/Computer_Based_Social_Engineering_Tools:_Social_Engineer_Toolkit_(SET)</p><p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/the-social-engineer-toolkit/">The Social-Engineer Toolkit</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The Social-Engineer Toolkit (SET) is specifically designed to perform advanced attacks against the human element. SET was designed to be released with the http://www.social-engineer.org launch and has quickly became a standard tool in a penetration testers arsenal.<br />
<a href="http://www.social-engineer.org/framework/Computer_Based_Social_Engineering_Tools:_Social_Engineer_Toolkit_(SET)" title="http://www.social-engineer.org/framework/Computer_Based_Social_Engineering_Tools:_Social_Engineer_Toolkit_(SET)" target="_blank">http://www.social-engineer.org/framework/Computer_Based_Social_Engineering_Tools:_Social_Engineer_Toolkit_(SET)</a></p>
<p>The post <a href="http://blog.yeleek.co.uk/2013/01/02/the-social-engineer-toolkit/">The Social-Engineer Toolkit</a> appeared first on <a href="http://blog.yeleek.co.uk">blog.yeleek.co.uk</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.yeleek.co.uk/2013/01/02/the-social-engineer-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
