An open API service indexing awesome lists of open source software.

https://github.com/rakarmp/athena

Port Scanning Simple Project With Go
https://github.com/rakarmp/athena

golang port port-scanning simple-project

Last synced: 3 months ago
JSON representation

Port Scanning Simple Project With Go

Awesome Lists containing this project

README

        

## Port Scanning

Simple Write Pure Go
For Learn Create Project

### Use

```
go get github.com/rakarmp/athena/port
```

#### Example Code

```
package main

import (
"fmt"

"github.com/rakarmp/athena/port"
)

func main() {
fmt.Println("Port Scanning")
result := port.InitialScan("localhost")
fmt.Println(result)

widescanresult := port.WideScan("localhost")
fmt.Println(widescanresult)
}
```