Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

45
votes
19answers
8k views

When should I use Debug.Assert()?

I've been a professional software engineer for about a year now, having graduated with a CS degree. I've known about assertions for a while in C++ and C, but had no idea they existed in C# and .NET at ...
33
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= ...
26
votes
12answers
1k 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 = ...
21
votes
11answers
2k views

0xDEADBEEF equivalent for 64-bit development?

For C++ development for 32-bit systems (be it Linux, Mac OS or Windows, PowerPC or x86) I have initialised pointers that would otherwise be undefined (e.g. they can not immediately get a proper ...
17
votes
9answers
1k 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 techniques can be used to ...
15
votes
2answers
286 views

How to combine defensive programming techniques together?

The question I want to ask you is quite wide but in the same time it's very concrete. First, I have to say, that I mostly interested in answers which are applicable in the .net environment. Well, I ...
13
votes
5answers
893 views

Erlang's let-it-crash philosophy - applicable elsewhere?

Erlang's (or Joe Armstrong's?) advice NOT to use defensive programming and to let processes crash (rather than pollute your code with needless guards trying to keep track of the wreckage) makes so ...
11
votes
3answers
379 views

What's the most defensive way to loop through lines in a file with Perl?

I usually loop through lines in a file using the following code: open my $fh, '<', $file or die "Could not open file $file for reading: $!\n"; while ( my $line = <$fh> ) { ... } However, ...
11
votes
15answers
877 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 on a project that ...
11
votes
9answers
757 views

Test Cases AND assertion statements

The code in this question made me think assert(value>0); //Precondition if (value>0) { //Doit } I never write the if-statement. Asserting is enough/all you can do. "Crash early, crash ...
11
votes
14answers
867 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 overflow exploits or ...
9
votes
12answers
1k views

Does wrapping everything in try/catch blocks constitute defensive programming?

I have been programming for the last 3 years. When I program, I use to handle all known exceptions and alert the user gracefully. I have seen some code recently which has almost all methods wrapped ...
7
votes
2answers
92 views

Defensive programming and exception handling

A couple days ago, I have following theoretical questions on the exam: (a) Explain what is meant by defensive programming when dealing with exceptional circumstances that may occur during the ...
7
votes
8answers
196 views

How to avoid key-loggers when authenticating access

As per the title really, just what can be done to defeat key/keystroke logging when authenticating access? I have just posted a related question ...
7
votes
2answers
980 views

Getting meaningful error messages from fstream's in C++

What is the best way to get meaningful file access error messages, in a portable way from std::fstreams ? The primitiveness of badbits and failbits is getting to be bit annoying. I have written my own ...
7
votes
10answers
1k 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 (close enough): ...
7
votes
9answers
3k 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 characters. Here is the ...
7
votes
2answers
450 views

Editor templates for defensive programming

Recently I worked on FindBugs warnings about exposing internal state, i.e. when a reference to an array was returned instead of returning a copy of the array. I created some templates to make ...
6
votes
4answers
383 views

Is it possible that Java String.split can return a null String[]

Is it possible for split to return a null String[]? I am curious as I want to try to be as defensive as possible in my code without having unnecessary checks. The code is as follows: String[] ...
6
votes
14answers
751 views

How defensive should you be? [closed]

Possible Duplicate: Defensive programming We had a great discussion this morning about the subject of defensive programming. We had a code review where a pointer was passed in and was not ...
5
votes
3answers
332 views

Why are fail fast style programs shorter than defensive style programs?

I have read about how the fail-fast style of programming in languages like Erlang end up with much shorter programs than the defensive style found in most other languages. Is this correct for all ...
5
votes
3answers
202 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 focus points is ...
5
votes
7answers
333 views

web application attacks and must have defence methods

What is your must have defence methods to common web attacks like XSS, Sql Injection, Denial of Service, etc. ? Edit : I collected your responses under descriptions from Wikipedia. And I add some ...
5
votes
9answers
486 views

How can I program defensively in Ruby?

Here's a perfect example of the problem: Classifier gem breaks Rails. ** Original question: ** One thing that concerns me as a security professional is that Ruby doesn't have a parallel of Java's ...
5
votes
4answers
422 views

Test Cases VS ASSERTION statement

In my most C++ project I heavily used ASSERTION statement as following: int doWonderfulThings(const int* fantasticData) { ASSERT(fantasticData); if(!fantasticData) return -1; // ...
4
votes
7answers
181 views

C Syntax Question

Is it considered bad coding to put a break in the default part of a switch statement? A book I was reading said that it was optional but the teacher counted off for using it.
4
votes
2answers
132 views

How well are Cocoa UI and general framework elements protected against malicious attacks?

So far I had little concern about overall security considerations, because I have been developing only promotional and uncritical iPhone apps. Currently, however, I'm working on a Mac application ...
4
votes
2answers
219 views

JavaScript anti-silent techniques to indicate failure

What would be a good way to report errors in JavaScript instead of relying on nulls, and undefineds when errors do occur and a function is unable to proceed forward. I can think of three approaches: ...
4
votes
6answers
699 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 violate the Don't ...
4
votes
2answers
211 views

How do you manage external dependencies for your application?

There are many types of external dependencies. Interfacing with external applications, components or services (e.g. Outlook to send emails, TWAIN or WIA for scanning, ActiveX objects and Web services ...
3
votes
5answers
97 views

C# anonymous backing fields with non-auto properties

I want to make a private member variable that is private even to the class that owns it, and can ONLY be accessed by its getters and setters. I know you can do this with auto-properties like private ...
3
votes
5answers
126 views

Defensive database programming- robust code with T-SQL?

In the application development there is a concept of defensive programming. How to implement defensive programming techniques and writing robust code using Transact-SQL?
3
votes
8answers
2k 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 you intend for ...
2
votes
2answers
134 views

process self defence like antivirus

I write program for defence system, antivirus anti malware etc. And i have a problem with defensing process from killing thru tast manager->Kill Process. I test some antiviruses and they dont let me ...
2
votes
2answers
285 views

Why is the MVC paradigm best suited for web applications?

I'm fairly certain my professor will ask me why I chose to use MVC for my web application. Truth be told, I'm new to MVC. I read about it, I'm building a blog application using it, I think it's very ...
2
votes
1answer
688 views

IOrderedEnumerable and defensive programming

I'm fond of defensive programming. I hate exception throwing, but this is not the subject of my question. I adapted an extension to linQ to be able to perform an order by with a column name ...
1
vote
4answers
87 views

Clojure : Maps of Lists of Maps of … How to wrangle anyonymous data structures

Hi guys : In java we've all had the experience of using our ide to "traverse" down the depths of a complex data type : dog.getCollar().getCollarTag().getName(); However, in Clojure, this becomes ...
1
vote
3answers
52 views

GSON vulnerabilities or exploits on deserialization to avoid

I am planning to use gson's fromJson() method to parse a string coming from the browser. Are there any potential vulnerabilities associated with doing that? The data type I am converting to is ...
1
vote
3answers
205 views

C++ defensive programming: reading from a buffer with type safety

Let's say I have a class that I don't own: DataBuffer. It provides various get member functions: get(uint8_t *value); get(uint16_t *value); ... When reading from a structure contained in this ...
1
vote
4answers
179 views

Java Defensive Copies

I've seen defensive copies coded like this void someMethod(Date d) { myDate = new Date( d.getTime() ); } But that doesn't make sense to me, isn't there a way in Java to create an Identical copy ...
1
vote
2answers
210 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 guaranteed to either ...
1
vote
8answers
776 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 average List size ...
1
vote
1answer
284 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 main security ...
1
vote
7answers
190 views

How can I prevent my desktop application from breaking horribly when the user messes with its files at run-time?

Such as deleting the output file during run, directing two instances of the sw to the same IO etc ?
0
votes
3answers
95 views

What happens if I post to a site a million times repeatedly? [closed]

I was just trying to post something to a website via my localhost to retrieve some data, and suddenly, this idea came to my mind: What happens if I create a post, put it into a for loop that runs over ...
0
votes
1answer
76 views

Improving setValueForKeyPath robustness

I have created an extension to NSObject to allow for object properties to be set from data contained in a PLIST or dictionary. I did use setValuesForKeysWithDictionary but this only works for keys ...
0
votes
1answer
65 views

Parasoft rulewizard

I'm trying to create a static rule to check the token passing for defensive programming in a SIL4 application. The rule is the following: "Each functions shall have a const uint_32 as last parameter" ...
0
votes
4answers
47 views

Is it a good practice to add extra checks in disabled GUI options?

I'm referring to the following: void setup_gui() { if (some_condition) some_button.disable(); ... } void some_button_click() { // Is this a good practice? if ...
0
votes
2answers
60 views

A question about checking for the existence of a file versus the directory being empty and reliability

I know that pretty much every programming language has a method to check the existence of a file or directory. However, in my case, a file is made which stores program settings. If it does not exist ...
0
votes
6answers
200 views

How else can this code be optimized for defensive programming?

For my data structures project, the goal is to read in a provided file containing over 10000 songs with artist, title and lyrics clearly marked, and each song is separated by a line with a single ...

1 2