tomnomnom/waybackurls

It is not working at all

Opened this issue · 1 comments

It is not working at all

This is a problem i am facing too.

http://web.archive.org/cdx/search/cdx?url=www.nrk.no/*&output=json

You can just use bash and curl it?

wb () 
{ 
    if [[ -z $1 ]]; then
        echo "Usage: $0 URL";
    else
        curl "http://web.archive.org/cdx/search/cdx?url=$1/*&output=json&fl=original,timestamp" 2> /dev/null | jq '.[1:][] |"https://web.archive.org/web/" +.[1] + "/" + .[0]' 2> /dev/null;
    fi
}`

## See also
[Fetch known URLs from AlienVault's Open Threat Exchange, the Wayback Machine, and Common Crawl.](https://github.com/lc/gau)