From 8b99577c66a91c70bce1b22486dd4e90934dbdc8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 30 Oct 2020 09:09:16 -0700 Subject: [PATCH] New namespace for packers --- BurnOutSharp/FileType/Executable.cs | 1 + BurnOutSharp/{ProtectionType => PackerType}/Armadillo.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/EXEStealth.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/NSIS.cs | 4 ++-- BurnOutSharp/{ProtectionType => PackerType}/PECompact.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/Petite.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/UPX.cs | 2 +- BurnOutSharp/{ProtectionType => PackerType}/dotFuscator.cs | 2 +- 8 files changed, 9 insertions(+), 8 deletions(-) rename BurnOutSharp/{ProtectionType => PackerType}/Armadillo.cs (94%) rename BurnOutSharp/{ProtectionType => PackerType}/EXEStealth.cs (95%) rename BurnOutSharp/{ProtectionType => PackerType}/NSIS.cs (97%) rename BurnOutSharp/{ProtectionType => PackerType}/PECompact.cs (91%) rename BurnOutSharp/{ProtectionType => PackerType}/Petite.cs (85%) rename BurnOutSharp/{ProtectionType => PackerType}/UPX.cs (95%) rename BurnOutSharp/{ProtectionType => PackerType}/dotFuscator.cs (93%) diff --git a/BurnOutSharp/FileType/Executable.cs b/BurnOutSharp/FileType/Executable.cs index d61510ab..fd85692b 100644 --- a/BurnOutSharp/FileType/Executable.cs +++ b/BurnOutSharp/FileType/Executable.cs @@ -1,6 +1,7 @@ using System.Collections.Generic; using System.IO; using System.Text; +using BurnOutSharp.PackerType; using BurnOutSharp.ProtectionType; namespace BurnOutSharp.FileType diff --git a/BurnOutSharp/ProtectionType/Armadillo.cs b/BurnOutSharp/PackerType/Armadillo.cs similarity index 94% rename from BurnOutSharp/ProtectionType/Armadillo.cs rename to BurnOutSharp/PackerType/Armadillo.cs index b11d2ad4..d3ffe032 100644 --- a/BurnOutSharp/ProtectionType/Armadillo.cs +++ b/BurnOutSharp/PackerType/Armadillo.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class Armadillo { diff --git a/BurnOutSharp/ProtectionType/EXEStealth.cs b/BurnOutSharp/PackerType/EXEStealth.cs similarity index 95% rename from BurnOutSharp/ProtectionType/EXEStealth.cs rename to BurnOutSharp/PackerType/EXEStealth.cs index 67c858ac..a3460963 100644 --- a/BurnOutSharp/ProtectionType/EXEStealth.cs +++ b/BurnOutSharp/PackerType/EXEStealth.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class EXEStealth { diff --git a/BurnOutSharp/ProtectionType/NSIS.cs b/BurnOutSharp/PackerType/NSIS.cs similarity index 97% rename from BurnOutSharp/ProtectionType/NSIS.cs rename to BurnOutSharp/PackerType/NSIS.cs index 674dd535..6c3cbe92 100644 --- a/BurnOutSharp/ProtectionType/NSIS.cs +++ b/BurnOutSharp/PackerType/NSIS.cs @@ -1,8 +1,8 @@ -using System.Text; using System; using System.Linq; +using System.Text; -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class NSIS { diff --git a/BurnOutSharp/ProtectionType/PECompact.cs b/BurnOutSharp/PackerType/PECompact.cs similarity index 91% rename from BurnOutSharp/ProtectionType/PECompact.cs rename to BurnOutSharp/PackerType/PECompact.cs index 3b7d538d..16a12edc 100644 --- a/BurnOutSharp/ProtectionType/PECompact.cs +++ b/BurnOutSharp/PackerType/PECompact.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class PECompact { diff --git a/BurnOutSharp/ProtectionType/Petite.cs b/BurnOutSharp/PackerType/Petite.cs similarity index 85% rename from BurnOutSharp/ProtectionType/Petite.cs rename to BurnOutSharp/PackerType/Petite.cs index 08f1df4e..c063d673 100644 --- a/BurnOutSharp/ProtectionType/Petite.cs +++ b/BurnOutSharp/PackerType/Petite.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class Petite { diff --git a/BurnOutSharp/ProtectionType/UPX.cs b/BurnOutSharp/PackerType/UPX.cs similarity index 95% rename from BurnOutSharp/ProtectionType/UPX.cs rename to BurnOutSharp/PackerType/UPX.cs index 4830012d..defe5c84 100644 --- a/BurnOutSharp/ProtectionType/UPX.cs +++ b/BurnOutSharp/PackerType/UPX.cs @@ -1,6 +1,6 @@ using System.Text; -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class UPX { diff --git a/BurnOutSharp/ProtectionType/dotFuscator.cs b/BurnOutSharp/PackerType/dotFuscator.cs similarity index 93% rename from BurnOutSharp/ProtectionType/dotFuscator.cs rename to BurnOutSharp/PackerType/dotFuscator.cs index 6a3e8790..d28820e9 100644 --- a/BurnOutSharp/ProtectionType/dotFuscator.cs +++ b/BurnOutSharp/PackerType/dotFuscator.cs @@ -1,4 +1,4 @@ -namespace BurnOutSharp.ProtectionType +namespace BurnOutSharp.PackerType { public class dotFuscator {