Skip to content

pbdsce/py-netmamba

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NetMamba

Scan for hosts in a network.

Basic Information

NetMamba scans for hosts connected to a network by creating an ARP packet that is broadcasted to the network. Sudo privilege is required to broadcast this. The devices connected to the network respond back with their IP and MAC addresses.

How to run

  • Using curl:

    #From github
    curl https://raw.githubusercontent.com/hariomch/py-netmamba/main/netscan.py -o netscan.py
    sudo python3 netscan.py -t [NETWORK-IP]
  • Cloning Repo:

    # Clone repo
    git clone 'https://github.com/hariomch/py-netmamba.git'
    cd py-netmamba
    sudo python3 netscan.py -t [NETWORK-IP]

    another way:

    git clone 'https://github.com/hariomch/py-netmamba.git'
    cd py-netmamba
    chmod +x netscan.py
    sudo ./netscan.py -t [NETWORK-IP]

Usage

Flag Description
-h (--help) Displays the usage of NetMamba
-t (--target) Accepts the network IP in CIDR format to be scanned.

Run Netscan.c

  • Just run the code in any ide and it will automatically run arp -a the command in cmd

Releases

No releases published

Packages

No packages published

Languages

  • Python 96.0%
  • C 4.0%