The script was initially made for scanning internal network devices for port 80 but one can also scan whole internet for HTTP port and see all IPs that are listening on PORT 80
python 2.7
MySQLdb - pip install MySQLdb
-
pip install mysql-python
"or"
-
pip install mysqlclient
Create MySQL Databse before executing the script
Use follow the commands :-
- CREATE USER 'internet'@'localhost' IDENTIFIED BY 'Qwerty@321';
- GRANT SELECT ON * . * TO 'internet'@'localhost';
- CREATE DATABASE internet;
- GRANT ALL PRIVILEGES ON
internet
. * TO 'internet'@'localhost'; - CREATE TABLE network (time datetime, ip varchar(255), data varchar(255));
- Windows 7 and above with XAMPP
- Linux Ubuntu 18.0