Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ribtips/perl-pcapng
A PcapNG parser written in pure Perl
https://github.com/ribtips/perl-pcapng
pcapng pcapng-decoder perl perl5 perl5-module
Last synced: 4 days ago
JSON representation
A PcapNG parser written in pure Perl
- Host: GitHub
- URL: https://github.com/ribtips/perl-pcapng
- Owner: ribtips
- License: mit
- Created: 2022-10-13T21:22:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-27T23:40:06.000Z (over 1 year ago)
- Last Synced: 2024-11-21T08:30:53.076Z (2 months ago)
- Topics: pcapng, pcapng-decoder, perl, perl5, perl5-module
- Language: Perl
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# perl-pcapng
This is a pcapng parser written in pure perl.Currently the file parser has 2 modes:
Mode1 - Read Whole File
- You give the script a pcapng file location and it will open the whole file and read the entirety of the file. It will return a hash or hashes with all of the sections broken out.Mode2 - Read and Return Individual Blocks
- You give the script a file handle and location of where it is in the file, and it will only read a single block at a time. At the end of each block it will return a hash that has the contents of the block stored in the hash.