pentesterland-writeups-cli
v0.0.2
Published
> Query Pentester Land's [writeups list](https://pentester.land/list-of-bug-bounty-writeups.html) from command line
Downloads
24
Maintainers
Readme
Query Pentester Land's writeups list from command line
See pentesterland-writeups-scraper for the programmatic API.
Installation
npm install --global pentesterland-writeups-cliUsage
pentesterland list --year 2020 --fields url published_atFor better flexibility you should pipe it to jq and do all the filtering using jq syntax.
pentesterland list | jq 'map(select(.published.year == "2020") | { url, published_at })'Options
--limit-l- limit number of writeups returned--title-t- search through writeups titles--year-y- year of publishing--month-m- month of publishing--group-g- group results by year (returnsobjectinstead ofarray)--fields-f- list of fields to return. See the schema for more details--order-o- sort writeups bypublished_atdate inascordescorder--pretty-p- Prettify JSON results
