Golang是一門適用於建立高效可靠的網頁應用程式的程式語言。 Nmap是一個用於網路發現和安全審計的流行工具,能夠快速探測網路上的主機並識別它們的作業系統和服務開放埠。本文將介紹如何使用Golang實作一個簡單的nmap工具。
在開始之前,需要先安裝Golang和nmap。
在命令列中輸入以下指令建立一個新的Golang專案:
mkdir nmap cd nmap go mod init github.com/yourusername/nmap
這個指令會建立一個包含go.mod
檔案的項目,go.mod
檔案用於管理專案的依賴關係。
使用下列指令在go.mod
檔中加入nmap函式庫:
require github.com/Ullaakut/nmap/v2 v2.0.0
這個指令會告訴Golang使用版本2.0.0的nmap函式庫。版本2.0.0中增加了對Golang的支援。
接下來,我們來寫程式碼實作nmap掃描。在專案根目錄下建立一個名為main.go
的文件,並輸入以下程式碼:
package main import ( "fmt" "github.com/Ullaakut/nmap/v2" "log" ) func main() { target := "localhost" ports := "1-1024" // create the scanner scanner, err := nmap.NewScanner( nmap.WithTargets(target), nmap.WithPorts(ports), ) if err != nil { log.Fatalf("unable to create scanner: %v", err) } // run the scan result, warnings, err := scanner.Run() if err != nil { log.Fatalf("unable to run scan: %v", err) } if warnings != nil { log.Printf("warnings: %v", warnings) } for _, host := range result.Hosts { fmt.Printf("IP: %s ", host.Addresses[0]) fmt.Printf("OS: %s ", host.OS.OsMatches[0].Name) fmt.Println("Ports:") for _, port := range host.Ports { if port.State.State == "open" { fmt.Printf("%d/%s %s %s ", port.ID, port.Protocol, port.State.State, port.Service.Name) } } fmt.Println() } }
這個程式碼會掃描localhost
的前1024個端口,並列印出每個連接埠的狀態和服務。
在命令列中輸入以下命令執行程式碼:
go run main.go
程式會執行掃描並輸出結果,類似於以下內容:
IP: 127.0.0.1 OS: Linux 2.6.x Ports: 22/tcp open ssh 80/tcp open http
這個輸出表明,localhost
上的22號和80號連接埠是開啟的。
結論
透過使用Golang和nmap函式庫,我們實作了一個簡單的nmap工具,可快速發現網路上的主機並檢查它們的連接埠。 Golang的高速執行效能和nmap函式庫的易用性,使得實作一個客製化的掃描器變得異常便利。
以上是golang實作nmap的詳細內容。更多資訊請關注PHP中文網其他相關文章!