mirror of
https://github.com/Cracked5pider/CodeCave
synced 2026-06-20 09:12:42 +00:00
Update RegQueryList.c
This commit is contained in:
+6
-1
@@ -85,7 +85,12 @@ int main()
|
||||
// enumerate keys inside of the opened path
|
||||
//
|
||||
if ( ! NT_SUCCESS( Status = NtEnumerateKey( Key, KeyIndex, 0, KeyInfo, Length, &Length ) ) ) {
|
||||
printf( "[-] NtEnumerateKey Failed: %lx\n", Status );
|
||||
//
|
||||
// STATUS_NO_MORE_ENTRIES
|
||||
//
|
||||
if ( Status != 0x8000001A ) {
|
||||
printf("[-] NtEnumerateKey Failed: %lx\n", Status);
|
||||
}
|
||||
goto END_OF_ENUM;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user