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.
2
votes
0answers
57 views
How to break inside the constructor of a dylib with gdb on iOS, along with ASLR?
Scene:
I was trying to reverse engineer a mobile substrate dylib. Via IDA, the dylib called MSHookFunction() inside the constructor, and the arguments were from dlopen and dlsym. IDA failed to show ...
1
vote
1answer
35 views
Can the memory layout of a C++ class be influenced by address space layout randomization
Consider the following C++ class:
class MyClass
{
TypeA a;
TypeB b;
TypeC c;
};
The compiler I use creates representations of this class in a way that the order of the members in memory ...
1
vote
1answer
76 views
ASLR brute force
I just read about Address Space Layout Randomization and I tried a very simple script to try to brute force it. Here is the program I used to test a few things.
#include <stdio.h>
#include ...
0
votes
0answers
25 views
Buffer size and chance of ASLR brute force
How does increasing buffer size increase the chances of ASLR brute force succeeding?
This is related to a project I recently did. We had an exploit_1.c program which had a buffer/character array ...
0
votes
0answers
74 views
How to calculate where app is located in memory without disabling ASLR?
So I'm working on a jailbrake tweak that hooks to a specific app on startup to allow users to use in-game mods for the app, but so far the only way I can get it to work is to use an ASLR disabled app. ...
1
vote
1answer
45 views
ASLR affected by entropy available on Linux?
It is mentioned in the kernel source in random.c that get_random_int is “Similar to urandom but with the goal of minimal entropy pool depletion”. However, where (and how) does get_random_int interact ...
3
votes
2answers
126 views
How to force OS (Windows) to allocate same addresses to my program for each debug session?
After a long debugging effort, I found out that my application probably writes a wrong value to address 0x5b81730. I would like to find out which part of my code does this.
Some time ago, when I used ...
1
vote
1answer
79 views
Unable to load native dll from c# project (DynamicBase)
In Visual Studio I created a C# executable that loads a clr library which then calls loadlibrary on a 64bit native dll an internal exception message box is shown. If I change the executable to be clr ...
3
votes
1answer
443 views
How can I enable PIE/ASLR in my monotouch application?
There is an option in XCode Build Settings called "Don't Create Position Independent Executables". This is straight-forward to enable here.
However, I'm using MonoDevelop and MonoTouch to develop my ...
0
votes
0answers
76 views
ASLR in Android Emulator (AVD)
I am trying to study the ASLR implementation in Android OS across different versions, 2.3.3/4.0/4.1, which are the major milestones for Android security implementation. To do this, I am using the ...
1
vote
0answers
95 views
PaX ASLR vs. Linux default ASLR (64 bit)
PaX's ASLR implementation for 64-bit x86 machines is much stronger than Linux's default 64-bit ASLR implementation. My question is simple, why is PaX's implementation not the default one?
I'm ...
2
votes
1answer
221 views
ASLR limitations on Linux
I tried for fun to "improve" ASLR on my own x86 32-bit machine by modifying arch_align_stack() in process.c by increasing the second argument to modulo in:
if (!(current->personality & ...
4
votes
1answer
142 views
Why does the stack have to be page aligned?
In Linux, I've tried (just for fun) to modify the kernel source in process.c create a stack address that has more entropy, i.e. in particular the line:
sp -= get_random_int() % 8192;
When I change ...
3
votes
1answer
1k views
Disable and re-enable address space layout randomization only for mysef
I would like to disable address space layout randomization (ASLR) on my system (Ubuntu Gnu/Linux 2.6.32-41-server), but, if I use
sysctl -w kernel.randomize_va_space=0
the change would affect all ...
10
votes
1answer
383 views
Enable Safe Exception Handling in C++ Builder
For Windows 8 application certification, there are (among other) these requirements:
3.2 Your app must be compiled using the /SafeSEH flag to ensure safe exceptions handling
3.3 Your app must be ...
1
vote
0answers
53 views
Checksum Generator using ASLR
I'm a newbie here. I wanna match the PID in Windows Task Manager with the checksum/hash value generated by dynamic base ASLR in Visual Studio 2010? I have already enabled the ASLR in Visual Studio ...
6
votes
2answers
1k views
How does Apples's own ASLR implementation work?
According to ASLR(Address Space Layout Randomization), It provides random stack and heap allocations and page load every time a process starts, and randomize the address where objects are placed in ...
3
votes
3answers
5k views
How do you disable ASLR (address space layout randomization) on Windows 7 x64?
How do you I disable ASLR on Windows 7 x64 so that my program will always load the shared CRT at the same address?
5
votes
2answers
330 views
Address Space Layout Randomization( ALSR ) and mmap
I expect that due to Address Space Layout Randomization (ALSR) a process forked from another process will have different addresses returned when calling mmap. But as I found out, that was not the ...
0
votes
2answers
432 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
...
3
votes
2answers
988 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 ..
2
votes
0answers
70 views
Security: How come we still hear about many stack execution security flaws? [closed]
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 ...
6
votes
3answers
572 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 ...
1
vote
0answers
242 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 ...
0
votes
1answer
344 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
197 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 - ...
1
vote
2answers
1k 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 ...
2
votes
3answers
1k 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?
1
vote
3answers
626 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 ...
2
votes
1answer
540 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?
5
votes
1answer
361 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 ...
8
votes
3answers
395 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 ...
2
votes
1answer
204 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 ...
6
votes
2answers
1k 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 ...
1
vote
1answer
206 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 ...
0
votes
2answers
1k 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
68 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 ...
1
vote
2answers
163 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 ...
5
votes
1answer
333 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, ...
2
votes
3answers
657 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 ...
4
votes
1answer
562 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 ...
0
votes
1answer
495 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 ...
1
vote
1answer
323 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 ...
2
votes
1answer
1k 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 ...
11
votes
3answers
7k 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, ...
0
votes
2answers
1k 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 ...
