Пример #1
0
def scan(ip):
    """
    Run an ARP scan against the IP/Subnet and return a list of
    clients on the network with their mac address and ip address

    :param ip: str
    :return: list[dict]
    """

    # Create an ARP request destined for the ip/subnet
    arp_request = scapy.ARP(pdst=ip)

    # Create an ethernet frame to the broadcast address
    # REASON: Need to send to the Broadcast address because
    #         the source machine doesn't know who to send the
    #         packet to. Each request is broadcast to the
    #         entire network asking WHOIS <IP ADDRESS>
    broadcast = scapy.Ether(dst=BROADCAST_ADDRESS)

    # Combine the two layers to create an ARP packet
    arp_broadcast_request = broadcast/arp_request

    # Create a list of all responses with their MAC address and IP address
    answered, unanswered = scapy.srp(arp_broadcast_request, timeout=1, verbose=False)
    clients = [{"mac": answer.hwsrc, "ip": answer.psrc} for sent, answer in answered]
    return clients
def get_mac(ip):
    arp_request = scapy.ARP(pdst=ip)
    broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff")
    arp_request_broadcast = broadcast / arp_request
    answered_list = scapy.srp(arp_request_broadcast, timeout=1,
                              verbose=False)[0]
    return answered_list[0][1].hwsrc
Пример #3
0
def scan(ip):
    arp_request = scapy.ARP(pdst=ip)
    broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff:ff")
    arp_request_broadcast = broadcast / arp_request
    list_answered = scapy.srp(arp_request_broadcast, timeout=1,
                              verbose=False)[0]
    clients_list = []
    for element in list_answered:
        p0f(element[0])
Пример #4
0
 def get_mac(self, ip):
     arp_request = scapy.ARP(pdst=ip)
     broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff:ff")
     arp_request_broadcast = broadcast / arp_request
     list_answered = scapy.srp(arp_request_broadcast,
                               timeout=1,
                               verbose=False)[0]
     mac_address = list_answered[0][1].hwsrc
     return mac_address
Пример #5
0
 def scan(self, ip):
     arp_request = scapy.ARP(pdst=ip)
     broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff:ff")
     arp_request_broadcast = broadcast / arp_request
     list_answered = scapy.srp(arp_request_broadcast,
                               timeout=1,
                               verbose=False)[0]
     clients_list = [{
         "ip": element[1].psrc,
         "mac": element[1].hwsrc
     } for element in list_answered]
     return clients_list
 def _arp_ping(mac_address):
     result = []
     answered, unanswered = srp(Ether(dst=mac_address) /
                                ARP(pdst=self.network_address),
                                timeout=1,
                                verbose=False)
     if len(answered) > 0:
         for reply in answered:
             if reply[1].hwsrc == mac_address:
                 result.append(str(reply[1].psrc))
                 result = ', '.join(result)
     return result
def scan(ip):
    arp_request = scapy.ARP(pdst=ip)
    broadcast = scapy.Ether(dst="ff:ff:ff:ff:ff:ff")
    arp_request_broadcast = broadcast/arp_request
    answered_list = scapy.srp(arp_request_broadcast, timeout=60, verbose=False)[0]


    clients_list = []
    for element in answered_list:
        client_dict = {"ip": element[1].psrc, "mac": element[1].hwsrc}
        clients_list.append(client_dict)
        # print(element[1].psrc + "\t\t" + element[1].hwsrc)
    return clients_list
Пример #8
0
def get_mac_address(ip):
    arp_request = scapy.ARP(pdst=ip)
    broadcast = scapy.Ether(dst=BROADCAST_ADDRESS)
    arp_broadcast_request = broadcast / arp_request

    answered, unanswered = scapy.srp(arp_broadcast_request,
                                     timeout=1,
                                     verbose=False)
    if not answered:
        print(f"[-] Could not locate {ip} on the network.")
        sys.exit("[-] Exiting.")
    else:
        sent, answer = answered[0]
        return answer.hwsrc
def mac():

    IpScan = '192.168.1.1/24'

    try:

        ans, unans = srp(Ether(dst="FF:FF:FF:FF:FF:FF") / ARP(pdst=IpScan),
                         timeout=2)

    except Exception as e:

        print(e)
    else:

        for send, rcv in ans:

            ListMACAddr = rcv.sprintf("%Ether.src%---%ARP.psrc%")

            print(ListMACAddr)
Пример #10
0
def send_arp_msg():
    """send_arp_msg

    Send an ``ARP`` message to the network device (``enp0s3`` by default).

    """

    dev = os.getenv("ARP_INTERFACE", "enp0s3").strip().lstrip()
    network_details = netifaces.ifaddresses(dev)
    dst_ip = os.getenv("ARP_DST_IP", network_details[2][0]["addr"])
    dst_mac = os.getenv("ARP_DST_MAC", network_details[17][0]["addr"])

    print(("Sending ARP to mac={} ip={}").format(dst_mac, dst_ip))

    answered, unanswered = kamene.srp(kamene.Ether(dst=dst_mac) /
                                      kamene.ARP(pdst=dst_ip),
                                      timeout=2,
                                      verbose=False)

    if len(answered) > 0:
        print(answered[0][0].getlayer(kamene.ARP).pdst + " is up")
    elif len(unanswered) > 0:
        print(unanswered[0].getlayer(kamene.ARP).pdst + " is down")
Пример #11
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @Time    : 2019-04-25 16:09
# @Author  : Pan Xuelei
# @FileName: test.py
# @Eamil   : [email protected]
# @Description:
# @Related Links:

import sys
if len(sys.argv) != 2:
    print("Usage: arping2tex <net>\n  eg: arping2tex 192.168.1.0/24")
    sys.exit(1)

from kamene.all import srp, Ether, ARP, conf

conf.verb = 0
ans, unans = srp(Ether(dst="ff:ff:ff:ff:ff:ff") / ARP(pdst=sys.argv[1]),
                 timeout=2)

print(r"\begin{tabular}{|l|l|}")
print(r"\hline")
print(r"MAC & IP\\")
print(r"\hline")
for snd, rcv in ans:
    print(rcv.sprintf(r"%Ether.src% & %ARP.psrc%\\"))
print(r"\hline")
print(r"\end{tabular}")