undetected-chromedriver icon indicating copy to clipboard operation
undetected-chromedriver copied to clipboard

3.5.3 not going undetected on Chrome 117

Open juanalvarezg opened this issue 1 year ago • 11 comments

both headless and windowed, Im not able to pass https://nowsecure.nl check

juanalvarezg avatar Sep 28 '23 18:09 juanalvarezg

I had the similar issue in python3.11.2 but working in python3.10

Wahomethegeek avatar Sep 28 '23 19:09 Wahomethegeek

Same issue here, python3.7

thedevale avatar Sep 30 '23 10:09 thedevale

same issue here as well

syedshahbazali-daata avatar Sep 30 '23 18:09 syedshahbazali-daata

same here

SmokeShad0w avatar Sep 30 '23 21:09 SmokeShad0w

same :S

ctlsEx avatar Sep 30 '23 22:09 ctlsEx

Hi same here, i tried with python 3.10.4 too and it does not work

robizen avatar Oct 08 '23 18:10 robizen

Seems like this package doesn't work anymore at all. Downgrading chrome (chromium in my case, but I don't think it's important), UC or python version didn't help. Simple example from README.md doesn't work too

estromenko avatar Oct 09 '23 10:10 estromenko

That is correct. Full rewrite is on the way.

ultrafunkamsterdam avatar Oct 09 '23 15:10 ultrafunkamsterdam

i'm also getting the issue of it not going undetected in python 3.10.12 with chormium >=117

@estromenko my current workaround has been using chromium-browser version 116. it seems to still work fine for <=116

I found them in the chromium-browser-snapshots. the executable is ./Chromium.app/Contents/MacOS/Chromium on mac, or ./chrome directory for linux. i did not test windows

i needed to install these dependencies to get versions ~84 through 116 working on my machine

sudo apt install ca-certificates fonts-liberation libappindicator3-1 libasound2 libatk-bridge2.0-0 libatk1.0-0 libc6 libcairo2 libcups2 libdbus-1-3 libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 lsb-release wget xdg-utils

lastly, if you're trying to unzip programmatically, you have to be really specific about retaining the file attributes when unzipping. here is some python code to show the right way to unzip

with zipfile.ZipFile(zip_file, 'r') as zip_ref:
    for info in zip_ref.infolist():
        zip_ref.extract(info, temp_dir)
        out_path = os.path.join(temp_dir, info.filename)
        perm = info.external_attr >> 16
        os.chmod(out_path, perm)

2-X avatar Oct 10 '23 17:10 2-X

That is correct. Full rewrite is on the way.

Hi. Is there an approximate timeline?

dexedrine-01 avatar Oct 13 '23 21:10 dexedrine-01

same problem here, i can't pass https://nowsecure.nl/

linhng98 avatar Jan 01 '24 23:01 linhng98