Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.5.3 not going undetected on Chrome 117 #1589

Open
juanalvarezg opened this issue Sep 28, 2023 · 11 comments
Open

3.5.3 not going undetected on Chrome 117 #1589

juanalvarezg opened this issue Sep 28, 2023 · 11 comments

Comments

@juanalvarezg
Copy link

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

@Wahomethegeek
Copy link

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

@thedevale
Copy link

Same issue here, python3.7

@syedshahbazali-daata
Copy link

same issue here as well

@SmokeShad0w
Copy link

same here

@ctlsEx
Copy link

ctlsEx commented Sep 30, 2023

same :S

@robizen
Copy link

robizen commented Oct 8, 2023

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

@estromenko
Copy link

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

@ultrafunkamsterdam
Copy link
Owner

That is correct. Full rewrite is on the way.

@2-X
Copy link

2-X commented Oct 10, 2023

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)

@dexedrine-01
Copy link

That is correct. Full rewrite is on the way.

Hi. Is there an approximate timeline?

@linhng98
Copy link

linhng98 commented Jan 1, 2024

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests