The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
5answers
25k views

PHP echo vs PHP short tags

Are they equal in safeness? I was informed that using <?=$function_here?> was less safe, and that it slows down page load times. I am strictly biased to using echo. What are the ...
13
votes
10answers
2k views

Python, safe, sandbox

I'd like to make a website where people could upload their Python scripts. Of course I'd like to execute those scripts. Those scripts should do some interesting work. The problem is that people could ...
10
votes
7answers
2k views

How to safely write to a file?

Imagine you have a library for working with some sort of XML file or configuration file. The library reads the whole file into memory and provides methods for editing the content. When you are done ...
25
votes
8answers
14k views

Is there a way of making strings file-path safe in c#?

My program will take arbitrary strings from the internet and use them for file names. Is there a simple way to remove the bad characters from these strings or do I need to write a custom function for ...
8
votes
2answers
2k views

$SAFE on ruby

I want to be able to run unstrusted ruby code. I want to be able to pass variables to said untrusted code that it may use. I also want said code to return a result to me. Here is a conceptual example ...
0
votes
4answers
190 views

“this” reference escaping during construction?

If I do the following, final class FooButton extends JButton{ FooButton(){ super("Foo"); addActionListener(new ActionListener(){ @Override public void ...
4
votes
5answers
732 views

Is mysql auto increment safe to use as userID?

I am working on website that allows people to create profiles online. I was wondering if it is the right choice to use MySQL AUTO_INCREMENTed IDs as my user ids. Also bearing in mind that I might have ...
3
votes
2answers
239 views

Is it safe in Perl to delete key from a hash reference when I loop on the same hash ? And why?

I basically want to do this: foreach my $key (keys $hash_ref) { do stuff with my $key and $hash_ref # delete the key from the hash delete $hash_ref->{$key} ; } Is it safe ? And why ...
3
votes
4answers
4k views

True Unsafe Code Performance

Good morning, afternoon or night, I understand unsafe code is more appropriate to access things like the Windows API and do unsafe type castings than to write more performant code, but I would like ...
8
votes
4answers
2k views

Threadsafe collection without lock

I am preparing myself for an interview and I came across the followign question. I tried but I could not find anything which can create a class containing thread safe collection without "lock". If ...
6
votes
11answers
803 views

Can a secret be hidden in a 'safe' java class offering access credentials?

This is a brainstorming question about what's possible in Java (or not). I want to know if it is possible to hide a secret within a class and prevent anymore from accessing it using Java code or any ...
4
votes
3answers
1k views

Best way to create SEO friendly URI string

The method should allows only "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-" chars in URI strings. What is the best way to make nice SEO URI string?
3
votes
3answers
157 views

Is this a safe way to filter data and prevent SQL-injection and other attacks?

I created two simple functions to filter inserted data before it's entered into a mysql query. For formfields (I am also using regular expressions to check each field individually. // Form filter ...
2
votes
5answers
865 views

Is there any safe refactoring tool for .net (or at least c#)?

I recently read Michael C. Feathers' book Working effectively with legacy code and came across the point where he mentioned a way to test the safety of automatic refactoring tools. My question is: ...
2
votes
3answers
329 views

java expression language that can't access 'unsafe' java methods

I am working on a project where I will let users submit small 'scripts' to the server, and I will execute those scripts. There are many scripting languages which can be embedded into a Java program, ...
1
vote
1answer
367 views

git - reorder commits safely

I've discovered that reordering commits via git rebase -i may not produce the same end result tree when dealing with removed files -- and may do so with no warning or error message. Take the ...
0
votes
0answers
188 views

PDO maturity in PHP 5.2.13 [closed]

How mature is PDO for PHP 5.2.13 for a serious project? (By serious I mean a script that is going to be sold and deployed in different platforms and environments. Something not serious would be for ...
0
votes
3answers
3k views

100% safe photo upload script

Question is simple. How can I make 100% safe photo upload script with php? Is there any tutorials which shows all possible safeness's gaps? Do not offer me to look this question ...
5
votes
9answers
2k views

Is it safe to reuse pointers variables after freeing what they point to?

Is it safe and predictable to reuse pointers after freeing the data they point to? For example: char* fileNames[] = { "words.txt", "moreWords.txt" }; char** words = NULL; int* wordsCount = NULL; for ...