Skip to content

AdamFSU/Scripts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Dependencies

Must use python3, python2.7 is deprecated as of January 1, 2020.

Required Python packages: python-nmap

To install run: python3 -m pip install python-nmap

Also, since this script will be run from the command line, the $PYTHONPATH environment variable must be set so that python knows where to look for installed python modules when executing the script. I suggest exporting the environment variable at the bottom of .bashrc or .profile.

example: export PYTHONPATH=/usr/lib/python3/dist-packages/

pythons distribution packages are normally located in: /usr/lib/<python version you are using>/dist-packages/

Also don't forget the '/' at the end like I did

If you run the script and get the error: "No module named " then python cannot find the module from the PYTHONPATH environment variable and you may need to troubleshoot. Or, you have not installed the module.

Script Info

I've added as many comments as possible to be verbose as possible so the script is easy to maintain if and when changes are made to your configuration. Disclaimer: I've not tested this thoroughly, and don't even have an SMTP server setup

Currently the scan performs: nmap -oX - -n -sn 192.168.1.69/24 -sn has replaced -sP in newer versions of nmap, if you are using an older version of nmap that still uses -sP you will need to change -sn to -sP in the script

The format of the master mac address file is one mac address per line.An example would be:

AF:M2:R4:UI:ZZ:F2
H3:MM:W2:QQ:YZ:AA
HN:FF:45:99:XC:ZZ

Feel free to remove or change any of the print statements and any content in general. You will need to configure the email addresses and your SMTP server host and port number, you can connect the SMTP server to gmail but will need to lookup how to do that, or just let me know and I can update script.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages