<?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>HackTalk</title>
	<atom:link href="http://blog.hacktalk.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.hacktalk.net</link>
	<description>HackTalk Security</description>
	<lastBuildDate>Fri, 03 Feb 2012 15:10:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>vulnerability-lab.com XSS Vulnerability</title>
		<link>http://blog.hacktalk.net/vulnerability-lab-com-xss-vulnerability/</link>
		<comments>http://blog.hacktalk.net/vulnerability-lab-com-xss-vulnerability/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 15:10:25 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Discovered By HackTalk]]></category>
		<category><![CDATA[Vulnerabilities]]></category>
		<category><![CDATA[Cross-Site-Scripting]]></category>
		<category><![CDATA[Lab]]></category>
		<category><![CDATA[Vulnerability]]></category>
		<category><![CDATA[Vulnerability-Lab.com]]></category>
		<category><![CDATA[XSS]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/?p=1131</guid>
		<description><![CDATA[vulnerability-lab.com suffers from a Cross-Site Scripting (XSS) vulnerability]]></description>
			<content:encoded><![CDATA[<p>Earlier today I tried to contact the people over at http://vulnerability-lab.com about an XSS vulnerability I found on their site (ironic) but it appears they want nothing to do with me. Praise Full-Disclosure.</p>
<p><span id="more-1131"></span></p>
<div id="attachment_1132" class="wp-caption alignnone" style="width: 160px"><a href="http://blog.hacktalk.net/wp-content/uploads/2012/02/XSS.jpg" rel="lightbox[1131]" title="Vulnerability-lab.com XSS - HackTalk Security"><img class="size-thumbnail wp-image-1132" title="Vulnerability-lab.com XSS - HackTalk Security" src="http://blog.hacktalk.net/wp-content/uploads/2012/02/XSS-150x150.jpg" alt="Vulnerability-lab.com XSS - HackTalk Security" width="150" height="150" /></a><p class="wp-caption-text">The Irony Of A Site For Disclosing Site Being Itself Vuln To Something So Trivial</p></div>
<p>&nbsp;</p>
<p>Basically I tried to report this issue to them through a private message on youtube and then a follow request on twitter (so I could DM them) but to no avail. Eventually rem0ve joined freenode and messaged me and told me he didn&#8217;t want to be cooperative with me or even be friendly. Sometimes being a prick just makes you look like an idiot.</p>
<p>&nbsp;</p>
<p>Cya In Cyberspace <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/vulnerability-lab-com-xss-vulnerability/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>From Reverse Shell To Reverse PTY Shell</title>
		<link>http://blog.hacktalk.net/from-reverse-shell-to-reverse-pty-shell/</link>
		<comments>http://blog.hacktalk.net/from-reverse-shell-to-reverse-pty-shell/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 00:50:58 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Hacking]]></category>
		<category><![CDATA[nc]]></category>
		<category><![CDATA[Netcat]]></category>
		<category><![CDATA[PTY]]></category>
		<category><![CDATA[Reverse Shell]]></category>
		<category><![CDATA[Rooting]]></category>
		<category><![CDATA[TTY]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/?p=1127</guid>
		<description><![CDATA[This post will be very brief and just cover a little known technique for spawning a pseudo-terminal which allows for executing commands such as su, sudo, ssh, telnet, etc.]]></description>
			<content:encoded><![CDATA[<p>This post will be very brief and just cover a little known technique for spawning a pseudo-terminal which allows for executing commands such as su, sudo, ssh, telnet, etc.</p>
<p><span id="more-1127"></span></p>
<p>I won&#8217;t get into how you would get an interactive reverse shell spawned as I&#8217;m sure you guys all already have your favorite methods instead this mini-tutorial starts off after your netcat listener goes crazy with the new reverse shell you just spawned. Without being able to use su, sudo, ssh, and stuff like nano/vim this shell pretty much sucks so let&#8217;s go ahead and upgrade it with this $up3r 31337 0dayz . Lol honestly it&#8217;s just something that has been done by python programmers for years now:</p>
<blockquote>
<pre>python -c 'import pty; pty.spawn("/bin/bash");'</pre>
</blockquote>
<p>What this does is starts the python interpreter and executes everything in the single  quotes. Inside the single quotes we import the code to create a pseudo-terminal. After loading this code we use a psuedo-terminal to spawn a bash shell while gives you a pseudo-terminal bash shell which allows you to nano, vim, ssh, whatever you want.</p>
<p>Bit of warning, don&#8217;t just press Ctrl+C if you wanna exit out of things, in fact, generally speaking before using any escape sequence prepend it with Ctrl+V. Ctrl+V lets you print the literal character to stdin. If you want to use Ctrl+C type Ctrl+V Ctrl+C [enter] and it&#8217;ll cause the pseudo-terminal to execute the Ctrl+C as opposed to just killing your netcat connection <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>Enjoy.</p>
<p>&nbsp;</p>
<p>Cya in Cyberspace</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/from-reverse-shell-to-reverse-pty-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do it wrong</title>
		<link>http://blog.hacktalk.net/how-to-do-it-wrong/</link>
		<comments>http://blog.hacktalk.net/how-to-do-it-wrong/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 22:36:29 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Anonymous]]></category>
		<category><![CDATA[#OpUFC]]></category>
		<category><![CDATA[Dana White]]></category>
		<category><![CDATA[Defaced]]></category>
		<category><![CDATA[Dox]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/?p=1124</guid>
		<description><![CDATA[As I&#8217;m sure many of you HackTalkers have read, UFC.com was recently defaced which led to Dana White essentially daring Anonymous to do it again. More after the fold I see stuff like this time and time again, a hacking forum will get pwned by some group and after picking up the pieces, the site [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Fhow-to-do-it-wrong%2F&amp;title=How%20to%20do%20it%20wrong" id="wpa2a_2"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><p>As I&#8217;m sure many of you HackTalkers have read, UFC.com was recently defaced which led to Dana White essentially daring Anonymous to do it again.</p>
<p>More after the fold</p>
<p><span id="more-1124"></span></p>
<p>I see stuff like this time and time again, a hacking forum will get pwned by some group and after picking up the pieces, the site which got hacked will talk crap about their attackers and essentially dare them to try it again. Inevitably the site will be hacked again because the administrators of the site are still leaving gaping security holes in their site. This is something that has been done time and time again.</p>
<p>This doesn&#8217;t relate only to hacking either. In pretty much every walk of life, if someone kicked your ass once you can be certain they can do it again, especially if you egg them on.</p>
<p>This was the case with Dana White who egged Anonymous on to try to hack UFC again and even went so far as insulting Anonymous members.</p>
<p>Shortly after egging them on Dana White once again became a household name as his name was all over the twittersphere attached to a very interesting link: http://pastebin.com/D1zRYSYd Dana White was dox&#8217;d. Anonymous didn&#8217;t stop there though, in their response to Dana&#8217;s comments they went ahead and defaced UFC once again (for the hat trick) and posted this : http://www.cyberwarnews.info/2012/01/27/ufc-website-hacked-and-defaced-by-anonymous-after-dana-white-starts-trouble-opufc</p>
<p>In the end if you have a target on your back and you&#8217;ve already been owned, why talk crap; it&#8217;s only going to get you messed with more and it will give your attackers fuel with which to continue attacking until they eventually get through.</p>
<p>&nbsp;</p>
<p>Cya in cyberspace.</p>
<p>&nbsp;</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Fhow-to-do-it-wrong%2F&amp;title=How%20to%20do%20it%20wrong" id="wpa2a_4"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/how-to-do-it-wrong/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-26</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-26/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-26/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-26/</guid>
		<description><![CDATA[@Wh1t3Rabbit anytime # @ashby hacktalk.net # @ashby the blog is at blog.hacktalk.net but I haven&#039;t been keeping up with it lately, hope to get back to blogging VERY soon # @ashby yea it&#039;s pretty nice in there and some really knowledgeable people too # @ashby check out IRChon # How are you tweeps tonight ? [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-26%2F&amp;title=Tweets%20for%202012-01-26" id="wpa2a_6"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/Wh1t3Rabbit" class="aktt_username">Wh1t3Rabbit</a> anytime <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161981901387743232" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ashby" class="aktt_username">ashby</a> hacktalk.net <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161982626494820352" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ashby" class="aktt_username">ashby</a> the blog is at blog.hacktalk.net but I haven&#039;t been keeping up with it lately, hope to get back to blogging VERY soon <a href="http://twitter.com/hacktalkblog/statuses/161986117271429120" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ashby" class="aktt_username">ashby</a> yea it&#039;s pretty nice in there and some really knowledgeable people too <a href="http://twitter.com/hacktalkblog/statuses/161986936666468352" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ashby" class="aktt_username">ashby</a> check out IRChon <a href="http://twitter.com/hacktalkblog/statuses/161987978820993024" class="aktt_tweet_time">#</a></li>
<li>How are you tweeps tonight ? <a href="http://twitter.com/hacktalkblog/statuses/161994374543196160" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; WordPress  <a href="http://t.co/4cdDpKv8" rel="nofollow">http://t.co/4cdDpKv8</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161996009650663424" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Dawseeeyy" class="aktt_username">Dawseeeyy</a> Glad to hear you are doing good <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161997213021634560" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/grap3_ap3" class="aktt_username">grap3_ap3</a> Pretty okay I guess, contemplating wtf to do tbh <a href="http://twitter.com/hacktalkblog/statuses/161997375144067073" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23SOTU" class="aktt_hashtag">SOTU</a> I don&#039;t have anything to say about it just wondering how many new followers I&#039;ll get by using this hashtag. Bring On The Bots! <a href="http://twitter.com/hacktalkblog/statuses/162010270229733376" class="aktt_tweet_time">#</a></li>
<li>HackTalk Forum Daily is out! <a href="http://t.co/QLiogMNK" rel="nofollow">http://t.co/QLiogMNK</a> <a href="http://twitter.com/hacktalkblog/statuses/162012863630819328" class="aktt_tweet_time">#</a></li>
<li>Confessions of a Google junkie (or, Privacy? What privacy?): A lot has been made of Google&#039;s new privacy policy &#8230; <a href="http://t.co/kjylbjZk" rel="nofollow">http://t.co/kjylbjZk</a> <a href="http://twitter.com/hacktalkblog/statuses/162110254358867968" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/c0rrupt_net" class="aktt_username">c0rrupt_net</a> old and fake <a href="http://twitter.com/hacktalkblog/statuses/162177344486916098" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> KF? <a href="http://twitter.com/hacktalkblog/statuses/162182103071588352" class="aktt_tweet_time">#</a></li>
<li>Windstream&#039;s customer database used by employee for identity theft: A now-former Windstream employee is in jail &#8230; <a href="http://t.co/T3dcPd7A" rel="nofollow">http://t.co/T3dcPd7A</a> <a href="http://twitter.com/hacktalkblog/statuses/162276199215804416" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-26%2F&amp;title=Tweets%20for%202012-01-26" id="wpa2a_8"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-25</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-25/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-25/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-25/</guid>
		<description><![CDATA[RT @k3170Makan: Added some google dorks to my blog,check out the top of the right column @hacktalkblog @grap3_ap3 @philippdowling @WokoFreak # New Exploit [webapps] &#8211; DirectAdmin ADD Sub Domain CSRF Exploit: http://t.co/lq9QwXmZ #Exploit # @ctrl1T Thanks for your follow as well # @realytcracker haha nice # @realytcracker Like a boss # 15 leaders in smart [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-25%2F&amp;title=Tweets%20for%202012-01-25" id="wpa2a_10"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: Added some google dorks to my blog,check out the top of the right column @<a href="http://twitter.com/hacktalkblog" class="aktt_username">hacktalkblog</a> @grap3_ap3 @<a href="http://twitter.com/philippdowling" class="aktt_username">philippdowling</a> @WokoFreak <a href="http://twitter.com/hacktalkblog/statuses/161659456944484353" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; DirectAdmin ADD Sub Domain CSRF Exploit:  <a href="http://t.co/lq9QwXmZ" rel="nofollow">http://t.co/lq9QwXmZ</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161665994950053889" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ctrl1T" class="aktt_username">ctrl1T</a> Thanks for your follow as well <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161672781694640128" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/realytcracker" class="aktt_username">realytcracker</a> haha nice <a href="http://twitter.com/hacktalkblog/statuses/161679601293201408" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/realytcracker" class="aktt_username">realytcracker</a> Like a boss <a href="http://twitter.com/hacktalkblog/statuses/161704927385747456" class="aktt_tweet_time">#</a></li>
<li>15 leaders in smart grid security: Security concerns for the intelligent power distribution system will require &#8230; <a href="http://t.co/IVoxhLEV" rel="nofollow">http://t.co/IVoxhLEV</a> <a href="http://twitter.com/hacktalkblog/statuses/161817374885027840" class="aktt_tweet_time">#</a></li>
<li>New Exploit [papers] &#8211; A Backdoor in the Next Generation Active Directory:  <a href="http://t.co/kDugXo6P" rel="nofollow">http://t.co/kDugXo6P</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161818005322477568" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: PhpBridges Blog System SQL injection: inurl:&quot;members.php?id=*&quot; + intext:&quot;Warning:&quot; | intext:&quot;MySQL&quot; <a href="http://twitter.com/hacktalkblog/statuses/161819742334750721" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> @purehate_ yea but you should be used to it by now <a href="http://twitter.com/hacktalkblog/statuses/161824033904656384" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> @purehate_ NOU!!! &lt;31337 <a href="http://twitter.com/hacktalkblog/statuses/161824571530559488" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> Don&#039;t make me order pizza to your hotel room. ph33r! <a href="http://twitter.com/hacktalkblog/statuses/161825694844862466" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> #<a href="http://search.twitter.com/search?q=%23SoDMMeYourHotelInfoOrFuckYou" class="aktt_hashtag">SoDMMeYourHotelInfoOrFuckYou</a> or gimme a paypal donate button <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161828514994192385" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: You can extend that last one by specifying more popular php shells <a href="http://twitter.com/hacktalkblog/statuses/161828766136532992" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161829776359821312" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bl0nde_b0ricua" class="aktt_username">bl0nde_b0ricua</a> haha omg YES!!! I can&#039;t remember how many of those things I had to stop using cause I lost a single piece of lead <a href="http://twitter.com/hacktalkblog/statuses/161855471983149056" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; Stoneware WebNetwork6 Multiple Vulnerabilities &#8211; [CVE: 2012-0286]:  <a href="http://t.co/bWrTIaqn" rel="nofollow">http://t.co/bWrTIaqn</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161862393759145984" class="aktt_tweet_time">#</a></li>
<li>&quot;Can&#039;t keep a pet like a house cat or lap dog. The only thing sittin on my couch is a laptop&quot; &#8211; Int80 <a href="http://twitter.com/hacktalkblog/statuses/161865662782914561" class="aktt_tweet_time">#</a></li>
<li>Global spam declines as malware encounters pick up: report: Enterprise users experienced an average of 339 malwa&#8230; <a href="http://t.co/b0R2n0cf" rel="nofollow">http://t.co/b0R2n0cf</a> <a href="http://twitter.com/hacktalkblog/statuses/161876075725602816" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/bl0nde_b0ricua" class="aktt_username">bl0nde_b0ricua</a> haha I ended up just saving the tips so if I lost one I had spares <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161887631314132992" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/M3TALH3AD71" class="aktt_username">M3TALH3AD71</a> or an arrow to the knee <a href="http://twitter.com/hacktalkblog/statuses/161897388309622784" class="aktt_tweet_time">#</a></li>
<li>BrowserID testing waters, but missing pieces weaken story: The Mozilla Foundation is finally testing its Browser&#8230; <a href="http://t.co/tnp5RvUT" rel="nofollow">http://t.co/tnp5RvUT</a> <a href="http://twitter.com/hacktalkblog/statuses/161918186424500225" class="aktt_tweet_time">#</a></li>
<li>Which twitter user do YOU guys follow for the latest and greatest database leaks? <a href="http://twitter.com/hacktalkblog/statuses/161919461081874433" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-25%2F&amp;title=Tweets%20for%202012-01-25" id="wpa2a_12"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-25/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-24</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-24/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-24/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-24/</guid>
		<description><![CDATA[New Exploit [local] &#8211; Mempodipper &#8211; Linux Local Root for &#62;=2.6.39, 32-bit and 64-bit: http://t.co/2HRWWokK #Exploit # おやすみなさい And for my followers that don&#039;t read/speak Japanese, GOOD NIGHT!! # Lessons in online culture from Plancast &#8211; when sharing fails: It turns out that people are picky about what, and&#8230; http://t.co/UuZY4ozj # @MrAnonymous2600 haha I&#039;ve got [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-24%2F&amp;title=Tweets%20for%202012-01-24" id="wpa2a_14"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>New Exploit [local] &#8211; Mempodipper &#8211; Linux Local Root for &gt;=2.6.39, 32-bit and 64-bit:  <a href="http://t.co/2HRWWokK" rel="nofollow">http://t.co/2HRWWokK</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161271972926455809" class="aktt_tweet_time">#</a></li>
<li>おやすみなさい And for my followers that don&#039;t read/speak Japanese, GOOD NIGHT!! <a href="http://twitter.com/hacktalkblog/statuses/161338061156917249" class="aktt_tweet_time">#</a></li>
<li>Lessons in online culture from Plancast &#8211; when sharing fails: It turns out that people are picky about what, and&#8230; <a href="http://t.co/UuZY4ozj" rel="nofollow">http://t.co/UuZY4ozj</a> <a href="http://twitter.com/hacktalkblog/statuses/161435548853092352" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> haha I&#039;ve got work today, how about you? <a href="http://twitter.com/hacktalkblog/statuses/161445519804215296" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cockneyreject" class="aktt_username">cockneyreject</a> thanks for the mention <a href="http://twitter.com/hacktalkblog/statuses/161445589073149954" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> thanks for the mention <a href="http://twitter.com/hacktalkblog/statuses/161445610694770689" class="aktt_tweet_time">#</a></li>
<li>Pwning With Backtrack dnsdict6: <a href="http://t.co/BdymH012" rel="nofollow">http://t.co/BdymH012</a> via @<a href="http://twitter.com/youtube" class="aktt_username">youtube</a> <a href="http://twitter.com/hacktalkblog/statuses/161448702953795585" class="aktt_tweet_time">#</a></li>
<li>Pwning With Backtrack &#8211; DNSEnum: <a href="http://t.co/RgJZB2kD" rel="nofollow">http://t.co/RgJZB2kD</a> via @<a href="http://twitter.com/youtube" class="aktt_username">youtube</a> <a href="http://twitter.com/hacktalkblog/statuses/161448786424639488" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/georgemilnes" class="aktt_username">georgemilnes</a> you have me confused with @<a href="http://twitter.com/anonymousabu" class="aktt_username">anonymousabu</a> sir <a href="http://twitter.com/hacktalkblog/statuses/161462764659933184" class="aktt_tweet_time">#</a></li>
<li>Since the #<a href="http://search.twitter.com/search?q=%23MPAA" class="aktt_hashtag">MPAA</a> can apparently threaten the Govt. I&#039;ve decided to do the same. I will kill 1 script kitten every hour my demands aren&#039;t met <a href="http://twitter.com/hacktalkblog/statuses/161469065116917762" class="aktt_tweet_time">#</a></li>
<li><a href="http://t.co/d1yE2h5R" rel="nofollow">http://t.co/d1yE2h5R</a> the script kittens in question <a href="http://twitter.com/hacktalkblog/statuses/161469165444669441" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/ax0us" class="aktt_username">ax0us</a>: Third Security breach at Core Security Technologies ..<a href="http://tinyurl.com/72q3qpr" rel="nofollow">http://tinyurl.com/72q3qpr</a>  ? Anybody knows more about it ? <a href="http://twitter.com/hacktalkblog/statuses/161476578595962880" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: The Google cache : Time travel for hackers <a href="http://t.co/9Bd39ibg" rel="nofollow">http://t.co/9Bd39ibg</a> @<a href="http://twitter.com/hacktalkblog" class="aktt_username">hacktalkblog</a> @magnologan @<a href="http://twitter.com/WokoFreak" class="aktt_username">WokoFreak</a> @grap3_ap3 @<a href="http://twitter.com/pretorienx" class="aktt_username">pretorienx</a> <a href="http://twitter.com/hacktalkblog/statuses/161477412717215745" class="aktt_tweet_time">#</a></li>
<li>Trying out #<a href="http://search.twitter.com/search?q=%23HootSuite" class="aktt_hashtag">HootSuite</a> <a href="http://twitter.com/hacktalkblog/statuses/161482420313530369" class="aktt_tweet_time">#</a></li>
<li>Hmm, #<a href="http://search.twitter.com/search?q=%23HootSuite" class="aktt_hashtag">HootSuite</a> really isn&#039;t doing what I need it to (I haz too many list). Anyone use lots of lists? What twitter client do you use? <a href="http://twitter.com/hacktalkblog/statuses/161484026903928832" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> haha. God I hate #<a href="http://search.twitter.com/search?q=%23Mondays" class="aktt_hashtag">Mondays</a> <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161485604100640768" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> likewise here but having to wake up early after going to bed late on the weekends SUCKS <a href="http://twitter.com/hacktalkblog/statuses/161486148768759810" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/fjhackett" class="aktt_username">fjhackett</a> While TweetDeck helps it doesn&#039;t really help with my 10 lists (and quickly growing). Management is just a bit of a pain <a href="http://twitter.com/hacktalkblog/statuses/161488216225091584" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cinnamon_carter" class="aktt_username">cinnamon_carter</a> yea I&#039;m checking out seemsic web now as I really like their android app <a href="http://twitter.com/hacktalkblog/statuses/161497473049829376" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; WordPress Kish Guest Posting Plugin 1.0 Arbitrary File Upload:  <a href="http://t.co/m21HdzOg" rel="nofollow">http://t.co/m21HdzOg</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161511265003515904" class="aktt_tweet_time">#</a></li>
<li>Weekend Anonymous attacks bring down major websites: CBS, Universal Music, and Vivendi, among others, were broug&#8230; <a href="http://t.co/e0WSNxWR" rel="nofollow">http://t.co/e0WSNxWR</a> <a href="http://twitter.com/hacktalkblog/statuses/161534819514331136" class="aktt_tweet_time">#</a></li>
<li>IETF closer to finalizing ID standard to secure mobile apps, APIs: OAuth 2.0, a key framework for securing nativ&#8230; <a href="http://t.co/n7xOklWC" rel="nofollow">http://t.co/n7xOklWC</a> <a href="http://twitter.com/hacktalkblog/statuses/161543007076749312" class="aktt_tweet_time">#</a></li>
<li>CanSecWest Pwn2Own hacker challenge gets a $105,000 makeover: HP Zero Day Initiatives revamps the annual hacker &#8230; <a href="http://t.co/8PvuTso6" rel="nofollow">http://t.co/8PvuTso6</a> <a href="http://twitter.com/hacktalkblog/statuses/161579006519558144" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: Gonna bring you guys some more SQL injection dorks <a href="http://twitter.com/hacktalkblog/statuses/161581189772218368" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: database login dork: filetype:UDL Password <a href="http://twitter.com/hacktalkblog/statuses/161581694833528832" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: Generic Dork for Joomla SQL injection: inurl:&quot;*?option=content*&quot; + intext:&quot;You have an error&quot; <a href="http://twitter.com/hacktalkblog/statuses/161585290031542272" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> Haha, I&#039;ll do my best to RT as many of them as possible <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161588481435508736" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; SpamTitan Application v5.08x &#8211; SQL Injection Vulnerability:  <a href="http://t.co/zik3m7rL" rel="nofollow">http://t.co/zik3m7rL</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161593441279688704" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: Hacking Estate Agents: inurl:&quot;option=com_hotproperty&quot; + inurl:&quot;.?php*=*&quot; + intext:&quot;You have an error&quot; <a href="http://twitter.com/hacktalkblog/statuses/161606477155549184" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> yea go for it <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161611570949013505" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-24%2F&amp;title=Tweets%20for%202012-01-24" id="wpa2a_16"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-24/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-23</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-23/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-23/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-23/</guid>
		<description><![CDATA[HackTalk Forum Daily is out! http://t.co/QLiogMNK # New Exploit [webapps] &#8211; AllWebMenus http://t.co/9Uhirspo #Exploit # New Exploit [webapps] &#8211; miniCMS v1.0 : v2.0 php inject code: http://t.co/OUIojU9J #Exploit # New Exploit [webapps] &#8211; Parsp Shopping CMS [V5] Multiple Vulnerability: http://t.co/35BiZVP5 #Exploit # @iHex0x7821 I can examine the human brain, the same cannot be said about [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-23%2F&amp;title=Tweets%20for%202012-01-23" id="wpa2a_18"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>HackTalk Forum Daily is out! <a href="http://t.co/QLiogMNK" rel="nofollow">http://t.co/QLiogMNK</a> <a href="http://twitter.com/hacktalkblog/statuses/160925698310156288" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; AllWebMenus  <a href="http://t.co/9Uhirspo" rel="nofollow">http://t.co/9Uhirspo</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161091172935274496" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; miniCMS v1.0 : v2.0 php inject code:  <a href="http://t.co/OUIojU9J" rel="nofollow">http://t.co/OUIojU9J</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161201008012296192" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; Parsp Shopping CMS [V5] Multiple Vulnerability:  <a href="http://t.co/35BiZVP5" rel="nofollow">http://t.co/35BiZVP5</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/161201009417388032" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iHex0x7821" class="aktt_username">iHex0x7821</a> I can examine the human brain, the same cannot be said about god <a href="http://twitter.com/hacktalkblog/statuses/161242671183167488" class="aktt_tweet_time">#</a></li>
<li>If you are Google Dork Impaired I suggest checking out <a href="http://t.co/obluJjND" rel="nofollow">http://t.co/obluJjND</a> by @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> as it will help you out greatly <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/161244457088450560" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iHex0x7821" class="aktt_username">iHex0x7821</a> Yes, it&#039;s called an MRI and/or CAT scan <a href="http://twitter.com/hacktalkblog/statuses/161244558905184256" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iHex0x7821" class="aktt_username">iHex0x7821</a> yes, medical procedures would allow me to cut through my skull and poke at my brain if I truly wanted to <a href="http://twitter.com/hacktalkblog/statuses/161246882318909440" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/iHex0x7821" class="aktt_username">iHex0x7821</a> Yes, all you would need is a local anesthetic which would numb the pain but keep you awake <a href="http://twitter.com/hacktalkblog/statuses/161247377884332032" class="aktt_tweet_time">#</a></li>
<li>To all my potential followers, if your avatar is an egg don&#039;t expect to get followed back&#8230; <a href="http://twitter.com/hacktalkblog/statuses/161247570012815360" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-23%2F&amp;title=Tweets%20for%202012-01-23" id="wpa2a_20"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-23/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-22</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-22/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-22/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-22/</guid>
		<description><![CDATA[@ThemsonMester Because I like you buddy I give you deal, 4 payments $9.99 just for you # @jadedsecurity @ThemsonMester @spridel11 @drb0n3z I have business proposition for you, give me money or milo stabs you eh? hahahaha # @jadedsecurity @drb0n3z @spridel11 @ThemsonMester When you Johnny Wrong den you tawk wif me # New Exploit [webapps] &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-22%2F&amp;title=Tweets%20for%202012-01-22" id="wpa2a_22"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>@<a href="http://twitter.com/ThemsonMester" class="aktt_username">ThemsonMester</a> Because I like you buddy I give you deal, 4 payments $9.99 just for you <a href="http://twitter.com/hacktalkblog/statuses/160646297752309761" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> @ThemsonMester @<a href="http://twitter.com/spridel11" class="aktt_username">spridel11</a> @drb0n3z I have business proposition for you, give me money or milo stabs you eh? hahahaha <a href="http://twitter.com/hacktalkblog/statuses/160650459126824960" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> @drb0n3z @<a href="http://twitter.com/spridel11" class="aktt_username">spridel11</a> @ThemsonMester When you Johnny Wrong den you tawk wif me <a href="http://twitter.com/hacktalkblog/statuses/160650853919883264" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; php ireport v1.0 Remote Html Code injection:  <a href="http://t.co/IB3SPcWF" rel="nofollow">http://t.co/IB3SPcWF</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160725699341193218" class="aktt_tweet_time">#</a></li>
<li>New Exploit [remote] &#8211; Savant Web Server 3.1 Buffer Overflow Exploit (Egghunter):  <a href="http://t.co/y7iTqQHE" rel="nofollow">http://t.co/y7iTqQHE</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160725697852211202" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; Nova CMS Directory Traversal:  <a href="http://t.co/z5QCrhPd" rel="nofollow">http://t.co/z5QCrhPd</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160772324147212289" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; ARYADAD Multiple Vulnerabilities:  <a href="http://t.co/n7A7LNtT" rel="nofollow">http://t.co/n7A7LNtT</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160772328094056448" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; iSupport v1.x CSRF HTML Code Injection to Add Admin:  <a href="http://t.co/9XO1fhYB" rel="nofollow">http://t.co/9XO1fhYB</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160772326449872896" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> You&#039;d like to watch a geek spend 2 days fuzzing a protocol only to find a local root he can&#039;t use cause he&#039;s not on the network? <a href="http://twitter.com/hacktalkblog/statuses/160812398410858499" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/grap3_ap3" class="aktt_username">grap3_ap3</a> sweet dude, thanks. I&#039;ll look into your buddy&#039;s about now <a href="http://twitter.com/hacktalkblog/statuses/160812459098243073" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; Zone Rouge CMS 2012 &#8211; SQL Injection Vulnerability:  <a href="http://t.co/BEJsHoLA" rel="nofollow">http://t.co/BEJsHoLA</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160877860645638144" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-22%2F&amp;title=Tweets%20for%202012-01-22" id="wpa2a_24"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-21</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-21/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-21/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-21/</guid>
		<description><![CDATA[HackTalk Forum Daily is out! http://t.co/QLiogMNK # @ArtByAlida The Hacktalk Forum Daily is just a recap of forum post # @ArtByAlida Haha, one of the necessary evils of being a hacking journalist # @ArtByAlida Hacking Tools are like normal tools they can be used for good or bad. I just do my best to educate [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-21%2F&amp;title=Tweets%20for%202012-01-21" id="wpa2a_26"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>HackTalk Forum Daily is out! <a href="http://t.co/QLiogMNK" rel="nofollow">http://t.co/QLiogMNK</a> <a href="http://twitter.com/hacktalkblog/statuses/160200925137477633" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> The Hacktalk Forum Daily is just a recap of forum post <a href="http://twitter.com/hacktalkblog/statuses/160216095477858304" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Haha, one of the necessary evils of being a hacking journalist <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160241579913773057" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Hacking Tools are like normal tools they can be used for good or bad. I just do my best to educate people on using them for good <a href="http://twitter.com/hacktalkblog/statuses/160242031980052480" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Yea, sadly the line is crossed a lot when trying to report the news. My sources are typically the hacking groups themselves tbh <a href="http://twitter.com/hacktalkblog/statuses/160242422176161792" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> By that reasoning we should get rid of the 2nd amendment which allows us to have guns. <a href="http://twitter.com/hacktalkblog/statuses/160242660370694145" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/_f0rsaken" class="aktt_username">_f0rsaken</a> Haha love that movie <a href="http://twitter.com/hacktalkblog/statuses/160242704905801728" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Technology bloggers blog about the latest gadgets, security blogs blog about the latest security/hacking tools. Same thing <a href="http://twitter.com/hacktalkblog/statuses/160242929699536896" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> India? I&#039;m a proud American citizen <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160242982728110080" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> The reason many of my sources confide in me is because I do my best to educate skids instead of enabling them <a href="http://twitter.com/hacktalkblog/statuses/160243365684854786" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> I&#039;m more than willing to have this conversation through instant message or IRC if you wish to continue it <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160243438783184897" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Many &quot;hack tools&quot; are tools used by network and system administrators which just so happen to also be used maliciously <a href="http://twitter.com/hacktalkblog/statuses/160243640508231681" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> <a href="http://t.co/MGwOHmRP" rel="nofollow">http://t.co/MGwOHmRP</a> Is that a hacking tool? <a href="http://twitter.com/hacktalkblog/statuses/160243763015458817" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Or how about <a href="http://t.co/6ZZzlb2e" rel="nofollow">http://t.co/6ZZzlb2e</a> <a href="http://twitter.com/hacktalkblog/statuses/160243917047074816" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> both are used by network administrators to monitor and analyze network traffic. They can also be used by hackers <a href="http://twitter.com/hacktalkblog/statuses/160244044247744512" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Hacktalk is a security site. We blog about security, have a forum for infosec enthusiasts and report the latest hacking news <a href="http://twitter.com/hacktalkblog/statuses/160244234895638529" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Without letting people know tools they need exist they wouldn&#039;t be able to download them from my site or otherwise <a href="http://twitter.com/hacktalkblog/statuses/160244982349971456" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> that&#039;s like saying people shouldn&#039;t buy products from stores they should just buy directly from the creator of the prodcuts <a href="http://twitter.com/hacktalkblog/statuses/160245102223171584" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> take a look at the forum and I&#039;m sure you&#039;ll see it&#039;s more of a knowledge exchange between likeminded individuals not a skidfest <a href="http://twitter.com/hacktalkblog/statuses/160245280711786496" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Everyone needs to learn somewhere, even security pros. I guess EthicalHacker.net is bad too? <a href="http://twitter.com/hacktalkblog/statuses/160245508609277953" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> We do not condone illegal activity and it&#039;s a ban-able offense so if they aren&#039;t ethical they don&#039;t act unethical on the forum <a href="http://twitter.com/hacktalkblog/statuses/160245930233307136" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Just as I&#039;m sure not everyone on EthicalHacker.net is ethical <a href="http://twitter.com/hacktalkblog/statuses/160245981714194433" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> what&#039;s that I&#039;m smelling? Ah, the smell of troll <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160246084126507010" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/hler07" class="aktt_username">hler07</a>: <a href="http://109.236.83.66/" rel="nofollow">http://109.236.83.66/</a> &amp; <a href="http://t.co/7LWLk8iS" rel="nofollow">http://t.co/7LWLk8iS</a>  are fake links ..just looking 4 publicity ~&gt; #<a href="http://search.twitter.com/search?q=%23MegaFake" class="aktt_hashtag">MegaFake</a> #Retwitt @<a href="http://twitter.com/AnonymousWiki" class="aktt_username">AnonymousWiki</a> <a href="http://twitter.com/hacktalkblog/statuses/160246147993174016" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Also, you improperly used a comma in your statement and then comma-spliced. Congratulations on failing grammar. <a href="http://twitter.com/hacktalkblog/statuses/160246367573393409" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> I like how you support the 99% but look down on hackers. The concept of OWS was spawned by hacktivists <a href="http://twitter.com/hacktalkblog/statuses/160246755768795136" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a>  Regardless, no hard feelings and I still like some of your art. Good luck as being an artist is hard (I should know) <a href="http://twitter.com/hacktalkblog/statuses/160246917157224450" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/ArtByAlida" class="aktt_username">ArtByAlida</a> Trust me, I&#039;ve got a day job and I&#039;m one of the &quot;good guys&quot; <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160247438513405952" class="aktt_tweet_time">#</a></li>
<li>Good night Twitter. ./autoPilotMode &#8211;on <a href="http://twitter.com/hacktalkblog/statuses/160247855162998784" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; EasyPage SQL Injection Vulnerability:  <a href="http://t.co/zE9ymVcd" rel="nofollow">http://t.co/zE9ymVcd</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160350951721537536" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; ICTimeAttendance Authentication Bypass Vulnerability:  <a href="http://t.co/FF8tN5UK" rel="nofollow">http://t.co/FF8tN5UK</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160350950068981762" class="aktt_tweet_time">#</a></li>
<li>New Exploit [remote] &#8211; HP OpenView Network Node Manager ov.dll _OVBuildPath Buffer Overflow &#8211; [CVE: 201... <a href="http://t.co/VhIptEdo" rel="nofollow">http://t.co/VhIptEdo</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160350954795966464" class="aktt_tweet_time">#</a></li>
<li>New Exploit [remote] &#8211; Gitorious Arbitrary Command Execution:  <a href="http://t.co/EiGXDFTI" rel="nofollow">http://t.co/EiGXDFTI</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160350952883363840" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/B1gGaGa" class="aktt_username">B1gGaGa</a> thanks for #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/hacktalkblog/statuses/160354412622118914" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> thanks for #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/hacktalkblog/statuses/160354435665625090" class="aktt_tweet_time">#</a></li>
<li>#<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> @<a href="http://twitter.com/jadedsecurity" class="aktt_username">jadedsecurity</a> @drb0n3z @<a href="http://twitter.com/Cyber_War_News" class="aktt_username">Cyber_War_News</a> @TheHackersNews @<a href="http://twitter.com/blixnawaka" class="aktt_username">blixnawaka</a> @k3170Makan @<a href="http://twitter.com/cinnamon_carter" class="aktt_username">cinnamon_carter</a> @jneera @<a href="http://twitter.com/isdpodcast" class="aktt_username">isdpodcast</a> @B1gGaGa #<a href="http://search.twitter.com/search?q=%23FF" class="aktt_hashtag">FF</a> <a href="http://twitter.com/hacktalkblog/statuses/160355601707319296" class="aktt_tweet_time">#</a></li>
<li>TED video: Three types of online attacks: Mikko Hypponen talks about the three types of online attacks on our pr&#8230; <a href="http://t.co/s9Uw6xPI" rel="nofollow">http://t.co/s9Uw6xPI</a> <a href="http://twitter.com/hacktalkblog/statuses/160360014471643136" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/G4RYB1" class="aktt_username">G4RYB1</a> haha it&#039;s definitely picking up <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160360309217951745" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: LFI attacks for predators <a href="http://t.co/o20ESNmb" rel="nofollow">http://t.co/o20ESNmb</a> @<a href="http://twitter.com/0xerror" class="aktt_username">0xerror</a> @philippdowling @<a href="http://twitter.com/hacktalkblog" class="aktt_username">hacktalkblog</a> @mooslee <a href="http://twitter.com/hacktalkblog/statuses/160386027511484417" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a> anytime <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160386561203113987" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/AnonOpGreece" class="aktt_username">AnonOpGreece</a> In spanish SOPA means &quot;Soup&quot; and PIPA means Pipe <a href="http://twitter.com/hacktalkblog/statuses/160389485161496576" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/paulrouget" class="aktt_username">paulrouget</a> look into hootsuite <a href="http://twitter.com/hacktalkblog/statuses/160397100608266240" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; WhatsApp Status Changer v0.2 Exploit:  <a href="http://t.co/xLAFHARV" rel="nofollow">http://t.co/xLAFHARV</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160409718727258113" class="aktt_tweet_time">#</a></li>
<li>New Exploit [dos] &#8211; VLC 1.2.0 (libtaglib_pluggin.dll) DoS:  <a href="http://t.co/VJoxWoHF" rel="nofollow">http://t.co/VJoxWoHF</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160425886955483136" class="aktt_tweet_time">#</a></li>
<li>New Exploit [remote] &#8211; Avaya WinPDM UniteHostRouter  <a href="http://t.co/4ZNUeQN0" rel="nofollow">http://t.co/4ZNUeQN0</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160425885630074881" class="aktt_tweet_time">#</a></li>
<li>New Exploit [papers] &#8211; iPhone Forensics  on iOS 5:  <a href="http://t.co/tBqQz0ol" rel="nofollow">http://t.co/tBqQz0ol</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160425888486395904" class="aktt_tweet_time">#</a></li>
<li>How Anonymous took down the DoJ, RIAA, MPAA and Universal Music Websites: Anonymous, the Internet-based hacker a&#8230; <a href="http://t.co/4WtUD1pU" rel="nofollow">http://t.co/4WtUD1pU</a> <a href="http://twitter.com/hacktalkblog/statuses/160433651786579969" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/EdgarUlloa" class="aktt_username">EdgarUlloa</a> Worked for me but I went ahead and uploaded it to my server. <a href="http://t.co/BLzgUYYV" rel="nofollow">http://t.co/BLzgUYYV</a> enjoy <a href="http://twitter.com/hacktalkblog/statuses/160436736076431360" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/B1gGaGa" class="aktt_username">B1gGaGa</a> anytime <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160437026888491011" class="aktt_tweet_time">#</a></li>
<li>New variants of premium rate SMS trojan &#039;RuFraud&#039; detected in the wild: Researchers from AegisLab, have intercep&#8230; <a href="http://t.co/AxW68oiB" rel="nofollow">http://t.co/AxW68oiB</a> <a href="http://twitter.com/hacktalkblog/statuses/160458156273696768" class="aktt_tweet_time">#</a></li>
<li>Research: Spammers actively harvesting emails from Twitter in real-time: Security researchers from WebSense, hav&#8230; <a href="http://t.co/1twEOZ1P" rel="nofollow">http://t.co/1twEOZ1P</a> <a href="http://twitter.com/hacktalkblog/statuses/160465896136122369" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> Glad I could help <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#039;m totally loving my Kindle Fire as well <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160466604382093312" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> Hell yea, first day xD <a href="http://twitter.com/hacktalkblog/statuses/160471509142482945" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> nah just left stock rom but trying to get Marketplace working now <a href="http://twitter.com/hacktalkblog/statuses/160472050631319552" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> yea I&#039;ve got all that but whenever I try to download apps the download insta fails <a href="http://twitter.com/hacktalkblog/statuses/160472621631279104" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/MrAnonymous2600" class="aktt_username">MrAnonymous2600</a> nah but I heard that often times the app is just retarded when downloading some other apps. I&#039;m about to reinstall though <a href="http://twitter.com/hacktalkblog/statuses/160473446613127168" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/NoSmutsAllowed" class="aktt_username">NoSmutsAllowed</a> I&#039;d say, &quot;Ohai thar&quot; <a href="http://twitter.com/hacktalkblog/statuses/160478138294472704" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/NoSmutsAllowed" class="aktt_username">NoSmutsAllowed</a> they just don&#039;t have their own phones <a href="http://twitter.com/hacktalkblog/statuses/160479408170348545" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/NoSmutsAllowed" class="aktt_username">NoSmutsAllowed</a> you make music with the buttons ofc <a href="http://t.co/8A0k8QEc" rel="nofollow">http://t.co/8A0k8QEc</a> <a href="http://twitter.com/hacktalkblog/statuses/160479869988372480" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/_f0rsaken" class="aktt_username">_f0rsaken</a> wanna interview for my site <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160486584347656192" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/_f0rsaken" class="aktt_username">_f0rsaken</a> Sounds good <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160487934083084288" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/encryptedsorrow" class="aktt_username">encryptedsorrow</a> Just noticed you changed your twitter avatar <a href="http://twitter.com/hacktalkblog/statuses/160489176452698112" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/encryptedsorrow" class="aktt_username">encryptedsorrow</a> haha it looks good <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160490161271091200" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cinnamon_carter" class="aktt_username">cinnamon_carter</a> anytime <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/160490685043179520" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-21%2F&amp;title=Tweets%20for%202012-01-21" id="wpa2a_28"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-21/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweets for 2012-01-20</title>
		<link>http://blog.hacktalk.net/tweets-for-2012-01-20/</link>
		<comments>http://blog.hacktalk.net/tweets-for-2012-01-20/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 06:00:00 +0000</pubDate>
		<dc:creator>connection</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.hacktalk.net/tweets-for-2012-01-20/</guid>
		<description><![CDATA[HackTalk.net is officially back #BlackOut #FUCKSOPA #J18 # New Exploit [webapps] &#8211; PhpBridges Blog System members.php SQL Injection: http://t.co/2iQIJDVH #Exploit # New Exploit [webapps] &#8211; pGB 2.12 kommentar.php SQL Injection Vulnerability: http://t.co/CK4XX98H #Exploit # New Exploit [papers] &#8211; Malware Reverse Engineering Part 1 &#8211; Static Analysis: http://t.co/kXPOHKpN #Exploit # New Exploit [webapps] &#8211; deV!L`z Clanportal [...]]]></description>
			<content:encoded><![CDATA[<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-20%2F&amp;title=Tweets%20for%202012-01-20" id="wpa2a_30"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p><ul class="aktt_tweet_digest">
<li>HackTalk.net is officially back #<a href="http://search.twitter.com/search?q=%23BlackOut" class="aktt_hashtag">BlackOut</a> #FUCKSOPA #<a href="http://search.twitter.com/search?q=%23J18" class="aktt_hashtag">J18</a> <a href="http://twitter.com/hacktalkblog/statuses/159857377770868736" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; PhpBridges Blog System members.php SQL Injection:  <a href="http://t.co/2iQIJDVH" rel="nofollow">http://t.co/2iQIJDVH</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/159857999505145856" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; pGB 2.12 kommentar.php SQL Injection Vulnerability:  <a href="http://t.co/CK4XX98H" rel="nofollow">http://t.co/CK4XX98H</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/159857998196510720" class="aktt_tweet_time">#</a></li>
<li>New Exploit [papers] &#8211; Malware Reverse Engineering Part 1 &#8211; Static Analysis:  <a href="http://t.co/kXPOHKpN" rel="nofollow">http://t.co/kXPOHKpN</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/159858002755727360" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; deV!L`z Clanportal 1.5.5 Moviebase Addon Blind SQL Injection Vulnerability:  <a href="http://t.co/UX0tbjBz" rel="nofollow">http://t.co/UX0tbjBz</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/159858001719721985" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; deV!L`z Clanportal Gamebase Addon SQL Injection Vulnerability:  <a href="http://t.co/XVuWyM7q" rel="nofollow">http://t.co/XVuWyM7q</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/159858000591470593" class="aktt_tweet_time">#</a></li>
<li>Facebook exposes hackers behind Koobface worm: Facebook has confirmed it is releasing as much information as it &#8230; <a href="http://t.co/qE82B8PV" rel="nofollow">http://t.co/qE82B8PV</a> <a href="http://twitter.com/hacktalkblog/statuses/159858486002462720" class="aktt_tweet_time">#</a></li>
<li>Apple&#039;s iOS cited as the most popular mobile OS for enterprise: Apple&#039;s iOS has been labeled as the most commonl&#8230; <a href="http://t.co/40V4n20S" rel="nofollow">http://t.co/40V4n20S</a> <a href="http://twitter.com/hacktalkblog/statuses/159858489949290496" class="aktt_tweet_time">#</a></li>
<li>Shock as tech news site researches own story: Kudos to InfoWorld for researching and breaking its story about th&#8230; <a href="http://t.co/IjiZuuFh" rel="nofollow">http://t.co/IjiZuuFh</a> <a href="http://twitter.com/hacktalkblog/statuses/159858488711987200" class="aktt_tweet_time">#</a></li>
<li>DARPA authentication project focuses on humans as secrets: DARPA is working on a plan to create innovative biome&#8230; <a href="http://t.co/ujuCTVmf" rel="nofollow">http://t.co/ujuCTVmf</a> <a href="http://twitter.com/hacktalkblog/statuses/159858487340437505" class="aktt_tweet_time">#</a></li>
<li>European antitrust ruling on Google expected by late March: European antitrust regulators are reportedly poised &#8230; <a href="http://t.co/8WAKIhhA" rel="nofollow">http://t.co/8WAKIhhA</a> <a href="http://twitter.com/hacktalkblog/statuses/159858491538935808" class="aktt_tweet_time">#</a></li>
<li>Thanks to all the people who followed me today, I&#039;m following back now <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/159858578604310529" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/megatr0nz" class="aktt_username">megatr0nz</a> thanks for the mention <a href="http://twitter.com/hacktalkblog/statuses/159858670769942528" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/cinnamon_carter" class="aktt_username">cinnamon_carter</a> thanks for the mention <a href="http://twitter.com/hacktalkblog/statuses/159859386473398274" class="aktt_tweet_time">#</a></li>
<li>For everyone trying to get past the block on #<a href="http://search.twitter.com/search?q=%23Wikipedia" class="aktt_hashtag">Wikipedia</a> : Just Disable Javascript <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  I&#039;ve waited all day to say that <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/159861442718347264" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/corq" class="aktt_username">corq</a> Haha yea you could use mobile or visit the spanish wikipedia using chrome and auto translate to english <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' />  <a href="http://twitter.com/hacktalkblog/statuses/159863098998665216" class="aktt_tweet_time">#</a></li>
<li>Pwning With Backtrack 0&#215;02 #<a href="http://search.twitter.com/search?q=%23DNSEnum" class="aktt_hashtag">DNSEnum</a> &#8211; <a href="http://t.co/v74HaklM" rel="nofollow">http://t.co/v74HaklM</a>: <a href="http://t.co/IkY2xXXw" rel="nofollow">http://t.co/IkY2xXXw</a> <a href="http://twitter.com/hacktalkblog/statuses/159863746754392064" class="aktt_tweet_time">#</a></li>
<li>Pwning With Backtrack 0&#215;03 #<a href="http://search.twitter.com/search?q=%23dnsdict6" class="aktt_hashtag">dnsdict6</a> &#8211; <a href="http://t.co/v74HaklM" rel="nofollow">http://t.co/v74HaklM</a>: <a href="http://t.co/pq9Ye2wq" rel="nofollow">http://t.co/pq9Ye2wq</a> <a href="http://twitter.com/hacktalkblog/statuses/159863849212846080" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/learn_to_sw1m" class="aktt_username">learn_to_sw1m</a> yea there were about 4 or 5 ways to get passed it but I wanted to keep them to myself so the msg would spread <a href="http://twitter.com/hacktalkblog/statuses/159865580910948352" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/drb0n3z" class="aktt_username">drb0n3z</a>: #<a href="http://search.twitter.com/search?q=%23theblackmatrix" class="aktt_hashtag">theblackmatrix</a> thanks for promoting @<a href="http://twitter.com/hacktalkblog" class="aktt_username">hacktalkblog</a> and in turn myself and @<a href="http://twitter.com/isdpodcast" class="aktt_username">isdpodcast</a>! <a href="http://twitter.com/hacktalkblog/statuses/159871735758458880" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/Cyber_War_News" class="aktt_username">Cyber_War_News</a> Hey are you guys looking for affiliates? <a href="http://twitter.com/hacktalkblog/statuses/159995028662530048" class="aktt_tweet_time">#</a></li>
<li>McAfee to plug spam hole this week: McAfee will release a fix this week for a bug in its software that scammers &#8230; <a href="http://t.co/TpN2s8Hq" rel="nofollow">http://t.co/TpN2s8Hq</a> <a href="http://twitter.com/hacktalkblog/statuses/159995486323998720" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; Drupal CKEditor 3.0 &#8211; 3.6.2 &#8211; Persistent EventHandler XSS:  <a href="http://t.co/07rABB1A" rel="nofollow">http://t.co/07rABB1A</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160017111241080832" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; PostNuke Module pnAddressbook SQL Injection Vulnerability:  <a href="http://t.co/kvvPpq5z" rel="nofollow">http://t.co/kvvPpq5z</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160017115301167106" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; WordPress uCan Post plugin  <a href="http://t.co/qakO4o1C" rel="nofollow">http://t.co/qakO4o1C</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160017113296289792" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/biggest_G_in_CT" class="aktt_username">biggest_G_in_CT</a> when it rains it pours <a href="http://twitter.com/hacktalkblog/statuses/160025924258119682" class="aktt_tweet_time">#</a></li>
<li>New Exploit [webapps] &#8211; appRain CMF  <a href="http://t.co/jA7p6SgH" rel="nofollow">http://t.co/jA7p6SgH</a> #<a href="http://search.twitter.com/search?q=%23Exploit" class="aktt_hashtag">Exploit</a> <a href="http://twitter.com/hacktalkblog/statuses/160039806976536576" class="aktt_tweet_time">#</a></li>
<li>Apple education event: Winners and losers: With Apple&#039;s announcement just out the door, we take a look at some o&#8230; <a href="http://t.co/fDbH9fzb" rel="nofollow">http://t.co/fDbH9fzb</a> <a href="http://twitter.com/hacktalkblog/statuses/160042351992123393" class="aktt_tweet_time">#</a></li>
<li>HackTalk.net Now Proudly Affiliated with @<a href="http://twitter.com/Cyber_War_News" class="aktt_username">Cyber_War_News</a>  #<a href="http://search.twitter.com/search?q=%23CyberWarNews" class="aktt_hashtag">CyberWarNews</a> Info <a href="http://twitter.com/hacktalkblog/statuses/160043223048388609" class="aktt_tweet_time">#</a></li>
<li>Koobface gang pulls server after Facebook exposes hackers: After Facebook released their identities, the five ha&#8230; <a href="http://t.co/rIGVC3OO" rel="nofollow">http://t.co/rIGVC3OO</a> <a href="http://twitter.com/hacktalkblog/statuses/160059458205134848" class="aktt_tweet_time">#</a></li>
<li>Adobe: Tablet owners spend more money online than smartphone owners: Tablet visitors spent more per purchase tha&#8230; <a href="http://t.co/YMqtWWRj" rel="nofollow">http://t.co/YMqtWWRj</a> <a href="http://twitter.com/hacktalkblog/statuses/160069119901843456" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/standardman" class="aktt_username">standardman</a> write it.. NOW <a href="http://twitter.com/hacktalkblog/statuses/160081744660398080" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/standardman" class="aktt_username">standardman</a> haha brilliant <a href="http://twitter.com/hacktalkblog/statuses/160083568352169984" class="aktt_tweet_time">#</a></li>
<li>RT @<a href="http://twitter.com/k3170Makan" class="aktt_username">k3170Makan</a>: <a href="http://t.co/LKs1AzNd" rel="nofollow">http://t.co/LKs1AzNd</a> new blog on its way <img src='http://blog.hacktalk.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  thanks to @<a href="http://twitter.com/0xerror" class="aktt_username">0xerror</a> <a href="http://twitter.com/hacktalkblog/statuses/160106183636680705" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/0xerror" class="aktt_username">0xerror</a> Yea I noticed Glad to know his blog is back up now. Why did they delete it though <a href="http://twitter.com/hacktalkblog/statuses/160107128093282304" class="aktt_tweet_time">#</a></li>
<li>@<a href="http://twitter.com/0xerror" class="aktt_username">0xerror</a> yea. I&#039;ve been banned/deleted from blogspot before which is why I only use blogspot for testing site ideas now =\ <a href="http://twitter.com/hacktalkblog/statuses/160110098339999745" class="aktt_tweet_time">#</a></li>
<li>Not saying the retaliation is right but taking down a filesharing site the day after #<a href="http://search.twitter.com/search?q=%23J18" class="aktt_hashtag">J18</a> and pissing off hackers prolly wasn&#039;t smart&#8230; <a href="http://twitter.com/hacktalkblog/statuses/160116092470169601" class="aktt_tweet_time">#</a></li>
<li>Apple&#039;s textbook plan&#039;s biggest flaw is that it&#039;s tied to the iPad: Apple may aim to reinvent the textbook marke&#8230; <a href="http://t.co/mBEGgZJX" rel="nofollow">http://t.co/mBEGgZJX</a> <a href="http://twitter.com/hacktalkblog/statuses/160126289116798976" class="aktt_tweet_time">#</a></li>
</ul>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fblog.hacktalk.net%2Ftweets-for-2012-01-20%2F&amp;title=Tweets%20for%202012-01-20" id="wpa2a_32"><img src="http://blog.hacktalk.net/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://blog.hacktalk.net/tweets-for-2012-01-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

