We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hi, I'm try to patch web inspect.
but I confuse address.
I found 0x7ff93a06c974 <+69>: testb %al, %al
0x7ff93a06c974 <+69>: testb %al, %al
and modify main.m like this patch_mem(remoteTask, aslr_offset+0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
patch_mem(remoteTask, aslr_offset+0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
webinspectord's pid is 1917 patch memory at address 0xfff274057974 can't read memory
and I'm trying to patch_mem(remoteTask, aslr_offset+0x000000000006c974, sizeof(unsigned short), 0xc084, 0xdb84);
patch_mem(remoteTask, aslr_offset+0x000000000006c974, sizeof(unsigned short), 0xc084, 0xdb84);
webinspectord's pid is 1917 patch memory at address 0x7ff93a057974 Incorrect version of process or ASLR Offset
also patch_mem(remoteTask, 0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
patch_mem(remoteTask, 0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
webinspectord's pid is 1917 patch memory at address 0x7ff93a06c974 Already patched
but not working.
please let me know what i did wrong
thx
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi, I'm try to patch web inspect.
but I confuse address.
I found
0x7ff93a06c974 <+69>: testb %al, %al
and modify main.m like this
patch_mem(remoteTask, aslr_offset+0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
and I'm trying to
patch_mem(remoteTask, aslr_offset+0x000000000006c974, sizeof(unsigned short), 0xc084, 0xdb84);
also
patch_mem(remoteTask, 0x7ff93a06c974, sizeof(unsigned short), 0xc084, 0xdb84);
but not working.
please let me know what i did wrong
thx
The text was updated successfully, but these errors were encountered: