Login
Discover
Waves
Communities
Login
Signup
@ntstatus
31
Followers
0
Following
5
Follow
Resource Credits
Available
Used
Created
2021-09-16 06:22
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
ntstatus
programming
2021-09-30 18:27
Get Time As Second and MicroSecond Since 1970
DTube video Link #pragma comment(lib, "ntdll.lib") #include <Windows.h> #include <winternl.h> DWORD64 GetTimeInMicroSecond(PLARGE_INTEGER crntTime) { UINT64 tt; tt =
$ 0.000
0
ntstatus
programming
2021-09-24 06:09
Alternative Ways to Get System Time
DTube video Link #pragma comment(lib, "ntdll.lib") #include <Windows.h> #include <winternl.h> #define SystemTimeOfDayInformation 3 typedef struct _SYS_TIMEOFDAY_INFO { LARGE_INTEGER
$ 0.000
7
1
ntstatus
programming
2021-09-21 19:39
Get Exported Dll Functions - Get Native Functions List from ntdll.dll
DTube video Link 1- DLL Export Viewer tool (Nirsoft) 2- dumpbin tool (available in visual studio cmd) dumpbin /exports ntdll.dll Please Vote this post if you like it. Please Follow me if you like my posts.
ntstatus
programming
2021-09-20 18:27
Get Full Path / Get File Name from Path with Native Api
DTube video Link #pragma comment(lib, "ntdll.lib") #include <Windows.h> ULONG NTAPI RtlGetFullPathName_U(PCWSTR FileName,ULONG Size,PWSTR Buffer,PWSTR *ShortName); int WINAPI wWinMain(HINSTANCE
ntstatus
windows
2021-09-19 18:52
Disable USB Removable Storage in Windows by Local Group Policy
DTube Video Link Restrict USB Removable Storage in Windows by Local Group Policy. Please Vote this post if you like it. Please Follow me if you like my posts. If you have any questions about this post,
ntstatus
introduceyourself
2021-09-19 18:31
Who am I?
I am a boy who love programming in low level. I am interested in Linux , Networking and Cybersecurity. My greatest skill is solving problems.
ntstatus
programming
2021-09-19 03:25
Alternative ways to get (TEMP path) / (Environment Variable) in windows
DTube video Link 1- GetTempPathW Api/GetTempPathA in kernel32.dll wchar_t tmpPath[MAX_PATH]; GetTempPathW(MAX_PATH, tmpPath); 2- GetEnvironmentVariableW/GetEnvironmentVariableA in kernel32.dll wchar_t
@ntstatus
cross-posted
@ntstatus/alternative-ways-to-get-proces...
to
DTube
ntstatus
programming
2021-09-18 16:31
Alternative Ways to Get Process Heap
DTube Video Link #include <Windows.h> #include <winternl.h> inline PPEB NtCurrentPeb() { return NtCurrentTeb()->ProcessEnvironmentBlock; } int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE
ntstatus
programming
2021-09-18 16:31
Alternative Ways to Get Process Heap
DTube Video Link #include <Windows.h> #include <winternl.h> inline PPEB NtCurrentPeb() { return NtCurrentTeb()->ProcessEnvironmentBlock; } int WINAPI wWinMain(HINSTANCE hInstance, HINSTANCE
@ntstatus
cross-posted
@ntstatus/get-file-size-with-kernel32
to
DTube
ntstatus
programming
2021-09-17 19:44
Get File Size with Kernel32 Api and Ntdll Api (Native Api)
DTube Video Link #pragma comment(lib, "ntdll.lib") #include <Windows.h> #include <winternl.h> #define FileStandardInformation 5 typedef struct _FILE_STANDARD_INFORMATION { LARGE_INTEGER
ntstatus
programming
2021-09-17 19:44
Get File Size with Kernel32 Api and Ntdll Api (Native Api)
DTube Video Link #pragma comment(lib, "ntdll.lib") #include <Windows.h> #include <winternl.h> #define FileStandardInformation 5 typedef struct _FILE_STANDARD_INFORMATION { LARGE_INTEGER