├── LICENSE ├── README.md ├── pics └── pic.png └── source ├── FodyWeavers.xml ├── FodyWeavers.xsd ├── PE-LiteScan.csproj ├── PE-LiteScan.sln ├── Properties └── PublishProfiles │ └── FolderProfile.pubxml ├── build_all.cmd ├── build_linux.cmd ├── build_win.cmd ├── cleanup.cmd └── source ├── ColoredConsole.cs ├── EntropyCalculator.cs ├── PEAnalyzer.cs ├── Program.cs └── SignatureScanner.cs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/README.md -------------------------------------------------------------------------------- /pics/pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/pics/pic.png -------------------------------------------------------------------------------- /source/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/FodyWeavers.xml -------------------------------------------------------------------------------- /source/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/FodyWeavers.xsd -------------------------------------------------------------------------------- /source/PE-LiteScan.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/PE-LiteScan.csproj -------------------------------------------------------------------------------- /source/PE-LiteScan.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/PE-LiteScan.sln -------------------------------------------------------------------------------- /source/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /source/build_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/build_all.cmd -------------------------------------------------------------------------------- /source/build_linux.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/build_linux.cmd -------------------------------------------------------------------------------- /source/build_win.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/build_win.cmd -------------------------------------------------------------------------------- /source/cleanup.cmd: -------------------------------------------------------------------------------- 1 | rd "bin" "obj" /q /s -------------------------------------------------------------------------------- /source/source/ColoredConsole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/source/ColoredConsole.cs -------------------------------------------------------------------------------- /source/source/EntropyCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/source/EntropyCalculator.cs -------------------------------------------------------------------------------- /source/source/PEAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/source/PEAnalyzer.cs -------------------------------------------------------------------------------- /source/source/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/source/Program.cs -------------------------------------------------------------------------------- /source/source/SignatureScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DosX-dev/PE-LiteScan/HEAD/source/source/SignatureScanner.cs --------------------------------------------------------------------------------