从SMB2流量中提取损坏载荷的Wireshark取证实战
2026/9/15 21:43:35
1.查询测试数据条数
SQL>selectcount(*)fromtest;COUNT(*)----------62.drop 测试表
SQL>drop tabletest;Table dropped.3.通过工具查询到在回收站中存在
4.恢复回收站中误删除表
FLASHBACK TABLE TEST TO BEFORE DROP;5.查询恢复结果
SQL>selectcount(*)fromtest;COUNT(*)----------6