Replies: 1 comment
-
I didn't receceive any answer from bitdefender but my exe (current and past) are not flagged any more as suspicious by bitdefender as of today. Problem vanished. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I reduced my program to:
import sys
import pdfplumber
if name == 'main':
loaded_modules = [(m, sys.modules[m].version) for m in sys.modules if hasattr(sys.modules[m], 'version')]
loaded_modules.sort()
for ii, (modulen, vers) in enumerate(loaded_modules):
print(f"{ii:04d}\t{modulen}\t{vers}", end='\n')
input("press enter to leave...")
as you can see, I just import pdfplumber...
I produce exe under windows with a mere
pyinstaller --onefile --icon=2.ico main.py
and i use a current version of Python 3.12
I checked the produced file like the user on https://www.virustotal.com/en/ .
and I had the detection of the mini snippet with the current version but it disappears with version 6.1 and below.
And my whole application remains positive even with a pdfplumber version 5.25
I send what I suspect is a false positive to bitdefender and wait...
has anyone encountered something like this or do you also ship some windows app and no issue with bitdefender?
thanks for any comment.
Didou
FYI the snippet produces following result on my PC and only pdfplumber changes version when I install an older version.
0000 _cffi_backend 1.17.1
0001 _csv 1.0
0002 _ctypes 1.1.0
0003 _decimal 1.70
0004 charset_normalizer 3.3.2
0005 charset_normalizer.version 3.3.2
0006 cryptography 43.0.1
0007 cryptography.about 43.0.1
0008 csv 1.0
0009 ctypes 1.1.0
0010 dateutil 2.9.0.post0
0011 dateutil._version 2.9.0.post0
0012 decimal 1.70
0013 ipaddress 1.0
0014 json 2.0.9
0015 logging 0.5.1.2
0016 numpy 2.1.1
0017 numpy._core 2.1.1
0018 numpy._core._multiarray_umath 3.1
0019 numpy.linalg._umath_linalg 0.1.5
0020 numpy.version 2.1.1
0021 pandas 2.2.2
0022 pandas._version_meson 2.2.2
0023 pdfminer 20231228
0024 pdfplumber 0.11.4
0025 pdfplumber._version 0.11.4
0026 platform 1.0.8
0027 pytz 2024.1
0028 re 2.2.1
0029 six 1.16.0
0030 urllib.request 3.12
0031 zlib 1.0
Beta Was this translation helpful? Give feedback.
All reactions