-
Notifications
You must be signed in to change notification settings - Fork 169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does not appear to read from another process #19
Comments
I tried to make this split, printing out the pointer address of the secret, and pasting that in as a parameter to attack; but it doesn't work. I don't really know the C language but it seems like maybe pointers are being handled as a really small type, the 16 bit size_t? |
Original code came from Spectre paper.
I've also tried to read from another process's address but no success. Although, Spectre should be able to do this. Current code seems works only if victim_function is a part of the same process. |
Is there any Spectre exploit available yet which lets us read data elements from a seperate process? |
i tried to inject the code into target process, but no luck, crash the target program. sorry, i change to inject dll, it works! never mind |
So perhaps I am being obtuse here, but this attack code directly receives the starting address and length of the secret string, does it not? It is reading bytes using the side-channel technique, but it is not reading memory belonging to another process.
Why not split the code into victim.c and attack.c ?
The text was updated successfully, but these errors were encountered: