mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-04 05:35:49 +00:00
Add GP-Install detection (fixes #99)
This commit is contained in:
22
BinaryObjectScanner/Packer/GPInstall.cs
Normal file
22
BinaryObjectScanner/Packer/GPInstall.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using BinaryObjectScanner.Interfaces;
|
||||
using SabreTools.Serialization.Wrappers;
|
||||
|
||||
namespace BinaryObjectScanner.Packer
|
||||
{
|
||||
/// <summary>
|
||||
/// GP-Install
|
||||
/// </summary>
|
||||
public class GPInstall : IExecutableCheck<PortableExecutable>
|
||||
{
|
||||
/// <inheritdoc/>
|
||||
public string? CheckExecutable(string file, PortableExecutable pex, bool includeDebug)
|
||||
{
|
||||
// <see href="https://www.virustotal.com/gui/file/0e0a93cba8163cef9c979cbb49a6f15604956b9441aba6fb9e9f0c6897cc73ed/details"/>
|
||||
var name = pex.FileDescription;
|
||||
if (name.OptionalContains("GP-Install"))
|
||||
return "GP-Install";
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -154,6 +154,7 @@ Below is a list of executable packers detected by BinaryObjectScanner. The three
|
||||
| EXE Stealth | Yes | No | No | |
|
||||
| Gentee Installer | Yes | No | No | |
|
||||
| GkWare SFX | Yes | No | No | |
|
||||
| GP-Install | Yes | No | No | |
|
||||
| HyperTech CrackProof | Yes | No | No | |
|
||||
| Inno Setup | Yes | No | No | |
|
||||
| InstallAnywhere | Yes | No | No | |
|
||||
|
||||
Reference in New Issue
Block a user