This version of ChromeDriver only supports Chrome version 83
[+] The cookies seems valid !
Traceback (most recent call last):
File "/root/GHunt/check_and_gen.py", line 196, in
@kukurikapu0102 You probably have a separate installation of chromedriver installed. Type which chromedriver into terminal and see what your computer is using. If it tells you that it's in /home/$username/bin then you either put it there historically or you have homebrew installed or something else. If it's in /usr/bin or /usr/local/bin it's probably from apt so just do a sudo apt update && sudo apt upgrade and see if it works. If it's from snap, update it with snap. Else, just rename the binary from chromedriver to something else.
@mxrch you should probably just have your script download the chromedriver into docker/the cloned repo and use it regardless of whether it is installed or not. It's a pretty tiny file, after all, and people who have another chromedriver somewhere in their PATH will be sort of screwed because the detection mechanism doesn't look to see if the chromedriver version matches with the currently installed primary version of Chrome.
Will try bro, Thanks alot!
Sure thing!
Nice