https://github.com/mohdjishin/blackhat-go
"Blackhat Go" Repository: Practical Go programs for cybersecurity, covering network recon, vulnerability scanning, post-exploitation. Valuable resource, regularly updated
https://github.com/mohdjishin/blackhat-go
cybersecurity go hacking-tool tools vulnerability-scanners
Last synced: 19 days ago
JSON representation
"Blackhat Go" Repository: Practical Go programs for cybersecurity, covering network recon, vulnerability scanning, post-exploitation. Valuable resource, regularly updated
- Host: GitHub
- URL: https://github.com/mohdjishin/blackhat-go
- Owner: mohdjishin
- Created: 2023-03-30T19:46:52.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-04-02T16:37:14.000Z (about 3 years ago)
- Last Synced: 2026-01-15T05:31:33.292Z (5 months ago)
- Topics: cybersecurity, go, hacking-tool, tools, vulnerability-scanners
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Black Hat Go
This repository contains programs and code examples from the book ["Black Hat Go"](https://www.nostarch.com/blackhatgo) by Tom Steele, Chris Patten, and Dan Kottmann.
## About the Book
"Black Hat Go" is a practical guide to developing security tools and exploiting systems with Go programming language. The book covers a wide range of topics, including network scanning, port scanning, web application development, and cryptography. It also includes practical examples and code snippets that demonstrate how to use Go for security-related tasks.
## Repository Structure
This repository is organized into chapters, each containing code examples and programs related to the topics covered in the book. The structure of the repository is as follows:
```
blackhat-go/
├── chap-01
│ ├── echo_server
│ │ └── main.go
│ ├── portscanner
│ │ ├── port_scanner_channel.go
│ │ └── port_Scanner.go
│ └── Proxying_TCP_client
│ └── main.go
├── chap-02
│ ├── basics
│ │ └── main.go
│ ├── metasploit
│ │ ├── client
│ │ │ └── mian.go
│ │ ├── go.mod
│ │ ├── go.sum
│ │ └── rpc
│ │ └── msf.go
│ ├── parsing
│ │ └── main.go
│ └── shodan
│ ├── cmd
│ │ └── main.go
│ ├── go.mod
│ └── shodan
│ ├── api.go
│ ├── host.go
│ └── shodan.go
└── README.md
```
Each chapter directory contains one or more Go programs and code examples that demonstrate the concepts covered in the book. The code is organized by chapter and by individual examples.
## Requirements
To run the programs in this repository, you will need to have Go installed on your system. You can download and install the latest version of Go from the official website: https://golang.org/
## Usage
To run a program, navigate to the chapter directory that contains the program you want to run and use the `go run` command. For example, to run `port_Scanner.go` in `chap-01/portscanner`, you would use the following command:
```
#usage
cd chap-01/portscanner
go run *.go
```