Tagged Questions
The dep tag has no wiki summary.
5
votes
2answers
85 views
Jumping to the data segment
I am testing an assembler I am writing which generates X86 instructions. I would like to do something like this to test whether the instructions work or not.
#include<stdio.h>
unsigned char ...
4
votes
3answers
1k views
Why is SQL Server deprecating SET ANSI_PADDING OFF?
According to MSDN BOL (Books Online) on SET ANSI_PADDING,
In a future version of Microsoft SQL Server ANSI_PADDING will always be ON and any applications that explicitly set the option to OFF will ...
3
votes
2answers
192 views
How can I spring.net inject in to methods?
I posted to following on the spring.net forum but also hoped I may get some value views here:
I am looking at some advice as to how I might achieve the following requirement.
Firstly some ...
3
votes
1answer
192 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 ...
3
votes
2answers
621 views
Incompatibilities between Indy 9 and Windows Server 2003?
I'm having a problem with a Delphi application on some Windows 2003 servers. It uses a webservice call to connect with another server and transmit data back and forth. As soon as the app gets to the ...
3
votes
5answers
922 views
“Data Execution Prevention” kills (VS2008) local ASP.Net Development Server (aka Cassini) on Vista 64
Occasionally i find that while debugging an asp.net application (written in visual studio 2008, running on Vista 64) the local ASP.Net development server (i.e. 'Cassini') stops responding.
A message ...
2
votes
4answers
682 views
Track Data Execution Prevention (DEP) problem
When running one of our software, a tester was faced with the data execution prevention dialog of Windows.
We try to reproduce this situation on a developer computer for debugging purposes : with no ...
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
1answer
39 views
Risks of RWX memory pages
After getting negative comments on this answer - can i implement counter in the .text area without using registers?, I performed a little investigation, trying to understand if RWX memory pages are ...
1
vote
1answer
231 views
C# and Data Execution Prevention (Vista)
I was writing a small program and have some problems with DEP, what I want to do is to open files stored on another windows-share, my code looks like this:
foreach (string file in files)
{
...
1
vote
5answers
18k views
IIS: How to disable Data Execution Prevention in Windows Server 2008?
I've been trying to disable DEP on my windows 2008 dev box and have not succeeded.
I've tried:
System Properties->Performance Options->Data Execution Prevention->Turn on DEP for essential Windows ...
1
vote
5answers
544 views
Why does FogBugz require that the DEP is turned off? [closed]
I am really wondering why FogBugz when installed locally insists that DEP is turned off?
0
votes
1answer
18 views
Are dependencies supposed to be packaged with a maven jar artifact?
Sonatype's Maven:The Complete Reference says that a compile scoped dependency is on all classpaths and is packaged with the artifact.
Compile is the default scope; all dependencies are ...
0
votes
1answer
37 views
How to add DEP exclusion through registry in Win Server 2003 x64
Is there a way to add an exclusion in DEP in Windows 2003 using registry?
I tried adding through registry HKLM\Software\Microsoft\Windows NT\CurrentVersion\AppCompatFlag\Layers with the value ...
0
votes
2answers
89 views
Switch off DEP from command line in Win 2003
How can I switch off DEP from command line in Win 2003?
Or at least for Win XP.
A lot of forums explain how switch it off by editing boot.ini, but I need command line solution.
0
votes
2answers
87 views
Is the ATL incompatibility with DEP fixable?
ATL uses thunks to manage callbacks for windows, and apparently it needs to allow for data execution.
Microsoft says:
Note that system DEP policy can override, and having DEP AlwaysOn will ...
0
votes
1answer
88 views
Calling SetProcessDEPPolicy on another process?
A game (Sims 3 to be specific) is poorly coded, and one of the ways to get it to stop randomly crashing is to add it to your DEP exception list. I don't really want to do that if I don't have to, so I ...
0
votes
1answer
230 views
GPG2.exe crashes on windows 2008 R2 with 0xc0000005
I was calling GPG from my webbased application but it has been crashing I found out that it was not my code that was at fault but something on windows. But I have yet to find the problem.
When I run ...
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
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
1answer
336 views
JIT compilation and DEP
I was thinking of trying my hand at some jit compilataion (just for the sake of learning) and it would be nice to have it work cross platform since I run all the major three at home (windows, os x, ...