Skip to content
Permalink
Browse files
Break port scanning into a direcotry
  • Loading branch information
aa9863 committed Oct 7, 2021
1 parent 01f38a4 commit af113b442c45f74aeda8d37aa72504fd95a33e9a
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 40 deletions.
@@ -0,0 +1,41 @@
# 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
```


File renamed without changes.
@@ -1,41 +1,3 @@
# 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
```

# Solutions for Lab tasks

Code solutions for lab tasks where coding is involved.

0 comments on commit af113b4

Please sign in to comment.