5
votes
7answers
719 views
How to hide strings in a exe or a dll?
I discovered that it is possible to extract the hard-coded strings from a binary.
For example the properties view of Process Explorer displays all the string with more than 3 chara …
17
votes
13answers
469 views
techniques for obscuring sensitive strings in C++
I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:
std::string myKey = "mysup …
6
votes
10answers
444 views
Defensive Programming: Guidelines in Java
I’m from a .NET background and now dabbling in Java.
Currently, I’m having big problems designing an API defensively against faulty input. Let’s say I’ve got the following code (c …
5
votes
3answers
101 views
Defensive programming against malicious attacks
The company that I work for is redeveloping an in-house product for external use.
The product will initially be developed in C# using WPF, then ported to Silverlight.
One of the …
7
votes
14answers
503 views
Defensive programming
When writing code do you consciously program defensively to ensure high program quality and to avoid the possibility of your code being exploited maliciously, e.g. through buffer o …
2
votes
7answers
515 views
Java: Is clone() really ever used? What about defensive copying in getters/setters?
Do people practically ever use defensive getters/setters? To me, 99% of the time you intend for the object you set in another object to be a copy of the same object reference, and …
7
votes
8answers
576 views
0xDEADBEEF equivalent for 64 bit development?
For C++ development for 32 bit systems (be it Linux, MacOS or
Windows, PowerPC or x86) I have initialised pointers that
would otherwise be undefined (e.g. they can not immediatel …
8
votes
15answers
557 views
How “defensive” should my code be?
I was having a discussion with one of my colleagues about how defensive your code should be. I am all pro defensive programming but you have to know where to stop. We are working o …
24
votes
14answers
1k views
How defensively should I program?
i was working with a small routine that is used to create a database connection:
Before
public DbConnection GetConnection(String connectionName)
{
ConnectionStringSettings cs= …
1
vote
2answers
108 views
CLR: If a constructor fails will it always throw an exception?
In Delphi, if there was an exception during construction of an object: any allocated memory would be released and an exception would be thrown. For example, the following was guara …
14
votes
9answers
640 views
Checklist for Web Site Programming Vulnerabilities
Watching SO come online has been quite an education for me. I'd like to make a checklist of various vunerabilities and exploits used against web sites, and what programming techni …
3
votes
6answers
304 views
Does defensive programming violate the DRY principle?
Disclaimer: I am a layperson currently learning to program. Never been part of a project, nor written anything longer than ~500 lines.
My question is: does defensive programming v …
0
votes
3answers
86 views
How to prevent outliers to be inserted in database?
I have a MS SQL DB contains set of tables each table represents a collection of variables calculated based on our formulas.
All the variables are numeric with predefined percision …
1
vote
8answers
160 views
Adding items to a List<T> / defensive programming
Explicitly checking/handling that you don't hit the 2^31 - 1 (?) maximum number of entries when adding to a C# List is crazyness, true of false?
(Assuming this is an app where the …
0
votes
1answer
122 views
Main security concerns in allowing users embed video
I wanna allow users to embed videos freely in the application in developing, but do not want to expose then and the application to malicious uses.
With that in mind, what are the …
