Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,15 @@ pqcscan tls-scan -t pq.cloudflareresearch.com:443 -o cloudflare.json
pqcscan create-report -i gmail.json cloudflare.json -o report.html
```

To generate CSV, JSON or XML output for spreadsheet import, asset inventory or
automation workflows, set the report format explicitly:

```
pqcscan create-report -i gmail.json cloudflare.json --format csv -o report.csv
pqcscan create-report -i gmail.json cloudflare.json --format json -o report.json
pqcscan create-report -i gmail.json cloudflare.json --format xml -o report.xml
```

You can also create a target list in a file and supply it via `-T`. This works for both `tls-scan` and `ssh-scan`.

```
Expand Down
4 changes: 3 additions & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,6 @@
and rewrite the templates that all the elements are built up via pure JS
instead of generated HTML

- [ ] add some combined JSON/CSV/XML export output on top of the HTML format
- [x] add some combined JSON/CSV/XML export output on top of the HTML format
- [x] CSV report export
- [x] JSON/XML report export
Loading