Ask Your Question
0

How can i remove packet headers with script

asked 2020-03-01 08:21:01 +0000

Elad M. gravatar image

updated 2020-03-01 08:21:23 +0000

Hi, I wish to remove packet headers as vlan and mpls (maybe other headers in the future) on a pcap file, i have a few problems:

  1. I need to do it with a script (Python based)(on windows env)(I have a lot of them so using gui based applications as TraceWrangler takes to much time)
  2. I'm able to do so with editcap (it can remove vlan tags, but couldn't find any option for other headers).
  3. With editcap i can remove other headers with the -C option, but the only way i was able to check the size and offset of a spesific header is with tshark extract to pdml file, the problem is it takes too long and i don't know why.

Thanks.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
0

answered 2020-03-03 19:58:37 +0000

Chuckc gravatar image

You asked for Python but in the past Perl was usually faster.
Here is an example using Perl to remove headers from RTP packets:
https://wiki.wireshark.org/RtpDumpScript
process_pkt would need a little code to determine the type of header to know how much to chop.

edit flag offensive delete link more
0

answered 2020-03-03 15:34:07 +0000

grahamb gravatar image

Take a look at Scapy, it's a python library for working with packets and manipulating them.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-03-01 08:21:01 +0000

Seen: 1,487 times

Last updated: Mar 03 '20