Skip to content
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

GOT address of libc #130

Closed
stdnoerr opened this issue Sep 9, 2020 · 3 comments
Closed

GOT address of libc #130

stdnoerr opened this issue Sep 9, 2020 · 3 comments
Labels

Comments

@stdnoerr
Copy link

stdnoerr commented Sep 9, 2020

What does it mean by GOT address of libc in one_gadget's output?
E.g>
`
0x3d123 execve("/bin/sh", esp+0x34, environ)
constraints:
esi is the GOT address of libc
[esp+0x34] == NULL

0x3d125 execve("/bin/sh", esp+0x38, environ)
constraints:
esi is the GOT address of libc
[esp+0x38] == NULL

0x3d129 execve("/bin/sh", esp+0x3c, environ)
constraints:
esi is the GOT address of libc
[esp+0x3c] == NULL

0x3d130 execve("/bin/sh", esp+0x40, environ)
constraints:
esi is the GOT address of libc
[esp+0x40] == NULL

0x67b4f execl("/bin/sh", eax)
constraints:
esi is the GOT address of libc
eax == NULL

0x67b50 execl("/bin/sh", [esp])
constraints:
esi is the GOT address of libc
[esp] == NULL

0x1380be execl("/bin/sh", eax)
constraints:
ebx is the GOT address of libc
eax == NULL

0x1380bf execl("/bin/sh", [esp])
constraints:
ebx is the GOT address of libc
[esp] == NULL
`

@david942j
Copy link
Owner

Hi @stdnoerr ,

You can find information on my blog (https://david942j.blogspot.com/2017/02/project-one-gadget-in-glibc.html), search for "Data access method".

Thanks ;)

@stdnoerr
Copy link
Author

stdnoerr commented Sep 9, 2020

Hey. Well it turned out that GOT address of libc means start of rw section of libc.
Btw, thanks for the response. (I found it myself)

@stdnoerr stdnoerr closed this as completed Sep 9, 2020
@GionnyBearThaRealHe
Copy link

I was stuck on this same problem for a while and in the end the solution was just to leave esi untouched, it is the right value in the main and if you are luky other functions won't permanently change it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants