Networking
710

Simple tcp-port-scanner using C programs






  20-Oct-2020 20:48:08



How does it work?

This scanner will enumerate the target host's port. The scanner will call connect(2) to the target host with the port start from port 1 to 65535.

If the scanner gets ECONNREFUSED then, we assume that the target port is not behind the firewalled environment, in the general case, this condition occurs when there is no service that binds to such port.

If the scanner gets EINPROGRESS or ETIMEDOUT then, it means the scanner has reached its time limit (can be set in parameter). In the general case, this condition occurs when the target host is dropping our packet, so we assume that the port is behind a firewalled environment.


Installation 

git clone https://github.com/ammarfaizi2/tcp-port-scanner;
cd tcp-port-scanner;
make;


Usage

Usage: ./scanner [options]
  Options:
    -t|--threads <num>	Number of threads (default: 8)
    -h|--host <host>	Target host (IPv4)
    -v|--verbose	Verbose output (use more -v to increase verbose level)
    -r|--recv-timeout	recv(2) timeout (default: 5)
    -s|--send-timeout	send(2) timeout, this affects connect(2) too (default: 5)

Example Usage 

# It will create directory with name "reports/157.240.13.35"
./scanner -h 157.240.13.35 -t 4 -r 10 -s 10 -vvv


# Check the reports
cat reports/157.240.13.35/000_report.txt | sort;

github account : https://github.com/ammarfaizi2/tcp-port-scanner

*Beware click the link!


DISCUSSION
Nothing comment here :(
Login for report, comment and join discussion
Login Here
Sponsored

Popular Posts
Gps Tracker Seccodeid Free Too...
General
21824
206
Top


Djie sam soe Djie sam soe
Complete Basic Course in Kali...
Linux
14723
4
Top


Djie sam soe Djie sam soe
Free Proxy List
Networking
3717
3
Top


Sandidi Sandidi
Need ida pro crack anyone have...
Reverse Engineering
2384
29
Top


Member Seccodeid Rei
Xampp msyql error cant running
Web Development
2341
25
Top


Karno si kribo Karno si kribo

Related Post

Youtube Video

Subscribe