korniko98 / pivot-atlas

http://gopivot.ing
68 stars 14 forks source link

Expand examples on query platforms #12

Open Ralphhorn opened 3 weeks ago

Ralphhorn commented 3 weeks ago

I would love to add some extra example queries for pivoting. For example Censys, fofa, validin, and VirusTotal Intelligence.

korniko98 commented 2 weeks ago

@Ralphhorn that's definitely part of the plan and would be much appreciated - if you'd like to write a few, you can submit a pull request with edits to pages under the artifact directory.

The markdown format looks like this (reference here):

??? example "Try it out"

    === "DNSChecker (URL) - rDNS"
    https://dnschecker.org/reverse-dns.php?query={IP_ADDRESS}
    ```
=== "Driftnet (API) - rDNS"
    ``` console
    $ curl -s -H 'Authorization: Bearer {API_TOKEN}' \
    'https://api.driftnet.io/v1/domain/rdns?ip={IP_ADDRESS}' \
    | jq . \
    | less -S
    ```
Ralphhorn commented 2 weeks ago

Sure takes no effort at all, will have a look at this during the weekend.

Ralphhorn commented 2 weeks ago

initial setup here (https://github.com/korniko98/pivot-atlas/pull/17). Working out some more queries, in a later pull request.