Skip to content

Instantly share code, notes, and snippets.

@kohnakagawa
Last active February 3, 2022 09:03
Show Gist options
  • Save kohnakagawa/1daf222f7d924663ccdd8df5cc730aad to your computer and use it in GitHub Desktop.
Save kohnakagawa/1daf222f7d924663ccdd8df5cc730aad to your computer and use it in GitHub Desktop.
null-free get_pc example
#include <Windows.h>
#include <stdio.h>
int main() {
int a;
__asm {
fldz;
fstenv ss : [esp - 0xc];
pop eax;
mov a, eax;
};
printf("%x\n", a);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment