You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems to be missing some function definitions that I couldn't find in the repo, and I wasn't sure if that was on purpose, or if some files need to be included in order for others to play with the reproducer. e.g.:
$ gcc -o victim test.c -O0 -masm=intel -w -DVICTIM
test.c:10:10: fatal error: utils.h: No such file or directory
10 | #include "utils.h"
| ^~~~~~~~~
compilation terminated.
$ gcc -o victim test.c -O0 -masm=intel -w -DVICTIM
/usr/bin/ld: /tmp/cclLHZ8z.o: in function `poison':
test.c:(.text+0x215): undefined reference to `jitForLoop'
/usr/bin/ld: test.c:(.text+0x2aa): undefined reference to `rdmsr_on_cpu'
/usr/bin/ld: /tmp/cclLHZ8z.o: in function `main':
test.c:(.text+0x443): undefined reference to `SetCoreAffinity'
collect2: error: ld returned 1 exit status
Thanks in advance for your help!
The text was updated successfully, but these errors were encountered:
Hi Team,
Apologies I missed some obvious steps, but I couldn't find how to build the reproducer at:
GHSA-mj4w-6495-6crx
It seems to be missing some function definitions that I couldn't find in the repo, and I wasn't sure if that was on purpose, or if some files need to be included in order for others to play with the reproducer. e.g.:
Then trying to include another
utils.h
file from pocs/cpus/ret2aslr/src/utils.h, getting:Thanks in advance for your help!
The text was updated successfully, but these errors were encountered: