<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>Thank you for this.  One of our Linux guys helped me out getting it working.  He also made some changes so I figured I'd update here.  I noticed i needed to install mawk and gawk to get it to work.<BR>wget -qO - <a href="http://www.twitter.com/efensive">http://www.twitter.com/efensive</a> |\<br>   awk '/VoIP/ {print gensub(".*>", "", "G", $3)}'<BR> <BR>Brian<br> <BR><div>> Date: Wed, 15 May 2013 09:41:31 -0500<br>> From: joquendo@e-fensive.net<br>> To: voiceops@voiceops.org<br>> Subject: [VoiceOps] Parsing VoIP attacker Twitter feed<br>> <br>> Sorry had to start a new thread (Thunderbird filters via<br>> MS + FreeBSD aren't playing nicely). For those wanting to<br>> parse out, this is what I would do if I had to/wanted to<br>> capture from the feed: (one liner)<br>> <br>> wget -qO - http://www.twitter.com/efensive |\<br>> awk '/VoIP/{print $3}'|sed 's:>: :g'|awk '{print $2}'<br>> <br>> If you wanted to add to say iptables:<br>> <br>> wget -qO - http://www.twitter.com/efensive |\<br>> awk '/VoIP/{print $3}'|sed 's:>: :g'|sort -u |\<br>> awk '{print "iptables -A INPUT -s "$2" -j DROP"}'<br>> <br>> Which is a simple iptable rule:<br>> <br>> iptables -A INPUT -s x.x.x.x -j DROP<br>> <br>> I run something similar out of my crontabs @ 15 on the hou<br>> to parse out unique addresses. I would never bother to<br>> use REJECT since it wastes time/resources telling an<br>> attacker: "I'm REJECTING this packet" YMMV.<br>> <br>> The reasoning for grep'ing ('/VoIP/' in awk) is that every<br>> once in a while I may babble on, or post say APT (the big<br>> bad Chinese/German/Russian boogeyman) threats in my stream<br>> as well as malware related hosts/domains as well. This<br>> ensures that you only get information pertaining to VoIP<br>> based attackers.<br>> <br>> -- <br>> =+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+<br>> J. Oquendo<br>> SGFA, SGFE, C|EH, CNDA, CHFI, OSCP, CPT, RWSP, GREM<br>> <br>> "Where ignorance is our master, there is no possibility of<br>> real peace" - Dalai Lama<br>> <br>> 42B0 5A53 6505 6638 44BB  3943 2BF7 D83F 210A 95AF<br>> http://pgp.mit.edu:11371/pks/lookup?op=get&search=0x2BF7D83F210A95AF<br>> _______________________________________________<br>> VoiceOps mailing list<br>> VoiceOps@voiceops.org<br>> https://puck.nether.net/mailman/listinfo/voiceops<br></div>                                      </div></body>
</html>