
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
github.com/ViRb3/tcp-packet-parser
A PCAP analyzer that filters TCP packets and dumps them with appropriate labels.
When reverse-engineering custom TCP protocols, you usually begin with a log of the communication (e.g.WireShark). You then label each client and server TCP packet, and finally reconstruct the application-level packets from those individual packets. This project aims to automate all of this work for you.
libpcap
-compatible library - libpcap-dev
on Linux, or npcap on WindowsCheck out the Releases.
$ ./tcp-packet-parser -help
-clientIp string
Optional client IP filter for packets.
-clientPort uint
Optional client port filter for packets.
-destDir string
Destination directory where to dump packets. (default "capture-dump")
-pcapFile string
Pcap file to parse. (default "capture.pcap")
-serverIp string
Optional server IP filter for packets.
-serverPort uint
Optional server port filter for packets.
The following command will filter all packets that contain the
port 1234
and dump them with appropriate client-server labels.
$ ./tcp-packet-parser -pcapFile "capture.pcap" -serverPort 1234
The following command will do the same as before, except that the client-server labels will be inverted.
$ ./tcp-packet-parser -pcapFile "capture.pcap" -clientPort 1234
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.