본문 바로가기
카테고리 없음

와이어샤크 Wireshark 필터 사용법

by kimnampill 2024. 4. 11.
728x90
반응형

[특정 IP, http통신, jpg/png 제외]
ip.addr == 아이피 && http && !(http.content_type contains "image/png" || http.content_type contains "image/jpeg" || http.content_type contains "application/javascript" || http.request.uri contains ".png" || http.request.uri contains ".jpg")


[http통신, jpg/png제외, /login.do 페이지만]
http && !(http.content_type contains "image/png" || http.content_type contains "image/jpeg" || http.content_type contains "application/javascript" || http.request.uri contains ".png" || http.request.uri contains ".jpg") || http.request.uri contains "/login.do"



[pcap 파일 합치기]
mergecap -w merged_output.pcap file1.pcap file2.pcap file3.pcap

cd 경로\폴더
mergecap -w merged_output.pcap *.pcap

반응형

댓글