Update README.md

main
ShadowByte 2024-08-20 09:42:00 +10:00 committed by GitHub
parent ec477aac71
commit 8804ba2c98
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 22 additions and 0 deletions

View File

@ -23,3 +23,25 @@ Result: The tool will read each dork from the file and perform a Google search,
Output: Output:
The results of the scraping will be saved in a file named scraped.txt in the same directory as the script. The results of the scraping will be saved in a file named scraped.txt in the same directory as the script.
The output file will contain the URLs that match the dork searches, excluding any URLs containing "google". The output file will contain the URLs that match the dork searches, excluding any URLs containing "google".
# GeckoDriver Install
Download geckodriver:
Visit the geckodriver releases page on GitHub.
https://github.com/mozilla/geckodriver/releases
Download the version suitable for your operating system (Windows, macOS, Linux).
2. Install geckodriver:
Linux/macOS:
Extract the downloaded file:
tar -xvzf geckodriver-v0.32.0-linux64.tar.gz
Move it to a directory in your system's PATH:
sudo mv geckodriver /usr/local/bin/
Windows:
Extract the downloaded .zip file.
Move geckodriver.exe to a directory included in your PATH, or add the directory containing geckodriver.exe to your PATH.
3. Verify Installation:
Open a terminal or command prompt and run:
geckodriver --version
You should see output showing the version of geckodriver installed.