├── .vs └── Obfu_Net │ ├── FileContentIndex │ ├── 8bc4d572-6599-4af8-9a43-35de51b7b999.vsidx │ ├── 90e4b0a2-ebf4-4b5d-aa17-4d7a34d9506b.vsidx │ ├── b04bf37f-8145-4ca5-9700-8bd5007ff10c.vsidx │ ├── d3989a95-f492-4eba-99ed-b6e7f7b8aae2.vsidx │ └── read.lock │ └── v17 │ └── .suo ├── Obfu_Net.sln ├── Obfu_Net ├── App.config ├── MethodNameChange.cs ├── Obfu_Net.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── StringEncrypt.cs ├── VersionInfo1.aps ├── bin │ ├── Debug │ │ ├── Certify.exe │ │ ├── Certify.exe._obf.exe │ │ ├── Obfu_Net.exe │ │ ├── Obfu_Net.exe.config │ │ ├── Obfu_Net.pdb │ │ ├── ProcessHacker.exe │ │ ├── ProcessHacker.exe._obf.exe │ │ ├── Process_Hacker.exe │ │ ├── Process_Hacker.exe._obf.exe │ │ ├── Rubeus.exe │ │ ├── Rubeus.exe._obf.exe │ │ ├── dnlib.dll │ │ ├── dnlib.xml │ │ ├── example.txt │ │ └── xxxx.exe │ └── Release │ │ ├── Certify.exe │ │ ├── Certify.exe._obf.exe │ │ ├── Obfu_Net.exe │ │ ├── Obfu_Net.exe.config │ │ ├── Obfu_Net.pdb │ │ ├── Rubeus.exe │ │ ├── Rubeus.exe._obf.exe │ │ ├── basdsfdsdf.exe │ │ ├── basdsfdsdf.exe._obf.exe │ │ ├── dnlib.dll │ │ └── dnlib.xml ├── obj │ ├── Debug │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Obfu_Net.csproj.AssemblyReference.cache │ │ ├── Obfu_Net.csproj.CopyComplete │ │ ├── Obfu_Net.csproj.CoreCompileInputs.cache │ │ ├── Obfu_Net.csproj.FileListAbsolute.txt │ │ ├── Obfu_Net.csproj.SuggestedBindingRedirects.cache │ │ ├── Obfu_Net.exe │ │ └── Obfu_Net.pdb │ └── Release │ │ ├── .NETFramework,Version=v4.8.AssemblyAttributes.cs │ │ ├── Obfu_Net.csproj.AssemblyReference.cache │ │ ├── Obfu_Net.csproj.CopyComplete │ │ ├── Obfu_Net.csproj.CoreCompileInputs.cache │ │ ├── Obfu_Net.csproj.FileListAbsolute.txt │ │ ├── Obfu_Net.csproj.SuggestedBindingRedirects.cache │ │ ├── Obfu_Net.exe │ │ └── Obfu_Net.pdb └── packages.config ├── README.md └── packages └── dnlib.4.3.0 ├── .signature.p7s ├── LICENSE.txt ├── dnlib.4.3.0.nupkg └── lib ├── net35 ├── dnlib.dll └── dnlib.xml ├── net45 ├── dnlib.dll └── dnlib.xml ├── net6.0 ├── dnlib.dll └── dnlib.xml └── netstandard2.0 ├── dnlib.dll └── dnlib.xml /.vs/Obfu_Net/FileContentIndex/8bc4d572-6599-4af8-9a43-35de51b7b999.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/.vs/Obfu_Net/FileContentIndex/8bc4d572-6599-4af8-9a43-35de51b7b999.vsidx -------------------------------------------------------------------------------- /.vs/Obfu_Net/FileContentIndex/90e4b0a2-ebf4-4b5d-aa17-4d7a34d9506b.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/.vs/Obfu_Net/FileContentIndex/90e4b0a2-ebf4-4b5d-aa17-4d7a34d9506b.vsidx -------------------------------------------------------------------------------- /.vs/Obfu_Net/FileContentIndex/b04bf37f-8145-4ca5-9700-8bd5007ff10c.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/.vs/Obfu_Net/FileContentIndex/b04bf37f-8145-4ca5-9700-8bd5007ff10c.vsidx -------------------------------------------------------------------------------- /.vs/Obfu_Net/FileContentIndex/d3989a95-f492-4eba-99ed-b6e7f7b8aae2.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/.vs/Obfu_Net/FileContentIndex/d3989a95-f492-4eba-99ed-b6e7f7b8aae2.vsidx -------------------------------------------------------------------------------- /.vs/Obfu_Net/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Obfu_Net/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/.vs/Obfu_Net/v17/.suo -------------------------------------------------------------------------------- /Obfu_Net.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net.sln -------------------------------------------------------------------------------- /Obfu_Net/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/App.config -------------------------------------------------------------------------------- /Obfu_Net/MethodNameChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/MethodNameChange.cs -------------------------------------------------------------------------------- /Obfu_Net/Obfu_Net.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/Obfu_Net.csproj -------------------------------------------------------------------------------- /Obfu_Net/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/Program.cs -------------------------------------------------------------------------------- /Obfu_Net/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Obfu_Net/StringEncrypt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/StringEncrypt.cs -------------------------------------------------------------------------------- /Obfu_Net/VersionInfo1.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/VersionInfo1.aps -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Certify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Certify.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Certify.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Certify.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Obfu_Net.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Obfu_Net.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Obfu_Net.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Obfu_Net.exe.config -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Obfu_Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Obfu_Net.pdb -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/ProcessHacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/ProcessHacker.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/ProcessHacker.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/ProcessHacker.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Process_Hacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Process_Hacker.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Process_Hacker.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Process_Hacker.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Rubeus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Rubeus.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/Rubeus.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/Rubeus.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/dnlib.dll -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/dnlib.xml -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/example.txt -------------------------------------------------------------------------------- /Obfu_Net/bin/Debug/xxxx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Debug/xxxx.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Certify.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Certify.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Certify.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Certify.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Obfu_Net.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Obfu_Net.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Obfu_Net.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Obfu_Net.exe.config -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Obfu_Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Obfu_Net.pdb -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Rubeus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Rubeus.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/Rubeus.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/Rubeus.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/basdsfdsdf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/basdsfdsdf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/basdsfdsdf.exe._obf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/basdsfdsdf.exe._obf.exe -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/dnlib.dll -------------------------------------------------------------------------------- /Obfu_Net/bin/Release/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/bin/Release/dnlib.xml -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/Obfu_Net.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 5855d05e23496e2aa445bc2469281457bce8b065 2 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/Obfu_Net.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/Obfu_Net.exe -------------------------------------------------------------------------------- /Obfu_Net/obj/Debug/Obfu_Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Debug/Obfu_Net.pdb -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Release/.NETFramework,Version=v4.8.AssemblyAttributes.cs -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Release/Obfu_Net.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0058e4898ff5fbe972aba1b652e02bc8f9c0b9e6 2 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Release/Obfu_Net.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.csproj.SuggestedBindingRedirects.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Release/Obfu_Net.exe -------------------------------------------------------------------------------- /Obfu_Net/obj/Release/Obfu_Net.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/obj/Release/Obfu_Net.pdb -------------------------------------------------------------------------------- /Obfu_Net/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/Obfu_Net/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/README.md -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/.signature.p7s -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/LICENSE.txt -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/dnlib.4.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/dnlib.4.3.0.nupkg -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net35/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net35/dnlib.dll -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net35/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net35/dnlib.xml -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net45/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net45/dnlib.dll -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net45/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net45/dnlib.xml -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net6.0/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net6.0/dnlib.dll -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/net6.0/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/net6.0/dnlib.xml -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/netstandard2.0/dnlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/netstandard2.0/dnlib.dll -------------------------------------------------------------------------------- /packages/dnlib.4.3.0/lib/netstandard2.0/dnlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Quack2332/Simple-.NET-Obfuscator-PoC/HEAD/packages/dnlib.4.3.0/lib/netstandard2.0/dnlib.xml --------------------------------------------------------------------------------