New: pcapAll contenthive-129948hive-196917krsteemhive-183959hive-180932zzanhive-166405photographyuncommonlabhive-185836hive-188619bitcoinhive-150122hive-183397hive-144064krsuccesshive-124908hive-101145hive-139150hive-145157hive-109690lifehive-184714hive-103599TrendingNewHotLikersnileshevrywhr (25)in reverseengineering • 3 years agoAuth0 CTF - reverse engineering USB keystrokes from pcapsAuth0 CTF was another great experience for me to attempt all kinds of new challenges. I could only solve 6 challenges with just 1 Web this time. Among Forensics was a challenege called Log , which…ss5h (25)in network • 7 years agopcap parsing using dpkt어쩌다 pcap에서 http 통신을 하는 패킷을 찾아내고 Request에 들어가는 값들을 파싱해야하는 일이 생겼다. 그래서 사용한게 dpkt 라이브러리이다. 사용법은 엄청 간단하다. pcap파일을 rb모드로 open하고 dpkt.pcap.Reader라는 함수에 넣어주면 기초 작업은 끝이다. f = open(sys.argv[1],'rb')