I was looking in my spartime at the ntdll.dll with IDA.
I used to use NtAccessCheckAndAuditAlarm/NtDisplayString to code egghunters in order to parse memory and check if i can read memory or not of a PE.
But it works in older version of windows, not anymore on win 10.
At this time, i use a Win 10 and i figured out that the NtAccessCheckAndAuditAlarm and NtDisplayString don't exist anymore, but are replaced with ZwAccessCheckAndAuditAlarm and ZwDisplayString (which are kernel functions)
So i was wondering when the change take place.
And so, if there are other functions in user mode to replace those 2, because i don't want to write kernel code.
Thanks