We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fc31ac commit 31cc769Copy full SHA for 31cc769
README.md
@@ -1,2 +1,21 @@
1
-# golang-google-scraper
2
-Google Custom Search scraper in Go
+# Google Custom Search Scraper
+
3
+Simple scraper used to search google for terms and output the URLs. Useful for SQLI searching and CVE dorks.
4
5
+## Prerequisites
6
7
+- Go 1.16 or later
8
+- Google Custom Search API Key
9
+- Google Custom Search Engine ID (cx)
10
11
+### Options
12
13
+- `-q`: A single search query without the use of a file.
14
+- `-o`: Output file where results will be saved.
15
+- `-w`: Wordlist file containing multiple search queries. One query per line such as "inurl: hello"
16
17
+### How to use
18
19
+go run search.go -q "search-term" -o output.txt
20
21
+go run search.go -w file.txt -o output.txt
0 commit comments