Question: Reference https://nostarch.com/download/LinuxBasicsForHackers_Sample_Ch8.pdf The answers should be in screenshots and copy & paste manner when necessary Create a script similar to MySQLscanner.sh but design it to
Reference https://nostarch.com/download/LinuxBasicsForHackers_Sample_Ch8.pdf
The answers should be in screenshots and copy & paste manner when necessary
Create a script similar to MySQLscanner.sh but design it to find systems with Microsofts SQL Server database at port 1433. Call it MSSQLscanner. Also, make a dynamic file with time and date that is changing every time.
MySQLscanner.sh script:
#! /bin/bash
# This script is designed to find hosts with MySQL installed
nmap sT 192.168.181.0/24 p 3306 >/dev/null oG MySQLscan
cat MySQLscan | grep open > MySQLscan2
cat MySQLscan2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
