How to Export Search Results
Censys makes it easy to query the entire Internet for very specific data. While there is no way to export the results of a query directly from the Search web UI, we have a CLI Tool that makes exporting results just as easy as querying for them.
For example, after you've installed the CLI Tool, run a command like this print the first 50 hosts matching your query to the screen:
query = h.search("service.service_name: HTTP", per_page=50, pages=1)
print(query.view_all())
Full documentation for the CLI module is located here, or you can read this short introduction.
Diàtaxis: how-to
Comments
0 comments
Article is closed for comments.