From 8804ba2c980c552dafbf2ddc1ae7b89dccf6f3c7 Mon Sep 17 00:00:00 2001 From: ShadowByte <155693555+ShadowByte1@users.noreply.github.com> Date: Tue, 20 Aug 2024 09:42:00 +1000 Subject: [PATCH] Update README.md --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index af1d090..d0a2c5b 100644 --- a/README.md +++ b/README.md @@ -23,3 +23,25 @@ Result: The tool will read each dork from the file and perform a Google search, Output: 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". + +# 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.