Skip to content
Permalink
af113b442c
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
41 lines (27 sloc) 779 Bytes

Portscanner Example Code

Example code for the port scanner task.

Different iterations are in branches.

Branches

  • InitialVersion: Base Code from the Site
  • Reserved Ports: Task 2 Scan all the reseved ports (1-1024)
  • Banner Grabbing: Tasks 3 and 4 (as they are linked, the issue in task 3 leads to 4

Output

Task 2

Just Reserved Ports code

dang@danglaptop ~/Coding/PortScanner$ python scanner.py
PORT 21 is Open
PORT 22 is Open
PORT 25 is Open
PORT 80 is Open

Task 3 and 4

dang@danglaptop ~/Coding/PortScanner$ python scanner.py                 ✹ ✭BannerGrabbing 
Service SMTP Found on port 25
PORT 25 is Open
Service SSH Found on port 242
PORT 242 is Open
Service HTTP (Apache) Found on port 443
PORT 443 is Open