GithubHelp home page GithubHelp logo

Add File Hashes about whynotwin11 HOT 9 CLOSED

AnphirAddoN avatar AnphirAddoN commented on August 18, 2024
Add File Hashes

from whynotwin11.

Comments (9)

rcmaehl avatar rcmaehl commented on August 18, 2024

It shouldn't per its VirusTotal results it's not detected as a False Positive by Microsoft
image

The full results are here:
https://www.virustotal.com/gui/file/03ad9794200346d393ff1e14ece895ac8184a1fa179cc13561b3fdfe7a2df6d1/detection

I don't know the exact translation but I know that Chrome blocks uncommon downloads, this may be a similar feature.

from whynotwin11.

Sarpar12 avatar Sarpar12 commented on August 18, 2024

This is due to Microsoft Smartscreen. Not sure how you can bypass that other than disabling smartscreen.

from whynotwin11.

sanny-io avatar sanny-io commented on August 18, 2024

Consider printing the artifact's hash as part of the workflow @rcmaehl. While this won't help with Edge's warning, it will allow users to know that the binary they are downloading is built from this repo.

from whynotwin11.

micwoj92 avatar micwoj92 commented on August 18, 2024

I am pretty sure that @rcmaehl builds release builds locally. And to my knowledge autoit doesnt produce reproducible binaries (but I didn't read much into it, so maybe it is possible)

from whynotwin11.

sanny-io avatar sanny-io commented on August 18, 2024

Releases should have binaries from the CI. Safety is a concern with projects like this. As long as the build comes from the CI, there is no need for reproducible binaries. The process would go like this.

  1. CI compiles binary.
  2. CI prints hash of the binary.
  3. New release is published with the CI's binary, either automatically or manually.
  4. The integrity of the release's binary is verified by comparing its hash to the hash from the CI.

from whynotwin11.

hez2010 avatar hez2010 commented on August 18, 2024

Microsoft SmartScreen has block first-seen feature, which blocks executables are first seen on the Internet. Ignoring the prompt is okay for this project.
As for developer, a workaround is to zip the release executable file.

from whynotwin11.

Masamune3210 avatar Masamune3210 commented on August 18, 2024

zipping the file doesnt help much, this stuff happens literally all the time over in emulation projects where the builds can come out really fast, which doesn't give the heuristic network enough time and training to realize that they arent malicious

from whynotwin11.

v-kajaye avatar v-kajaye commented on August 18, 2024

Google chrome and Edge uses Chromium code base. File types that are mostly blocked are listed here https://source.chromium.org/chromium/chromium/src/+/main:components/safe_browsing/core/resources/download_file_types.asciipb

defender smart screen blocks them based on Authenticode certificates and file hash allowed. You can create the below registry key to allow the file type downloadable without warning

**Execute the below code in PS ISE ****

$regpath="HKLM:\Software\Policies\Microsoft\Edge\ExemptDomainFileTypePairsFromFileTypeDownloadWarnings"

if (!(Test-Path $regpath)) {
New-Item -Path $regpath -Force
}

New-ItemProperty -Path $regpath -Name "1" -Value '{"domains": ["*"], "file_extension": "exe"}' -PropertyType String -Force

from whynotwin11.

micwoj92 avatar micwoj92 commented on August 18, 2024

Can be closed now.

from whynotwin11.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.