merge, add, etc

+
This commit is contained in:
vxunderground 2022-09-14 16:57:58 -05:00
parent fdd4d4c88c
commit 0252bef0e6
5 changed files with 7 additions and 1 deletions

View File

@ -70,6 +70,7 @@ You're free to use this in any manner you please. You do not need to use this en
| DelayedExecutionExecuteOnDisplayOff | am0nsec and smelly__vx | Evasion |
| MasqueradePebAsExplorer | smelly__vx | Evasion |
| RemoveDllFromPeb | rad9800 | Evasion |
| GetCurrentLocaleFromTeb | 3xp0rt | Fingerprinting |
| GetNumberOfLinkedDlls | smelly__vx | Fingerprinting |
| GetOsBuildNumberFromPeb | smelly__vx | Fingerprinting |
| GetOsMajorVersionFromPeb | smelly__vx | Fingerprinting |

View File

@ -1,6 +1,6 @@
#include "Win32Helper.h"
LCID GetCurrentLocale(VOID)
LCID GetCurrentLocaleFromTeb(VOID)
{
PTEB Teb = (PTEB)GetTeb();

View File

@ -151,6 +151,7 @@
<ClCompile Include="DelayedExecutionExecuteOnDisplayOff.cpp" />
<ClCompile Include="DeleteFileWithCreateFileFlag.cpp" />
<ClCompile Include="GetCurrentDirectoryFromUserProcessParameters.cpp" />
<ClCompile Include="GetCurrentLocaleFromTeb.cpp" />
<ClCompile Include="GetCurrentProcessIdFromTeb.cpp" />
<ClCompile Include="GetCurrentUserSid.cpp" />
<ClCompile Include="GetCurrentWindowTextFromUserProcessParameter.cpp" />

View File

@ -345,6 +345,9 @@
<ClCompile Include="RtlNtStatusToDosErrorViaImport.cpp">
<Filter>Source Files\Windows API Helper Functions\Error Handling</Filter>
</ClCompile>
<ClCompile Include="GetCurrentLocaleFromTeb.cpp">
<Filter>Source Files\Windows API Helper Functions\Fingerprinting</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Internal.h">

View File

@ -98,6 +98,7 @@ DWORD UrlDownloadToFileSynchronousA(_In_ PCHAR Url, _In_ PCHAR SavePath);
BOOL SetProcessPrivilegeToken(_In_ DWORD PrivilegeEnum);
//fingerprinting
LCID GetCurrentLocaleFromTeb(VOID);
DWORD GetNumberOfLinkedDlls(VOID);
BOOL IsNvidiaGraphicsCardPresentA(VOID);
BOOL IsNvidiaGraphicsCardPresentW(VOID);