-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,49 @@ | ||
# SbieHide | ||
|
||
A plugin written for [sandboxie-plus](https://github.com/sandboxie-plus/Sandboxie), which is used to fight the detection of sbiedll.dll | ||
|
||
## How to use? | ||
build this project and add | ||
|
||
Compile this plug-in or download pre-compiled files from [Release](https://github.com/VeroFess/SbieHide/releases) | ||
|
||
|
||
**You should ensure file name of this plug-in contains the string 'sbiehide', otherwise it will not hide itself.** | ||
|
||
|
||
Open the configuration file of sandboxie-plus and add the following configuration to the sandbox which need to hide from inner program: | ||
|
||
``` | ||
InjectDll64=Path\to\64\SbieHide.dll | ||
InjectDll=Path\to\32\SbieHide.dll | ||
``` | ||
|
||
to your sandboxie-plus config | ||
----- | ||
|
||
## About some applications are still detected sbiedll.dll | ||
|
||
First of all, you should not use this plug-in for bypass anti-cheating, | ||
|
||
The behavior of this plug-in is very similar to some cheat, which may cause your account banned! | ||
|
||
Secondly, this module cannot fight the detection of the kernel layer. Related confrontation needs to write in a driver, and doing so in the kernel will make Microsoft Patchguard unhappy. | ||
|
||
Finally, please bring a sample in issue, and I will try to correct this problem. | ||
|
||
----- | ||
|
||
## The detection that has been passed | ||
|
||
* Peb->InLoadOrderModuleList | ||
* Peb->InMemoryOrderModuleList | ||
* Peb->InInitializationOrderModuleList | ||
* Peb->HashLinks | ||
* NtQueryVirtualMemory [MemoryBasicInformation|MemoryMappedFilenameInformation|MemoryRegionInformation|MemoryImageInformation|MemoryRegionInformationEx|MemoryEnclaveImageInformation|MemoryBasicInformationCapped] | ||
* NtQueryObject [ObjectNameInformation] | ||
* NtQueryInformationFile [FileNameInformation|FileAllInformation] | ||
* NtQuerySection [SectionOriginalBaseInformation] | ||
|
||
----- | ||
|
||
## LICENSE | ||
Binklac-Anticheat is licensed under the MIT License. Dependencies are under their respective licenses. | ||
|