My project was detected as a virus #176537
-
Select Topic AreaQuestion BodyHello first i was working on a project that see if your password is strong or no and try to guess it i made it with Gemini that was my second project when learning python |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 8 replies
-
|
when using PyInstaller, Windows often flags custom Python executables as false positives. Make sure your script doesn’t include suspicious names like “crack” or “password”. |
Beta Was this translation helpful? Give feedback.

When I said “sign your executables with a key,” I meant digitally signing your .exe file so windows and antivirus software know it’s from a verified source. It’s mostly used for public releases. You get a code signing certificate (for example, from Digicert, Sectigo, or Microsofts developer program) and use tools like signtool.exe (which you already have on your pc built into the Windows SDK) or (osslsigncode) to attach your signature.
Unsigned executables are more likely to be flagged by Windows SmartScreen or antivirus. Since you’re already keeping PyInstaller up to date, that’s great just keep building from a clean environment, and you’ll be fine unless you plan to distribute your app …