-
-
Save eur0pa/3da504614a625b2ff197fc9d34370e0b to your computer and use it in GitHub Desktop.
generate wordlists utilizing the wayback machine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"net/url" | |
"os" | |
"strings" | |
) | |
func main() { | |
// usage: printf "example.com" | waybackurls | waywords | |
words := make(map[string]struct{}) | |
w := bufio.NewScanner(os.Stdin) | |
for w.Scan() { | |
u, err := url.Parse(w.Text()) | |
if err != nil { | |
continue | |
} | |
for _, t := range strings.Split(u.Path, "/") { | |
if t == "" { | |
continue | |
} | |
words[t] = struct{}{} | |
} | |
} | |
for word, _ := range words { | |
fmt.Println(word) | |
} | |
} |
waybackurls example.com | cut -d/ -f4- | sort -u
🐸
Relying on external tools, Ed? Why don't you install Xorg as well!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
vim 'http://web.archive.org/cdx/search/cdx?collapse=urlkey&url=*.hacker.one' +'%s/.\+)\/\([^ &?]*\).\+/\1/' +'%s/\//\r/' +'sort u'