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
30
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-cli
Usage
pentesterland list --year 2020 --fields url published_at
For 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 (returnsobject
instead ofarray
)--fields
-f
- list of fields to return. See the schema for more details--order
-o
- sort writeups bypublished_at
date inasc
ordesc
order--pretty
-p
- Prettify JSON results