Tagged Questions
Address space layout randomization (ASLR) is a computer security technique which involves randomly arranging the positions of key data areas, usually including the base of the executable and position of libraries, heap, and stack, in a process's address space.
8
votes
3answers
202 views
Create buffer overflows in snow leopard
As part of a course at university in computer security, I'm soon about to learn about buffer overflows and how to use them to as exploits. I'm trying to do some simple buffer overflow with the ...
8
votes
3answers
3k views
How to disable address space randomization for a binary on Linux?
I'm working on a runtime system for parallel programs that can take advantage of a common address space layout across multiple processes, potentially spread over several (thousand) nodes. Many times, ...
5
votes
1answer
189 views
How can ASLR be effective?
I've heard the theory. Address Space Location Randomization takes libraries and loads them at randomized locations in the virtual address space, so that in case a hacker finds a hole in your program, ...
4
votes
3answers
80 views
Forcing Windows to load DLL's at places so that memory is minimally fragmented
My application needs lots of memory and big data structure in order to perform its work.
Often the application needs more than 1 GB of memory, and in some cases my customers really need to use the ...
3
votes
1answer
191 views
ASLR and DEP in Delphi, How to tell?
From http://blogs.msdn.com/b/michael_howard/archive/2007/04/04/codegear-s-new-delphi-2007-supports-aslr-and-nx.aspx,
I am using {$SETPEOPTFLAGS $140} in my project file right under the program name to ...
2
votes
3answers
326 views
Disabling ASLR in Mac OS X Snow Leopard
Essentially I want to disable ASLR in Mac OS X Snow Leopard and use gcc todo some buffer overflowing and stack overflows. Anyone know how to disable ASLR?
2
votes
1answer
428 views
Is there some sort of ASLR protection on Android?
I want to know if someone could access libraries with function addresses that would be the same from one instance of the program to the other?
2
votes
1answer
103 views
How do we compare ASLR across different Operating Systems?
Address space layout randomization (ASLR) is a computer security technique which involves randomly arranging the positions of key data areas, usually including the base of the executable and position ...
2
votes
1answer
307 views
Disable randomization of memory addresses
I'm trying to debug a binary that uses a lot of pointers. Sometimes for seeing output quickly to figure out errors, I print out the address of objects and their corresponding values, however, the ...
2
votes
2answers
372 views
Microsoft's ASLR is weird
I watched a ASLRed dll images's based address for 32bit Process.
It's not a fully randomization. It just randomizated 1/2 probability.
For example, once I load a dll then the image is loaded on ...
2
votes
1answer
247 views
Does ASLR cause a slow loading of Dlls?
In MSVC, the Base Address Randomizaiton is a default option.(Since VS2005?)
So, I do not rebase manually the dll's base address anymore.
But I rebased my all dlls to improve loading performance when ...
2
votes
1answer
605 views
How do I enable DEP or ASLR for my .NET application?
I'm writing my program in VS2010 and the build target is .NET 4. I believe that the DEP compatibility flag is on by default. Is that true?
Is .NET also compatible by default with ASLR, and is ASLR ...
1
vote
0answers
32 views
Security: How come we still hear about many stack execution security flaws?
Security: How come we still hear about many stack execution security flaws even though mechanisms such as NX bit DEP and ASLR exist so many years ?
Have hackers found ways to circumvent these ?
When ...
1
vote
0answers
92 views
What's the purpose of ASLR on android?
Android 4.0 added ASLR
http://developer.android.com/sdk/android-4.0-highlights.html#DeveloperApis
Afaik, ASLR is mainly useful to avoid letting some malicious code leak/put a payload in another ...
1
vote
3answers
273 views
ASLR bruteforcing
I have been trying to bruteforce the ASLR implementation on my machine, for practice. First, I make sure that ASLR is turned on.
cat /proc/sys/kernel/randomize_va_space
1
The machine I am using is ...
1
vote
1answer
134 views
What is wrong with precompiled headers and ASLR?
I read it on several sites that precompiled headers and address space layout randomization is incompatible. What makes them incompatible? What would it take to fix it?
My question is OS independent I ...
1
vote
2answers
110 views
MSVC linker won't apply RandomizedBaseAddress via vsprops file
I am trying to add ASLR to a project using a vsprops file. I have verified the file is being used by the project as there are other settings in the file that are being applied, and intentionally ...
1
vote
1answer
256 views
32-bit FreeBSD 7.2 and 1GB mmaps
I've been having some trouble with FreeBSD and large mmaps. Linux does not show the same problems.
On program startup it can always get the 1 GB map. However, there's a reload operation where the ...
0
votes
1answer
64 views
Would ASLR cause friction for the address with DLL injection?
I was reading about the DLL injection technique, and I had this question in mind.
Let us assume we want to inject a DLL into a destination process in Windows 7 which has ASLR enabled for kernel32.dll
...
0
votes
1answer
45 views
How to know whether a dll uses ASLR or not?
how to check whether a certain dll uses ASLR or not ?
lets take for example kernel32.dll, does it use ASLR or not ? and how to check other dlls ...
thanks ..
0
votes
1answer
100 views
How can I determine if Windows applies ASLR without rebooting?
As far as I understand, ASLR Address Space Layout Randomization will only do random relocation per system start (per reboot).
Address Space Layout Randomization (ASLR)
ASLR moves executable ...
0
votes
2answers
95 views
Is buffer-overflow considered a “solved problem” ? (at least for future systems)
I am looking at various buffer/heap/stack protection technologies such as PAX, DEP, NX, CANARIES, etc
And a new one SMEP - ...
0
votes
0answers
41 views
Are there non-Dos Stackoverflows any more or are they all not exploitable due to ASLR and DEP etc
i've thought a bit about buffer overflows and a i know that you could bypass a not executable stack through return to libc, and maybe with some luck ASLR but never ever in combination with Stack ...
0
votes
2answers
293 views
ASLR and Windows System DLLs for non-aware executables?
From a Microsoft article:
Address Space Layout Randomization (ASLR)
ASLR moves executable images into random locations when a system
boots, making it harder for exploit
code to operate ...
0
votes
2answers
344 views
ASLR implementation
I just read about how ASLR helps in preventing buffer overflow attacks and would like to have a look at its implementation.
Could someone offer a few pointers on where I could start looking?
I would ...
0
votes
1answer
61 views
Is it possible to determine an instruction's timespan?
I have a question, which I was unable to Google because I really don't know the proper terminology for it, if concept exists that is. My question is this;
Imagine having a while loop in C, which does ...
0
votes
1answer
316 views
DEP and ASLR and how to use it?
ASLR and DEP are two techniques that are used to protect applications from hackers. With many modern applications becoming more security-aware, these techniques are becoming more important. For now, I ...
0
votes
2answers
691 views
Heap randomization in Windows
Windows 7 has Heap randomization and Stack randomization features. How could I manage it? How they are affects performance of my application? Where I could find more information on how it works?
I'm ...