I just made a small and simple windows form. I uploaded the .exe to mediafire so anyone could download it, but when someone(or even myself) tries to download it: windows defender instantly deletes it, because it thinks it is a virus. Is this a problem with the code or does it has to do with something else?
Can't download my own executeable c#
290 Views Asked by Aiko At
1
There are 1 best solutions below
Related Questions in C#
- How to call a C language function from x86 assembly code?
- What does: "char *argv[]" mean?
- User input sanitization program, which takes a specific amount of arguments and passes the execution to a bash script
- How to crop a BMP image in half using C
- How can I get the difference in minutes between two dates and hours?
- Why will this code compile although it defines two variables with the same name?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Why can't I use the file pointer after the first read attempt fails?
- #include Header files in C with definition too
- OpenCV2 on CLion
- What is causing the store latency in this program?
- How to refer to the filepath of test data in test sourcecode?
- 9 Digit Addresses in Hexadecimal System in MacOS
- My server TCP doesn't receive messages from the client in C
- Printing the characters obtained from the array s using printf?
Related Questions in VIRUS
- phyton virus when exporting exe with pyinstaller
- Received Script that is a possible virus. What does it do?
- Why is my yarn install results in error to attach to certain github repository?
- Autoupdater is falsely detected as virus
- i am getting error "file contains error" in code.(only in this file) what to do
- Found strange 3111658688.php on website, What is This?
- APK detected as virus by google drive and email
- Clamav receives modified file for scanning from C-ICAP proxy
- Pyinstaller says I made a virus
- Home insider installation not requested - Windows 11
- I get a virus alert when I convert my .py file into an .exe file. How do I fix it?
- *win32ctypes.pywin32.pywintypes.error when using pyinstaller in VS Code - Possible Virus/Trojan?
- why have double extention after being caught in ransomware
- Need Guidance With Virus Removal (Website)
- Hidden directory .quarantine appearing in WordPress root directory upon install
Related Questions in MEDIAFIRE
- How to upload multiple Files in c# using MediaFireApi
- Is MediaFire API app bound to the user who created it?
- Download a folder from mediafire python
- Upload file to mediafire without api python script
- Media Fire Redirect link from href isn't working error code 500
- Can't download my own executeable c#
- Render JSON response using Django's render()
- Get File Name of mediafire link android
- Is it safe enough to send SSH keys via a file sharing service?
- Mediafire developer doesn't show me Create new app
- Can I upload complete folders to MediaFire with PHP?
- How would i create a promise function in this situation with javascript
- Trouble with direct download links from Mediafire
- Renewing a Session Token in Mediafire API Calls Using Java
- how can i get quickkey after upload file into mediafire?
Related Questions in WINDOWS-DEFENDER
- Windows 2019 Registry Values Keep Reverting (Windows Defender)
- How to prevent "Microsoft defender SmartScreen prevented an unrecognised app" warning for my own python based app
- Windows defender flags my `Golang Tray Application` as virus program
- Does defender link in to client-server connections?
- How to deal with Windows Defender false positives?
- How do I enable the high level "public" and "private" network access settings in Windows Defender via Powershell?
- Use Windows Defender API to scan data without writing it to disk?
- How to disable antivirus software (Windows Defender?) on GitLab's Windows runner?
- Cannot overwrite an excel XLSM file with a lot of VBA because of Windows real-time protection
- Electron-based app flagged as Potentially Unwanted Software by Windows Defender
- Online API for querying Microsoft Defender's latest antivirus pattern version?
- Copy to clipboard slow in VS 2022 with Windows Defender
- Run powershell script or whitelist installation directory before installing in inno setup
- Deactivate Windows Defender programmaticaly
- Powershell script Set-MpPreference not working correctly
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Hash it to check it was not modified
Check with some digest algorithm like SHA-2 that the file you download from the site is actually the exact same that you uploaded.
If it is not the same, something fishy has happened to your file when on a trip to the internet. I wouldn't try to open it, and try to find another service to host your file.
Sign your executable with a certificate
Invest in some code signing certificate.
Some are free, and for beginning and test pourposes you can create it yourself and self-sign it, but it will still be frowned upon by anti-malwares and your system.
Other comments
Also, some code operations are considered "dangerous" by some antivirus, because theese operations are much more oftne found in exploits attempts than in real commercial code. I remember, when I was playing with simple console C++ code while learning, I did some unsafe operation with a simple string
char[]. On my school computer, the result executable was automatically deleted with the McAfee guard within seconds of compilation...