This tool allows users to search through bug bounty writeups listed on PentesterLand by filtering based on the title of the writeup, the associated program, or the types of bugs reported. This utility is useful for security researchers and bug bounty hunters looking to find specific writeups related to their areas of interest. Installation
Go 1.22
Internet connection for fetching data
Clone the repository and build the executable:
go install github.com/zomasec/penland@latest
OR
git clone https://github.com/zomasec/penland
cd penland
go build -o penland
Command Line Arguments
-title: Filter writeups by title.
-program: Filter writeups by program name.
-bug: Filter writeups by bug type.
-o: Specify the output file name for saving results in JSON format. If not provided, results are printed to the console.
penland -title XSS in search bar -program lazada
penland -program Google
penland -bug="ATO" -output="results.json"
The results can be printed directly to the console or saved to a JSON file. Each entry includes the URL of the writeup, the targeted programs, and the types of bugs discussed.
This project is freely distributable under the MIT License.