Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | Re: [Snort-users] porn.rules |
|---|---|
| Date: | Fri, 9 Nov 2007 14:11:10 -0500 |
I use squid. Im looking through the access logs now. If I send the
payload, can someone
look at it and determine if it is a false hit? I dont think it is though.
Sure. Also, I wrote a Perl script for converting hex to ASCII. It was
originally done to decode Snort payloads stored in MySQL.
$ echo "5353482D322E302D312E32340A" | ./hex2asc.pl
ASCII Output:
SSH-2.0-1.24
--- cut ---
#!/usr/bin/perl
use strict;
sub hex_to_ascii ($)
{
(my $str = shift) =~ s/([a-fA-F0-9]{2})/chr(hex $1)/eg;
return $str;
}
my $str;
while ($str=<STDIN>)
{
my $a_str = hex_to_ascii $str;
print "\n\nASCII Output:\n";
print $a_str;
}
--- paste ---
PaulM
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Snort-users mailing list
Snort-users@lists.sourceforge.net
Go to this URL to change user options or unsubscribe:
https://lists.sourceforge.net/lists/listinfo/snort-users
Snort-users list archive:
http://www.geocrawler.com/redir-sf.php3?list=snort-users
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: [Snort-users] How much will a huge list of subnets to the frag3preprocessor slow snort?, Paul Melson |
|---|---|
| Next by Date: | Re: [Snort-users] porn.rules, dhottinger |
| Previous by Thread: | Re: [Snort-users] porn.rules, dhottinger |
| Next by Thread: | Re: [Snort-users] porn.rules, dhottinger |
| Indexes: | [Date] [Thread] [Top] [All Lists] |