python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Debugging a coredump generated by an ASLR enabled system
I have a coredump extracted from a remote target in production. I need to debug it on my own computer since the target lacks gdb-server. Locally, I have the corresponding tooling, debug symbols and so...
Bipolar Transistor
Votes: 0
Answers: 1
Why did apple use (mach_header 's pointer subtract `__TEXT` 's vmaddr) to calculate slide value of ASLR
It is really confused me a lot! When I read apple open source code of getsecbyname.c. Some code In it:
uint8_t *
getsectiondata(
const struct mach_header *mhp,
const char *segname,
const char *sectna...
Bernard
Votes: 0
Answers: 1
can i start a program without ASLR on Windows?
is there some way to start a program with ASLR disabled on Windows? like on Posix one would do
posix_spawnattr_t attrs={0};
posix_spawnattr_setflags(&attrs, _POSIX_SPAWN_DISABLE_ASLR);
posix_spaw...
hanshenrik
Votes: 0
Answers: 0
Q1. Why we get same stack address at each time we execute a program if we disable ASLR?
I'm trying to understand memory address allocation for processes in linux. By default we have ASLR ON in linux. So it will give us different stack memory addresses each time.
But my question is why we...
chikako Ubukata
Votes: 0
Answers: 0