<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>leetupload.com blagosphere</title>
	
	<link>http://leetupload.com/blagosphere</link>
	<description />
	<lastBuildDate>Sat, 04 May 2013 05:08:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/leetuploadnews" /><feedburner:info uri="leetuploadnews" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Microsoft HotSpot in Forbes Magazine Firmware Lifting “Hack”</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/BrEa1XaM3ZQ/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2013/05/04/90/#comments</comments>
		<pubDate>Sat, 04 May 2013 04:51:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=90</guid>
		<description><![CDATA[You may have heard about the free Wi-Fi hotspot that Microsoft pushed out in random Forbes magazines&#8230; This device comes with a T-Mobile GSM SIM card with the data service that lasts for only 15 days . I was curious &#8230; <a href="http://leetupload.com/blagosphere/index.php/2013/05/04/90/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>You may have heard about the free Wi-Fi hotspot that <a href="http://www.winbeta.org/news/microsoft-putting-routers-forbes-magazine-push-office-365">Microsoft pushed out in random Forbes magazines</a>&#8230; This device comes with a T-Mobile GSM SIM card with the data service that lasts for only 15 days . I was curious as to what was making this tick, so I decided that it would be a fun experiment to lift the contents of this Linux OS off of the device.</p>
<p>The device has the following chips:</p>
<blockquote><p>United-Tek H1602PR</p>
<p>Ralink RT5350F</p>
<p>Etron Tech EM63A165TS</p></blockquote>
<p>These chips should be fairly obvious as to what purpose they serve, if not with a quick Google search.</p>
<p>The device has the following ports open with services started on by default: 80, 23, and 5820. That last one hosts a redirect site for a supposed login (or that&#8217;s what my phone seemed to think) in order to initiate the T-Mobile service? Maybe accessing that page triggers the &#8220;activation&#8221;. Please correct me either way.</p>
<p>Anyway, without further adieu, here are the steps I had to take in order to get the filesystem off of the device.</p>
<p>1. Plug device into computer via microusb and connect battery (this will keep the battery charged)<br />
2. Wait for AP to startup, and connect to the SSID: Microsoft_Office365 with the password Office365<br />
3. Visit 192.168.100.1:80 and login as admin/admin</p>
<p><a href="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi_web.png"><img class="alignnone size-medium wp-image-94" alt="portable_wifi_web" src="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi_web-300x289.png" width="300" height="289" /></a><br />
4. Do whatever you want on this web interface regarding the router&#8217;s settings<br />
4a. The FTP setting in here does not actually work, we need to do this via telnet (23)<br />
5. telnet 192.168.100.1<br />
6. Login as username: admin password: admin<br />
7. cd /bin<br />
8. vi new.conf<br />
9. Paste this in vi:</p>
<blockquote><p>ServerName test<br />
DefaultAddress 127.0.0.1<br />
ServerType standalone<br />
DefaultServer on<br />
AuthUserFile /etc/passwd<br />
Port 21<br />
Umask 022<br />
MaxInstances 10<br />
User admin<br />
Group admin<br />
DefaultRoot /<br />
UseReverseDNS off<br />
IdentLookups off<br />
RootLogin on<br />
DelayEngine off</p></blockquote>
<p>10. We are changing the DefaultRoot to be the root directory, instead of /media/<br />
11. In the same directory, type: proftpd -c new.conf<br />
12. This will take our new conf and run it with our FTPD</p>
<p><a href="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi.png"><img class="alignnone size-medium wp-image-95" alt="portable_wifi" src="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi-300x241.png" width="300" height="241" /></a><br />
13. Login as admin/admin on 192.168.100.1 via FTP, 21<br />
14. Copy whatever you want off of the device. Enjoy!</p>
<p><a href="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi_proftpd.png"><img class="alignnone size-medium wp-image-96" alt="portable_wifi_proftpd" src="http://leetupload.com/blagosphere/wp-content/uploads/2013/05/portable_wifi_proftpd-300x254.png" width="300" height="254" /></a></p>
<p>Side note: I believe that you could simply copy off the device block and have it all neatly within a single file by performing the following, then copying it off via our FTP server:</p>
<blockquote><p>cp /dev/mtdblock0 /tmp/rootfs</p></blockquote>
<p>In case you don&#8217;t want to go through all of that, here are the files extracted: <a href="http://leetupload.com/ralink_ms_hotspot_forbes.rar">Ralink FileSystem</a></p>
<p>Cheers!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=BrEa1XaM3ZQ:CZbh5Dq5j3M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=BrEa1XaM3ZQ:CZbh5Dq5j3M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=BrEa1XaM3ZQ:CZbh5Dq5j3M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=BrEa1XaM3ZQ:CZbh5Dq5j3M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=BrEa1XaM3ZQ:CZbh5Dq5j3M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=BrEa1XaM3ZQ:CZbh5Dq5j3M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=BrEa1XaM3ZQ:CZbh5Dq5j3M:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/BrEa1XaM3ZQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2013/05/04/90/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2013/05/04/90/</feedburner:origLink></item>
		<item>
		<title>6 Years</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/5bkjgifswi4/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2013/03/25/6-years/#comments</comments>
		<pubDate>Mon, 25 Mar 2013 03:22:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=84</guid>
		<description><![CDATA[My site has graced the Internet with its presence for 6 years. Six whole years. That&#8217;s a lot of bandwidth consumption. I hope all of you have enjoyed it!]]></description>
				<content:encoded><![CDATA[<p>My site has graced the Internet with its presence for 6 years. Six whole years. That&#8217;s a lot of bandwidth consumption. I hope all of you have enjoyed it!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=5bkjgifswi4:cWXkcopZXLc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=5bkjgifswi4:cWXkcopZXLc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=5bkjgifswi4:cWXkcopZXLc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=5bkjgifswi4:cWXkcopZXLc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=5bkjgifswi4:cWXkcopZXLc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=5bkjgifswi4:cWXkcopZXLc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=5bkjgifswi4:cWXkcopZXLc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/5bkjgifswi4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2013/03/25/6-years/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2013/03/25/6-years/</feedburner:origLink></item>
		<item>
		<title>No Root for You — Republished</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/fPAPuuRL7Sg/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2013/01/21/no-root-for-you-republished/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 21:57:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=73</guid>
		<description><![CDATA[Even though my publisher went belly-up, never fear. I have republished my book and it is still available online. Check to the side panel for a copy of my book, or search on Amazon and the like.]]></description>
				<content:encoded><![CDATA[<p>Even though my publisher went belly-up, never fear. I have republished my book and it is still available online. Check to the side panel for a copy of my book, or search on Amazon and the like.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=fPAPuuRL7Sg:5-jvLHuAH1c:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=fPAPuuRL7Sg:5-jvLHuAH1c:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=fPAPuuRL7Sg:5-jvLHuAH1c:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=fPAPuuRL7Sg:5-jvLHuAH1c:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=fPAPuuRL7Sg:5-jvLHuAH1c:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=fPAPuuRL7Sg:5-jvLHuAH1c:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=fPAPuuRL7Sg:5-jvLHuAH1c:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/fPAPuuRL7Sg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2013/01/21/no-root-for-you-republished/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2013/01/21/no-root-for-you-republished/</feedburner:origLink></item>
		<item>
		<title>Site Redesigned!</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/gW1l--6LBWc/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2013/01/21/site-being-redesigned/#comments</comments>
		<pubDate>Mon, 21 Jan 2013 21:11:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=71</guid>
		<description><![CDATA[Hi all, The site has been fully redesigned! Please let me know your thoughts as I wish to constantly improve this site.]]></description>
				<content:encoded><![CDATA[<p>Hi all,</p>
<p>The site has been fully redesigned! Please let me know your thoughts as I wish to constantly improve this site.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=gW1l--6LBWc:XTgNpFeKPyE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=gW1l--6LBWc:XTgNpFeKPyE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=gW1l--6LBWc:XTgNpFeKPyE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=gW1l--6LBWc:XTgNpFeKPyE:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=gW1l--6LBWc:XTgNpFeKPyE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=gW1l--6LBWc:XTgNpFeKPyE:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=gW1l--6LBWc:XTgNpFeKPyE:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/gW1l--6LBWc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2013/01/21/site-being-redesigned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2013/01/21/site-being-redesigned/</feedburner:origLink></item>
		<item>
		<title>Proxify all the apps! Widecap+Tor+Vidalia = Anonymous Everything</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/lw1zIs-mUzw/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2012/02/23/proxify-all-the-apps-widecaptorvidalia-anonymous-everything/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 04:31:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=60</guid>
		<description><![CDATA[Hi all, Long time, no post. So, you want to anonymize not only your browsing experience but all of your applications as well without paying for a VPN&#8230; or wish to diversify what applications use what proxy? Well, look no &#8230; <a href="http://leetupload.com/blagosphere/index.php/2012/02/23/proxify-all-the-apps-widecaptorvidalia-anonymous-everything/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Hi all,</p>
<p>Long time, no post. So, you want to anonymize not only your browsing experience but all of your applications as well without paying for a VPN&#8230; or wish to diversify what applications use what proxy? Well, look no further. Acquire the following:</p>
<ul>
<li><a title="widecap" href="http://widecap.com">Widecap</a></li>
<li><a title="vidalia bundle" href="https://www.torproject.org/download/download.html.en">Vidalia Bundle</a></li>
<li><a title="putty" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/">Some application (i.e. PuTTY)</a></li>
</ul>
<p>Down to business. Install those applications.</p>
<ol>
<li>Run Widecap, create a new proxy with the following: Server:Port: 127.0.0.1:9050 and select a Chain (e.g. Unused)</li>
<li>Select New Rule: name the rule, choose the Proxy chain to be used under the Chain tab (e.g. Unused), click OK</li>
<li>Drag and drop the PuTTY application into the main white box of &#8220;Programs&#8221; under View programs, select Proxify only this program, make sure the box is checked next to the application that you dragged in, and that the rule name has been applied</li>
<li>Have Vidalia running with a Tor node selected and running</li>
<li>After everything has been applied, run PuTTY</li>
<li>Enjoy.</li>
</ol>
<p>This method works on all applications. Test it out on your own boxes and view the logs to see what IP appears as the connecting client.</p>
<p>Best of luck!</p>
<p>&nbsp;</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=lw1zIs-mUzw:4zBfF4jyAUo:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=lw1zIs-mUzw:4zBfF4jyAUo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=lw1zIs-mUzw:4zBfF4jyAUo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=lw1zIs-mUzw:4zBfF4jyAUo:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=lw1zIs-mUzw:4zBfF4jyAUo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=lw1zIs-mUzw:4zBfF4jyAUo:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=lw1zIs-mUzw:4zBfF4jyAUo:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/lw1zIs-mUzw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2012/02/23/proxify-all-the-apps-widecaptorvidalia-anonymous-everything/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2012/02/23/proxify-all-the-apps-widecaptorvidalia-anonymous-everything/</feedburner:origLink></item>
		<item>
		<title>$6 or $10 Full Database Downloads</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/E9EbIT0Yoc0/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2012/02/01/6-or-10-full-database-downloads/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 03:47:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=58</guid>
		<description><![CDATA[Do you guys want that, instead of me shipping you the DVDs? Thoughts?]]></description>
				<content:encoded><![CDATA[<p>Do you guys want that, instead of me shipping you the DVDs? Thoughts?</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=E9EbIT0Yoc0:QRFtTfz0QSc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=E9EbIT0Yoc0:QRFtTfz0QSc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=E9EbIT0Yoc0:QRFtTfz0QSc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=E9EbIT0Yoc0:QRFtTfz0QSc:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=E9EbIT0Yoc0:QRFtTfz0QSc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=E9EbIT0Yoc0:QRFtTfz0QSc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=E9EbIT0Yoc0:QRFtTfz0QSc:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/E9EbIT0Yoc0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2012/02/01/6-or-10-full-database-downloads/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2012/02/01/6-or-10-full-database-downloads/</feedburner:origLink></item>
		<item>
		<title>Malware Removal Guide</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/7-3x6bbBEKU/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2011/11/28/malware-removal-guide/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 22:46:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=55</guid>
		<description><![CDATA[A follower of Leetupload gave me a tip regarding an article he wrote for Select Real Security regarding the removal of malware on a win box. It covers all of the important points and provides links for any needed software. &#8230; <a href="http://leetupload.com/blagosphere/index.php/2011/11/28/malware-removal-guide/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>A follower of Leetupload gave me a tip regarding an article he wrote for Select Real Security regarding the removal of malware on a win box. It covers all of the important points and provides links for any needed software. Check it out, here: <a href="http://www.selectrealsecurity.com/malware-removal-guide" title="Malware Removal Guide" target="_blank">Malware Removal Guide</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=7-3x6bbBEKU:SfgP8ErzydM:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=7-3x6bbBEKU:SfgP8ErzydM:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=7-3x6bbBEKU:SfgP8ErzydM:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=7-3x6bbBEKU:SfgP8ErzydM:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=7-3x6bbBEKU:SfgP8ErzydM:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=7-3x6bbBEKU:SfgP8ErzydM:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=7-3x6bbBEKU:SfgP8ErzydM:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/7-3x6bbBEKU" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2011/11/28/malware-removal-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2011/11/28/malware-removal-guide/</feedburner:origLink></item>
		<item>
		<title>Fixed Upload Link</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/B04-iILaI9Y/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2011/06/20/fixed-upload-link/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 04:45:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=41</guid>
		<description><![CDATA[Sorry about that. The upload link for increasing the database has been fixed. Upload.]]></description>
				<content:encoded><![CDATA[<p>Sorry about that. The upload link for increasing the database has been fixed. <a href="http://leetupload.com/upload">Upload.</a></p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=B04-iILaI9Y:YTNiNPqnF4w:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=B04-iILaI9Y:YTNiNPqnF4w:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=B04-iILaI9Y:YTNiNPqnF4w:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=B04-iILaI9Y:YTNiNPqnF4w:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=B04-iILaI9Y:YTNiNPqnF4w:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=B04-iILaI9Y:YTNiNPqnF4w:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=B04-iILaI9Y:YTNiNPqnF4w:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/B04-iILaI9Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2011/06/20/fixed-upload-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2011/06/20/fixed-upload-link/</feedburner:origLink></item>
		<item>
		<title>Flanga.net</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/9jssuBCN6mI/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2011/06/13/flanga-netf/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 20:12:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=22</guid>
		<description><![CDATA[I doubt that hardly any of you know of my old domain from back in 2005, but it was called flanga.net (my first domain). It used to be a Counter-Strike:Source server amongst other random joys. Well, I have decided to &#8230; <a href="http://leetupload.com/blagosphere/index.php/2011/06/13/flanga-netf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I doubt that hardly any of you know of my old domain from back in 2005, but it was called <a href="http://flanga.net">flanga.net</a> (my first domain). It used to be a Counter-Strike:Source server amongst other random joys. Well, I have decided to use that domain to forward to this one, <a href="http://leetupload.com">leetupload.com</a>. If you&#8217;d like to see this page dedicated to a certain project, or anything else that comes to mind, let me know!</p>
<p>Also, I used to host files that I wrote from when I was younger&#8230; programs that did various things. For your pleasure, I have dedicated them to <a href="http://leetupload.com/olddownloads">this page here for your viewing/using pleasure.</a> I&#8217;m not sure if they still work on all of the platforms that they claim, but it might be beneficial. If you want the source code, let me know!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=9jssuBCN6mI:ObODbHxeMg8:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=9jssuBCN6mI:ObODbHxeMg8:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=9jssuBCN6mI:ObODbHxeMg8:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=9jssuBCN6mI:ObODbHxeMg8:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=9jssuBCN6mI:ObODbHxeMg8:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=9jssuBCN6mI:ObODbHxeMg8:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=9jssuBCN6mI:ObODbHxeMg8:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/9jssuBCN6mI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2011/06/13/flanga-netf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2011/06/13/flanga-netf/</feedburner:origLink></item>
		<item>
		<title>Exploit Database</title>
		<link>http://feedproxy.google.com/~r/leetuploadnews/~3/HdPor6D7ifw/</link>
		<comments>http://leetupload.com/blagosphere/index.php/2011/06/09/exploit-database/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 20:27:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://leetupload.com/blagosphere/?p=19</guid>
		<description><![CDATA[Hey all. I have successfully updated the exploit database. Be sure to keep your uploads coming, as I will add them after inspection to the database weekly. Cheers! &#8211;leetupload]]></description>
				<content:encoded><![CDATA[<p>Hey all.</p>
<p>I have successfully updated the exploit database. Be sure to keep your uploads coming, as I will add them after inspection to the database weekly.</p>
<p>Cheers!</p>
<p>&#8211;leetupload</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=HdPor6D7ifw:KoO7v-U004M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=HdPor6D7ifw:KoO7v-U004M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=HdPor6D7ifw:KoO7v-U004M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=HdPor6D7ifw:KoO7v-U004M:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=HdPor6D7ifw:KoO7v-U004M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?i=HdPor6D7ifw:KoO7v-U004M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/leetuploadnews?a=HdPor6D7ifw:KoO7v-U004M:dnMXMwOfBR0"><img src="http://feeds.feedburner.com/~ff/leetuploadnews?d=dnMXMwOfBR0" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/leetuploadnews/~4/HdPor6D7ifw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://leetupload.com/blagosphere/index.php/2011/06/09/exploit-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://leetupload.com/blagosphere/index.php/2011/06/09/exploit-database/</feedburner:origLink></item>
	</channel>
</rss>
