Downloads:
14,198
Downloads of v 3.10.0:
671
Last Update:
04 Nov 2024
Package Maintainer(s):
Software Author(s):
- horsicq
Tags:
die detect packer filetype- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Detect It Easy
- 1
- 2
- 3
3.10.0 | Updated: 04 Nov 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
14,198
Downloads of v 3.10.0:
671
Maintainer(s):
Software Author(s):
- horsicq
Detect It Easy 3.10.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by horsicq. The inclusion of horsicq trademark(s), if any, upon this webpage is solely to identify horsicq goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Detect It Easy, run the following command from the command line or from PowerShell:
To upgrade Detect It Easy, run the following command from the command line or from PowerShell:
To uninstall Detect It Easy, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download die --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade die -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade die -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install die
win_chocolatey:
name: die
version: '3.10.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'die' do
action :install
source 'INTERNAL REPO URL'
version '3.10.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller die
{
Name = "die"
Version = "3.10.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'die':
ensure => '3.10.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 04 Nov 2024.
DIE is a cross-platform application, apart from Windows version there are also
available versions for Linux and Mac OS.
Many programs of the kind (PEID, PE tools) allow to use third-party signatures.
Unfortunately, those signatures scan only bytes by the pre-set mask, and it is
not possible to specify additional parameters. As the result, false triggering
often occur. More complicated algorithms are usually strictly set in the program
itself. Hence, to add a new complex detect one needs to recompile the entire
project. No one, except the authors themselves, can change the algorithm of
a detect. As time passes, such programs lose relevance without the constant support.
Detect It Easy has totally open architecture of signatures. You can easily
add your own algorithms of detects or modify those that already exist. This
is achieved by using scripts. The script language is very similar to JavaScript
and any person, who understands the basics of programming, will understand easily
how it works. Possibly, someone may decide the scripts are working very slow.
Indeed, scripts run slower than compiled code, but, thanks to the good optimization
of Script Engine, this doesn't cause any special inconvenience. The possibilities
of open architecture compensate these limitations.
DIE exists in three versions. Basic version (DIE), Lite version (DIEL) and
console version (DIEC). All the three use the same signatures, which are located
in the folder db. If you open this folder, nested sub-folders will be found
(Binary, PE and others). The names of sub-folders correspond to the types of files.
First, DIE determines the type of file, and then sequentially loads all the signatures,
which lie in the corresponding folder. Currently the program defines the following types:
MSDOS executable files MS-DOS
PE executable files Windows
ELF executable files Linux
MACH executable files Mac OS
Text files
Binary all other files
From: https://raw.githubusercontent.com/horsicq/Detect-It-Easy/master/LICENSE
LICENSE
MIT License
Copyright (c) 2012-2019 hors<[email protected]>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Download:
x32: https://github.com/horsicq/DIE-engine/releases/download/3.10/die_win32_portable_3.10_x86.zip
x64: https://github.com/horsicq/DIE-engine/releases/download/3.10/die_win64_portable_3.10_x64.zip
2. You can use one of the following methods to obtain the SHA256 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum type: sha256
checksum32: DBD639A9BEBCEAF84E63C47BDB4A64E3FBB7677EC834321FE9B8574FE7781B10
checksum64: 6E84AC8D3ABDFBA60078A36FA7F6B492B20C2AF2C502E0A4579F41367AC37C80
File 'LICENSE.txt' is obtained from:
https://raw.githubusercontent.com/horsicq/Detect-It-Easy/master/LICENSE
# Remove start menu shortcuts
$programs = [environment]::GetFolderPath([environment+specialfolder]::Programs)
$shortcutFilePath = Join-Path $programs 'Detect It Easy.lnk'
If ( Test-Path "$shortcutFilePath" ) { Remove-Item "$shortcutFilePath" }
md5: 52C4F0C4581FC158CDA3AA05565B5CC4 | sha1: 8BDFCD0676522E47636073F0D1325B696BD9FA47 | sha256: DBD639A9BEBCEAF84E63C47BDB4A64E3FBB7677EC834321FE9B8574FE7781B10 | sha512: 26ACB93F7CE4633004AB0B3F052AE84B6A483F95F8D7ECAA25C67560785AEFD59EB3FF7607E58D094FD6F3AE86DC7BD2F1385310CE1F68CD264E5EE172C4D936
md5: A4F15588E330C5D1BBE137DE3A5F1C34 | sha1: D08D678FEDCA9F642F95D3BAFACEFE13B6AEF2A1 | sha256: 6E84AC8D3ABDFBA60078A36FA7F6B492B20C2AF2C502E0A4579F41367AC37C80 | sha512: FD1EE623697C1C3A9BF424CBC2107A00C9C578666BED1F0C2B5BC18D7F6C780A1226686CC84BB487FC5969BB368BDE9D195E19127679B202406AD26615716C30
Log in or click on link to see number of positives.
- libcrypto-1_1-x64.dll (b1f985116f7c) - ## / 74
- libssl-1_1-x64.dll (36ac1d72044c) - ## / 75
- libcrypto-1_1.dll (2685f4c9bfc8) - ## / 74
- libssl-1_1.dll (5f13872a0a94) - ## / 72
- die.3.10.0.nupkg (1a0271ac5e14) - ## / 66
- die_win32_portable_3.10_x86.zip (dbd639a9bebc) - ## / 65
- die_win64_portable_3.10_x64.zip (6e84ac8d3abd) - ## / 67
- die.exe (580569917362) - ## / 72
- diec.exe (b2b289bce773) - ## / 72
- diel.exe (949e55a5a5e6) - ## / 71
- die.exe (e52d00d28962) - ## / 71
- diec.exe (1f1e84aafc3c) - ## / 71
- diel.exe (2a1955180c96) - ## / 71
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Detect It Easy 3.10.0 | 671 | Monday, November 4, 2024 | Approved | |
Detect It Easy 3.09 | 3165 | Monday, January 1, 2024 | Approved | |
Detect It Easy 3.07 | 2709 | Wednesday, January 4, 2023 | Approved | |
Detect It Easy 3.06 | 968 | Thursday, August 25, 2022 | Approved | |
Detect It Easy 3.05 | 444 | Friday, June 17, 2022 | Approved | |
Detect It Easy 3.04.0.20220430 | 361 | Saturday, April 30, 2022 | Approved | |
Detect It Easy 3.04 | 619 | Friday, February 18, 2022 | Approved | |
Detect It Easy 3.03.0.20220430 | 90 | Saturday, April 30, 2022 | Approved | |
Detect It Easy 3.03 | 529 | Sunday, November 14, 2021 | Approved | |
Detect It Easy 3.02 | 634 | Saturday, June 5, 2021 | Approved | |
Detect It Easy 3.01 | 498 | Wednesday, January 13, 2021 | Approved | |
Detect It Easy 2.05 | 1576 | Monday, October 7, 2019 | Approved | |
Detect It Easy 2.03 | 734 | Saturday, May 11, 2019 | Approved | |
Detect It Easy 2.02 | 317 | Wednesday, May 1, 2019 | Approved | |
Detect It Easy 1.01 | 832 | Wednesday, June 1, 2016 | Approved |
© 2012-2018 NTInfo
This package has no dependencies.
Ground Rules:
- This discussion is only about Detect It Easy and the Detect It Easy package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Detect It Easy, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.