ImI'm on a linuxLinux machine with ASLR disabled. DoingRunning ldd on a binary gives me the following result :
linux-gate.so.1 => (0xb7fe1000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xb7e5c000)
/lib/ld-linux.so.2 (0xb7fe2000)
Does this mean that libc.so.6 will be loaded at the address 0xb7e5c000.? I'm trying to build a ROP chain for an old CTF challenge and idI'd like to get gadgets from the library. I'm looking to know the base address of the library so that I can add it to the offsets of the gadgets.