0.0.2 • Published 5 years ago
pentesterland-writeups-cli v0.0.2
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