-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
21 lines (17 loc) · 939 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Install:
$ make install
Compile, build:
$ make all
Run:
$ bin/packetparse examples/smtp.pcap # ETH-IP
$ bin/packetparse examples/sampleimf.pcap # ETH-IP
$ bin/packetparse -t examples/smtp.pcap && bash scripts/least.sh # ETH-IP-TCP
$ bin/packetparse -t examples/sampleimf.pcap && bash scripts/least.sh # ETH-IP-TCP
$ bin/packetparse -m examples/smtp.pcap && bash scripts/smtp.sh # ETH-IP-TCP-SMTP
$ bin/packetparse -m examples/sampleimf.pcap && bash scripts/smtp.sh # ETH-IP-TCP-SMTP
$ bin/packetparse -c examples/cookie.pcap && bash scripts/cookies.sh # ETH-IP-TCP-HTTP
Verbose error-logging:
$ COMMAND="bin/packetparse examples/smtp.pcap"
$ clear; make clean; make all && valgrind --track-origins=yes --leak-check=full --show-leak-kinds=all $COMMAND
Check intermediate debug output (after running ETH-IP-TCP-SMTP):
$ bash scripts/debug.sh