Python command line application to search queries and dorks on bing.com and return urls in the search results
Requires Python3+
and pip
$ git clone https://github.com/dheeraj-rn/bing-search.git
$ cd bing-search
$ sudo python3 setup.py install
$ bing --help
usage: bing [-h] [-w OUTFILE] [-l LIMIT] query
Bing Search
positional arguments:
query Your search query.
optional arguments:
-h, --help show this help message and exit
-w OUTFILE, --outfile OUTFILE
Write to the specified output file instead of standard
output.
-l LIMIT, --limit LIMIT
Limit the Number of pages to check.
-x PROXY, --proxy PROXY
Proxy to be used. Format:
[PROTOCOL://][USER:PASSWORD@]HOST[:PORT]
$ bing "linux" #outputs search results to terminal screen
$ bing "index.php?id=" #outputs search results to terminal screen
$ bing "linux" -w output.txt #Writes search results to output.txt
$ bing "linux" --outfile output.txt
$ bing "linux" -l 2 #outputs search results in first 2 pages in bing search
$ bing "linux" --limit 2
Found an issue? Post it in the issue tracker.
Want to add another awesome feature? Fork this repository and add your feature, then send a pull request.
The MIT License (MIT)