Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

49
votes
5answers
2k views

Evil code confusion, how does it even compile?

I stumbled upon this code: static void Main() { typeof(string).GetField("Empty").SetValue(null, "evil");//from DailyWTF Console.WriteLine(String.Empty);//check //how does it behave? ...
25
votes
2answers
425 views

Safe execution of untrusted Haskell code

I'm looking for a way to run an arbitrary Haskell code safely (or refuse to run unsafe code). Must have: module/function whitelist timeout on execution memory usage restriction Capabilities I ...
11
votes
5answers
4k views

Is this thread.abort() normal and safe?

I created a custom autocomplete control, when the user press a key it queries the database server (using Remoting) on another thread. When the user types very fast, the program must cancel the ...
10
votes
2answers
462 views

what is best possible way of salting and storing salt?

Hi guys I have read about password salting, but this might sound a little odd. But how do I store and secure the salt. For example in a multi tire architecture say I use the client machine’s GUID to ...
8
votes
5answers
506 views

In C++, are static initializations of primitive types to constant values thread-safe?

i.e., would the following be expected to execute correctly even in a multithreaded environment? int dostuff(void) { static int somevalue = 12345; return somevalue; } Or is it possible for ...
6
votes
4answers
105 views

vulnerabilities of letting user define innerHTML

Let's say I have a <textarea> and <div> element, and when the user puts html, CSS, or whatever they want), into the textarea, then their input is set as the innerHTML of the <div> ...
6
votes
4answers
2k views

Is sprintf(buffer, “%s […]”, buffer, […]) safe?

I saw use of this pattern to concatenate onto a string in some code I was working on: sprintf(buffer, "%s <input type='file' name='%s' />\r\n", buffer, id); sprintf(buffer, "%s</td>", ...
6
votes
5answers
4k views

create std::string from char* in a safe way

I have a char* p, which points to a 0-terminated string. How do I create a C++ string from it in an exception-safe way? Here is an unsafe version: string foo() { char *p = get_string(); string ...
5
votes
3answers
136 views

Does “DO-178B level A” prohibits optimizing compilers?

There is an "DO-178B" level A and level B certification for airborne systems. Does it prohibit using of optimizating compilers? E.g. Some compilers will reorder instructions to get more performance. ...
5
votes
4answers
184 views

python: changing dictionary returned by groupdict()

Is it safe to modify a mutable object returned by a method of a standard library object? Here's one specific example; but I'm looking for a general answer if possible. #m is a MatchObject #I know ...
5
votes
11answers
810 views

What is the most dangerous feature of C++? [closed]

I've heard lots of times that phrase of Bjarne Stroustrup "C++ makes it harder to shoot yourself in the foot; but when you do, it takes off the whole leg" and I don't really know if it is as terrible ...
4
votes
2answers
105 views

How to systematically avoid unsafe pattern matching in Scala?

Consider the following broken function: def sum (list : Seq[Int]) : Int = list match { case Nil => 0 case head :: tail => head + sum(tail) } Here, the function was supposed to work with a ...
4
votes
4answers
168 views

Are C++ strings and streams buffer overflow safe?

If I use std::cin, std::cout and std::string, is there any possibility that someone will exploit the buffer overflow? I ask this because I still see a lot of people that still use null-terminated ...
4
votes
4answers
124 views

Is the pre-incriment operator thread-safe? (java)

I'm making a program in java that races a few cars against each other. Each car is a separate thread. When cars complete the race, each one all calls this method. I've tested the method at varying ...
4
votes
1answer
123 views

Thread safety in Python (Question how it works)

I've read through the documentation on threading for python and as I've pereceived it the following should hold true: You can access (read) any PoD or python specific object (such as an array) without ...
4
votes
3answers
100 views

Is safe ( documented behaviour? ) to delete the domain of an iterator in execution

I wanted to know if is safe ( documented behaviour? ) to delete the domain space of an iterator in execution in Python. Consider the code: import os import sys sampleSpace = [ x*x for x in range( 7 ...
4
votes
3answers
166 views

jquery ajax calls with scope safety

My gut tells me that if i am on a laggy server and the user fires two events fast enough on the success function c will be the value of the most recent event causing func1 to use the wrong value. ...
4
votes
4answers
3k views

How to prevent SQL Injection attack in applications programmed in Zend Framework?

I don't have any concept about ZF safety. Do I have to use Filter when operating on database? Maybe binding is enough ? How about this: $users->update($data, 'id=1'); Should $data array be ...
4
votes
8answers
664 views

C# - Executables decompilable (can be reverse engineered)?

Is that right that C# can be reverse engineered? How is easy to do that? Can we say the C# is not enough good from safety aspect? And what about C++ compared with C# against decompiling?
3
votes
2answers
101 views

How to check for changes to the program code while I am running it

Hello fellow developers, assume I had a program that required authorization granted to him by a server over the network. Obviously, at some point within my code there would be something along the ...
3
votes
1answer
111 views

Why is cross-domain JSONP safe, but cross-domainJSON not?

I'm having trouble connecting some dots having recently learned of JSONP. Here's my understanding: Cross-domain XmlHttpRequests for any content (including JSON) is banned, due to the same origin ...
3
votes
2answers
109 views

Security in the codeigniter

Good afternoon, I'm having some doubts about the safety in CodeIgniter, the first is: I have a controller: news.php, and in it I have a method called view Example: class News extends ...
3
votes
3answers
96 views

MD5 security is fine?

Im new at coding so Maybe I've missed the point of what md5 is about. But from what' i've experienced MD5 encryption is "static" for each word. By static i mean you will always find the same result ...
3
votes
1answer
478 views

How to detect that the app is running on a jailbroken device?

i just have release my app in ios, but i'm not sure how to make my app safe from the jailbrakers. Can i do something to make my app can not be jailbrake? or maybe there are some suggestion for me?? ...
3
votes
4answers
83 views

way to warn developers they are on Production site

We have a web app deployed in several environments (Dev, QA, etc.) as well as Production. Ironically enough, the non-production sites have prominent markings saying what environment it is, but ...
3
votes
2answers
232 views

Is there a safe check I can do before calling DateTime.AddMonths(int months)?

If I call AddMonths on a DateTime object using an int that is too large, I get an ArgumentException thrown in my face with a polite message that says, "The added or subtracted value results in an ...
3
votes
3answers
813 views

What is the correct way to make web form input safe for a variety of contexts?

What do you all think is the correct (read: most flexible, loosely coupled, most robust, etc.) way to make user input from the web safe for use in various parts of a web application? Obviously we can ...
3
votes
1answer
2k views

Is the static safe in Android?

I use a single static class in my code that defines a static field which I'm reusing between Activity onStop/onStart invocations. Here's a scenario: User clicks on "Authorize" button (static data is ...
3
votes
1answer
291 views

Functional programming in nuclear plants?

After reading this question I just wondered whether it would be a good idea to use Haskell (or other functional programming languages) in mission critical industries. Apart from Erlang, most ...
3
votes
4answers
2k views

C# thread safety of global configuration settings

In a C# app, suppose I have a single global class that contains some configuration items, like so : public class Options { int myConfigInt; string myConfigString; ..etc. } ...
3
votes
5answers
542 views

Bad handling of PHP sessions variables?

I'm currently using the following code in my cms to check if visitor is logged in as admin so that he can edit the current page: if($_SESSION['admin']=="1") { echo "<a ...
3
votes
1answer
1k views

Is SQLite thread safe under this situation?

I require database access operations from several threads, through a singleton object, which holds a database connection. I read from SQLite3's website, saying that 'an sqlite3 structure could only be ...
2
votes
4answers
69 views

JavaScript: What will break, and what will break it?

Potentially dangerous code below, line 2 Repeat: POTENTIALLY DANGEROUS CODE BELOW var history = ""; for (start = 3; start = 1000; start += 1){ if(start % 5 == 0 || start % 3 == 0) history += ...
2
votes
2answers
58 views

Cookie safety issues

How can I remember a user that is logged in without having a security issue? Currently, I am storing the id and a guid into two different cookies and compare them when there is no session alive. If it ...
2
votes
8answers
160 views

How safe is the data inside private field values in a class, and how to make it safer?

I have a class that preloads some values inside its private fields and those fields are used in further calculations. I'm interested from that point on, how safe is that data-- how easily can it be ...
2
votes
4answers
332 views

Runtime.getRuntime().exec(String[]) safety

I'm using Runtime.getRuntime().exec(String[]) to run processes where some of the elements of the String array are defined by the user. Is this safe? Or will it allow to inject code into the terminal? ...
2
votes
3answers
732 views

How do I send email from C# without revealing my password?

I found a great way to send email in C#, except for one problem, I have to show my password. If anyone were to disassemble my program, or if I decided to make it open source (which I probably will) ...
2
votes
2answers
162 views

C# anonymus delegates efficiency/safety

I have progress form which delegate: // in ProgressForm thread public delegate void executeMethod(object parameters); private executeMethod method; public object parameters; ...
2
votes
4answers
267 views

Exception free tree destruction in C++

I have recently managed to get a stack overflow when destroying a tree by deleting its root 'Node', while the Node destructor is similar to this: Node::~Node(){ for(int i=0;i<m_childCount;i++) ...
2
votes
3answers
432 views

Singleton's stateless instance method thread safety (C#)

Is it thread safe to make Converter a singleton? public interface IConverter<TFoo, TBar> where TFoo : class, new() where TBar : class, new() { TFoo ToFoo(TBar q); TBar ...
2
votes
3answers
281 views

Int-UserID and Session in ASP.Net unsafe?

I am developing my login for my new homepage. Now I found out, that I must save something like the userID (or another value that i can recognize my user) in the session variable of the browser. At ...
2
votes
5answers
187 views

How to make my software safer from using without purchasing?

Consider I have created software and want to make that soft to be activated via internet if it is being purchased (more precisely, if a license has been purchased). What is the contemporary way of ...
2
votes
5answers
188 views

File Exists Safe?

if (file_exists("pages/$page.php")) { include($page.'.php'); } Is this safe? With Safe i mean that you cant include remote scripts etc
2
votes
7answers
210 views

Photo safety on my website

Hi I created a website from scratch using HTML and style sheets by following a "How to...." book so I am at a very basic level of knowledge. My question is I have photos on my site wonder how safe ...
2
votes
2answers
633 views

PHP safety with include

How safe would you say this is? $pages = array("about", "help", "login"); $pagesWithId = array("shownews", "showuser", "showfile"); if (in_array($_GET['page'], $pages)) { ...
2
votes
9answers
357 views

Why do safety requirements like to discourage use of AI?

Seems that requirements on safety do not seem to like systems that use AI for safety-related requirements (particularly where large potential risks of desctruction/death are involved). Can anyone ...
1
vote
2answers
36 views

Website safe ruby script execution by user

suppose that i want to provide user possibility to put code into textarea and execute it for education purposes. for example user fills input with print "hello" he submits form -> code is processed ...
1
vote
4answers
47 views

Making users able to submit code what to replace in php?

Hi i'm planning to make users able to submit some pieces of code (php,java,javascript c++, etc... whatever they want i mean). so does anyone can suggest me the best practice to make it safety for my ...
1
vote
2answers
106 views

help me design my login.jsp page

I want user to provide login + password to login to my webapp. If he fails some times captcha comes to action. I wonder what can I do, to remove java code from it, and to make it more readable and ...
1
vote
2answers
89 views

WPF DataBinding Thread Safety

I have a TextBox that's bound to a property that gets modified at a very rapid rate in a background thread. Is data binding in WPF thread safe? Will the data in the property or the TextBox ever get ...

1 2