Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielstephengilbert/pentest-tools-api
A REST API that serves payloads used in penetration testing.
https://github.com/danielstephengilbert/pentest-tools-api
go penetration-testing rest-api
Last synced: 14 days ago
JSON representation
A REST API that serves payloads used in penetration testing.
- Host: GitHub
- URL: https://github.com/danielstephengilbert/pentest-tools-api
- Owner: danielstephengilbert
- Created: 2024-07-29T04:00:03.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-08-11T04:19:58.000Z (3 months ago)
- Last Synced: 2024-08-11T05:37:26.069Z (3 months ago)
- Topics: go, penetration-testing, rest-api
- Language: Go
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
pentest-tools/api
By Daniel Gilbert
A REST API written in Go that serves payloads used in penetration testing.
The purpose of my API is to be like an msfvenom/msfconsole, but via a web API :).
Configure payloads and retrieve or deploy them remotely/locally.Usage:
// Traversal Routes
GET /types/ # Get the payload types
GET /types/ # List the payloads for a type
GET /types// # Get a specfic payload by ID or name// Explicit Routes
GET /list/ # List the payloads for a type
GET /info// # Get the info for a specific payload by ID or name
GET /get// # Get a specific payload by ID or name
GET /dump/ # Prints details for all the payloads of a type