mxrch / GHunt

🕵️‍♂️ Offensive Google framework.
Other
15.65k stars 1.3k forks source link

check_and_gen.py error on run #327

Closed jevarlet closed 2 years ago

jevarlet commented 2 years ago

The following error occurs when running check_and_gen.py (on process start, before any cookie input)

.../ghunt/lib/utils.py", line 214, in get_driverpath driverpath = chromedrivermanager_silent.driver_cache.find_driver(driver) TypeError: find_driver() missing 3 required positional arguments: 'driver_name', 'os_type', and 'driver_version'

HenkPoley commented 2 years ago

Get the latest git code.

Update the pip requirements.

git pull
pip install -U -r requirements.txt
mxrch commented 2 years ago

Don't forget the --upgrade when installing dependancies with pip, otherwise it won't update, just installing new packages. :)

jevarlet commented 2 years ago

Thank you both. This fixed the issue.

pip install --upgrade -r requirements.txt