Hi all,
I need an utility to fetch GET, POST, and AUTH payloads. I started searching around, and I found
this code, and that's exactly what I need. However, I didn't manage to make the output to be one-lined, as Lincoln showed in the forementioned page.
The code:
#!/usr/bin/perl
$LIMIT = shift || 5000;
$|=1;
open (STDIN,"/usr/sbin/tcpdump -lnx -s 1024 dst port 80 |");
while (<>) {
if (/^\S/) {
last unless $LIMIT--;
while ($packet=~/(GET|POST|WWW-Authenticate|Authorization).+/g) {
print "$client -> $host\t$&\n";
}
undef $client; undef $host; undef $packet;
($client,$host) = /(\d+\.\d+\.\d+\.\d+).+ > (\d+\.\d+\.\d+\.\d+)/
if /P \d+:\d+\((\d+)\)/ && $1 > 0;
}
next unless $client && $host;
s/\s+//;
s/([0-9a-f]{2})\s?/chr(hex($1))/eg;
tr/\x1F-\x7E\r\n//cd;
$packet .= $_;
}
I
do get some output, but sliced, as if the "line builder" above didn't work.
I found
this thread on Perlmonks on the same subject, which happens to have a
very similar example. When trying that one, I don't get any output at all.
My OS: Slackware GNU Linux 10.0
Any help is appreciated. Cheers.
EDIT: Here's the output I'm getting when using the above code.
root@iceblue:~# perl sn
tcpdump: verbose output suppressed, use -v or -vv for full protocol de
+code
listening on eth0, link-type EN10MB (Ethernet), capture size 1024 byte
+s
192.168.0.249 -> 209.197.123.153 GET /ind P.......GET./ind
192.168.0.249 -> 209.197.123.153 GET /ind P...`...GET./ind
192.168.0.249 -> 209.197.123.153 GET /ind P...X...GET./ind
192.168.0.249 -> 209.197.123.153 GET /ima P.......GET./ima
192.168.0.249 -> 209.197.79.97 GET /i/p P.......GET./i/p
192.168.0.249 -> 66.39.54.27 GET /ima P...;...GET./ima
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.