嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):78630559
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#Hook注入
.
├── Hook注入
│ ├── C#EasyHook
│ │ ├── ClassLibrary1
│ │ │ ├── Class1.cs
│ │ │ ├── ClassLibrary1.csproj
│ │ │ ├── ClassLibrary1.csproj.user
│ │ │ ├── Main.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── RefLib
│ │ │ │ └── EasyHook.dll
│ │ │ ├── SN.snk
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ClassLibrary1.dll
│ │ │ │ │ ├── ClassLibrary1.pdb
│ │ │ │ │ └── EasyHook.dll
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── ClassLibrary1.csproj.CopyComplete
│ │ │ ├── ClassLibrary1.csproj.CoreCompileInputs.cache
│ │ │ ├── ClassLibrary1.csproj.FileListAbsolute.txt
│ │ │ ├── ClassLibrary1.csprojResolveAssemblyReference.cache
│ │ │ ├── ClassLibrary1.dll
│ │ │ ├── ClassLibrary1.pdb
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ └── TempPE
│ │ ├── WindowsFormsApplication8
│ │ │ ├── EasyHook.dll
│ │ │ ├── EasyHook32.dll
│ │ │ ├── EasyHook64.dll
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── RefLib
│ │ │ │ ├── EasyHook.dll
│ │ │ │ ├── EasyHook32.dll
│ │ │ │ └── EasyHook64.dll
│ │ │ ├── WinFormEasyHook.csproj
│ │ │ ├── bin
│ │ │ │ ├── Debug
│ │ │ │ │ ├── ClassLibrary1.dll
│ │ │ │ │ ├── ClassLibrary1.pdb
│ │ │ │ │ ├── EasyHook.dll
│ │ │ │ │ ├── EasyHook32.dll
│ │ │ │ │ ├── EasyHook64.dll
│ │ │ │ │ ├── WindowsFormsApplication8.exe
│ │ │ │ │ ├── WindowsFormsApplication8.pdb
│ │ │ │ │ ├── WindowsFormsApplication8.vshost.exe
│ │ │ │ │ └── WindowsFormsApplication8.vshost.exe.manifest
│ │ │ │ └── Release
│ │ │ └── obj
│ │ │ └── x86
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── WinFormEasyHook.Form1.resources
│ │ │ ├── WinFormEasyHook.csproj.AssemblyReference.cache
│ │ │ ├── WinFormEasyHook.csproj.CopyComplete
│ │ │ ├── WinFormEasyHook.csproj.CoreCompileInputs.cache
│ │ │ ├── WinFormEasyHook.csproj.FileListAbsolute.txt
│ │ │ ├── WinFormEasyHook.csproj.GenerateResource.cache
│ │ │ ├── WinFormEasyHook.csprojResolveAssemblyReference.cache
│ │ │ ├── WindowsFormsApplication8.Form1.resources
│ │ │ ├── WindowsFormsApplication8.Properties.Resources.resources
│ │ │ ├── WindowsFormsApplication8.csproj.FileListAbsolute.txt
│ │ │ ├── WindowsFormsApplication8.csproj.GenerateResource.Cache
│ │ │ ├── WindowsFormsApplication8.csprojResolveAssemblyReference.cache
│ │ │ ├── WindowsFormsApplication8.exe
│ │ │ └── WindowsFormsApplication8.pdb
│ │ ├── WindowsFormsApplication8.sln
│ │ └── WindowsFormsApplication8.suo
│ ├── TestWindow
│ │ ├── TestWindow
│ │ │ ├── App.config
│ │ │ ├── Form1.Designer.cs
│ │ │ ├── Form1.cs
│ │ │ ├── Form1.resx
│ │ │ ├── Program.cs
│ │ │ ├── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ ├── Resources.resx
│ │ │ │ ├── Settings.Designer.cs
│ │ │ │ └── Settings.settings
│ │ │ ├── TestWindow.csproj
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── TestWindow.exe
│ │ │ │ ├── TestWindow.exe.config
│ │ │ │ ├── TestWindow.pdb
│ │ │ │ ├── TestWindow.vshost.exe
│ │ │ │ ├── TestWindow.vshost.exe.config
│ │ │ │ └── TestWindow.vshost.exe.manifest
│ │ │ └── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TempPE
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TestWindow.Properties.Resources.resources
│ │ │ ├── TestWindow.TestWindow.resources
│ │ │ ├── TestWindow.csproj.CoreCompileInputs.cache
│ │ │ ├── TestWindow.csproj.FileListAbsolute.txt
│ │ │ ├── TestWindow.csproj.GenerateResource.cache
│ │ │ ├── TestWindow.csprojResolveAssemblyReference.cache
│ │ │ ├── TestWindow.exe
│ │ │ └── TestWindow.pdb
│ │ └── TestWindow.sln
│ └── depends22_x64
│ ├── Depends.exe
│ └── depends.chm
└── 好例子网_Hook注入.rar
30 directories, 94 files