Wireshark攻防实战

​一、基础环境配置​

  1. ​安全捕获环境搭建​

    创建隔离环境并抓包

    sudo ip link set eth0 promisc on
    sudo tcpdump -i eth0 -s 0 -w /mnt/isolated/evidence.pcap

  2. ​高危协议快速过滤​

    tcp.port in {135,139,445,3389} || udp.port in {53,123,161,500,4500}

  3. ​关键字段标记技巧​

  • 右键IP → Apply as Column
  • 设置TTL异常值染色规则:TTL<64 or TTL>128

​二、攻击行为检测​

  1. ​扫描行为识别​

    tcp.flags.syn==1 and tcp.flags.ack==0 and tcp.window_size<=1024

  2. ​暴力破解特征捕获​

    tcp.port==22 and (tcp.flags.reset==1 or tcp.analysis.retransmission)

  3. ​DNS隐蔽隧道检测​

    dns and frame.len > 256 && !contains(dns.qry.name, ".google.")

  4. ​WebShell通信特征​

    http.content_type=="application/octet-stream"
    && http.request.method=="POST"
    && frame.len>1024


​三、数据泄露监控​

  1. ​信用卡外泄检测​

    frame matches "\b[3456]\d{3}[ -]?\d{4}[ -]?\d{4}[ -]?\d{4}\b"

  2. ​数据库拖库行为​

    mysql.query contains "SELECT" && frame.len>1500 && tcp.srcport==3306


​四、高级威胁狩猎​

  1. ​Cobalt Strike心跳包检测​

    tcp.payload matches "\x00\x00\x00..\xff\xff\xff"
    && tcp.len between 20 and 50

  2. ​域渗透横向移动​

    smb || kerberos && (ip.src==<域控IP> or ip.dst==<域控IP>)


​五、加密流量分析​

  1. ​恶意TLS指纹识别​

    tls.handshake.ja3 contains "6734f37431670b3ab4292b8f60f29984"

  2. ​异常证书检测​

    tls.handshake.certificate &&
    (x509sat.uTF8String=="Phishing Ltd" ||
    x509ce.dNSName=="freevpn.malicious.ru")


​六、实战应急响应​

  1. ​攻击时间轴重建​

    tshark -r attack.pcap -T fields -e frame.time -e ip.src -e ip.dst -e tcp.port > timeline.csv

  2. ​恶意文件提取​

    tshark -r infection.pcap --export-object http,./malware


​**​七、金融攻防实战案例

​域前置攻击检测实录​

攻击者使用CDN伪装C2通信:

复制代码
HTTP/2 200 OK
:authority: legit-cdn.com
x-amz-cf-pop: SIN2-C1  # 新加坡节点

​致命破绽​​:TLS证书暴露真实域名

复制代码
x509ce.dNSName: c2-malicious.tk

通过0.5秒协议解析差异,成功阻断千万级资金损失


​八、法律合规要点​

  • ​取证规范​editcap保留原始时间戳

  • ​哈希校验​sha256sum evidence.pcap > chain_of_custody.txt

  • ​隐私过滤​

    tcprewrite --infile=raw.pcap --outfile=anon.pcap
    --dstipmap=192.168.1.0/24:10.0.0.0/24


​附:分析师必备过滤库​

复制代码
# 内网横向移动
smb || ldap || winrm || wmi

# 加密挖矿特征
tcp contains "stratum+tcp" || http contains "xmr"

# 钓鱼页面识别
http contains "login" && http contains "password" 
&& !(http.host contains "corp")
相关推荐
改一下配置文件28 分钟前
Ubuntu24.04安装NVIDIA驱动完整指南(含Secure Boot解决方案)
linux
深紫色的三北六号10 小时前
Linux 服务器磁盘扩容与目录迁移:rsync + bind mount 实现服务无感迁移(无需修改配置)
linux·扩容·服务迁移
SudosuBash14 小时前
[CS:APP 3e] 关于对 第 12 章 读/写者的一点思考和题解 (作业 12.19,12.20,12.21)
linux·并发·操作系统(os)
哈基咪怎么可能是AI1 天前
为什么我就想要「线性历史 + Signed Commits」GitHub 却把我当猴耍 🤬🎙️
linux·github
十日十行2 天前
Linux和window共享文件夹
linux
Sinclair2 天前
简单几步,安卓手机秒变服务器,安装 CMS 程序
android·服务器
木心月转码ing2 天前
WSL+Cpp开发环境配置
linux
Rockbean3 天前
用40行代码搭建自己的无服务器OCR
服务器·python·deepseek
茶杯梦轩3 天前
CompletableFuture 在 项目实战 中 创建异步任务 的核心优势及使用场景
服务器·后端·面试
崔小汤呀3 天前
最全的docker安装笔记,包含CentOS和Ubuntu
linux·后端