https://github.com/jd-apprentice/hacking-tools
A suite of hacking tools for my personal usage
https://github.com/jd-apprentice/hacking-tools
Last synced: 7 months ago
JSON representation
A suite of hacking tools for my personal usage
- Host: GitHub
- URL: https://github.com/jd-apprentice/hacking-tools
- Owner: jd-apprentice
- Created: 2024-03-31T15:13:33.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-07T21:16:38.000Z (almost 2 years ago)
- Last Synced: 2025-03-28T11:34:44.402Z (11 months ago)
- Language: Zig
- Size: 2.16 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hacking-tools
A suite of hacking tools for my personal usage

## Get Me Ports
After doing a `nmap` scan, you can use `get-me-ports` to only display relevant information.

## Mks
A simple script to create a scaffold for your htb machines.

## File Structure
Structure is as follows:
```
🌳 hacking-tools/
┣ 📁 .github/
┃ ┗ 📁 workflows/
┃ ┗ 📄 get-me-ports.yml
┣ 📁 apps/
┃ ┣ 📁 get_me_ports/
┃ ┃ ┣ 📁 linux/
┃ ┃ ┃ ┗ 📄 get-me-ports_x86_64
┃ ┃ ┗ 📁 windows/
┃ ┃ ┗ 📄 get-me-ports_x86_64.exe
┃ ┣ 📁 mks/
┃ ┃ ┣ 📁 linux/
┃ ┃ ┃ ┗ 📄 mks_x86_64
┃ ┃ ┗ 📁 windows/
┃ ┃ ┗ 📄 mks_x86_64.exe
┃ ┣ 📄 get-me-ports.zig
┃ ┣ 📄 mks.zig
┃ ┗ 📄 utils.zig
┣ 📁 assets/
┃ ┣ 📄 get_me_ports.png
┃ ┣ 📄 mks.png
┃ ┗ 📄 wallpaper.jpg
┣ 📄 .gitignore
┣ 📄 Makefile
┣ 📄 README.md
┗ 📄 sampleScan
```
## Links
- https://nofmal.github.io/zig-with-example/string-handling/
- https://zighelp.org/chapter-3/#cross-compilation
- https://zig.guide/
- https://ziglang.org/documentation/0.11.0/#Introduction
- https://ziggit.dev/