Tagged Questions
The safe tag has no wiki summary.
12
votes
6answers
513 views
Is it safe to use user input for Python's regular expressions?
I would like to let my users use regular expressions for some features. I'm curious what the implications are of passing user input to re.compile(). I assume there is no way for a user to give me a ...
12
votes
6answers
7k 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 ...
9
votes
4answers
10k 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.
So I am now strictly biased to using echo.
I just wanted to know ...
6
votes
11answers
513 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 ...
5
votes
8answers
459 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 ...
5
votes
4answers
405 views
Is it safe now to develop web application with HTML 5 specifications?
Is it safe now to develop web application with HTML 5 specifications? or should we wait longer for final standards?
I want to start developing a new project. I want it to be up to date in every ...
5
votes
1answer
846 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 ...
4
votes
3answers
84 views
Can I detect older monitors and supply them with web-safe colours?
I want to use non-web-safe colors in several places on my website, including for the background. But I am concerned about visitors with older computers.
Is there any code I can use that will change ...
4
votes
3answers
470 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?
4
votes
8answers
856 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 ...
4
votes
9answers
1k 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 ...
3
votes
3answers
83 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
...
3
votes
5answers
98 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
4answers
175 views
Is it safe to use code from code.jquery.com for long-term application?
I am using Ajax / jquery on a webpage i am designing... in order for it to function, i include (at the top of my page) the javascript at: http://code.jquery.com/jquery-1.4.4.js
This works great and ...
3
votes
2answers
492 views
Is WCF ClientBase thread safe?
I have implemented ClientBase to use WCF to connect to a service. I'm then calling a method on the channel to communicate with the service.
base.Channel.CalculateSomething();
Is this call thread ...
3
votes
5answers
329 views
Unsafe to throw exceptions from statically linked C++ libraries?
I've heard that throwing exceptions in/from a C++ library could be potentially dangerous, particularly with DLLs, and particularly if the calling code and the library are compiled with different ...
3
votes
6answers
1k views
PHP include() alternative?
I want to know if my code is safe and if there are other safer alternatives to include external files..
So this is my code example, is it safe? How can I make it safer? Thanks!
<?php ...
3
votes
3answers
1k views
Thread-safety and concurrent modification of a table in SQLite3
Does thread-safety of SQLite3 mean different threads can modify the same table of a database concurrently?
2
votes
1answer
59 views
What's the difference between safe, regular and atomic registers?
Can anyone provide exhaustive explanation, please? I'm diving into concurrent programming and met those registers while trying to understand consensus.
From Lamport's "On interprocess communication": ...
2
votes
3answers
95 views
Javascript security question / Using eval()
I'm seeing code in the following form - is such use of eval() safe?
function genericTakeAction(frm_name,id,pagenum,action)
{
var rset=eval("document."+frm_name);
var ...
2
votes
5answers
334 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
2k views
PHP-MySQL-How to safely increment MySQL integer field?
I wan to increment a field value safely using php and mysql.
what type of table/field must I use?
is there a minimum version of MySQL I must use?
what's the sql code for this, safe transaction for ...
2
votes
2answers
318 views
Thread safe char string in C
In C:
If I have 3 threads,
2 threads that are appending strings to a global char string (char*),
and 1 thread that is reading from that char string.
Let's say that the 2 threads are appending about ...
2
votes
3answers
232 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, ...
2
votes
3answers
221 views
Is there a truly safe formatting library for C?
Bearing in mind the answers given to a question about a safer formatting library for C, I'm wondering whether there is a safe C formatting library?
What I mean is:
there's no possibility to ...
1
vote
2answers
55 views
C++ Thread safe vector.erase
I wrote a threaded Renderer for SFML which takes pointers to drawable objects and stores them in a vector to be draw each frame. Starting out adding objects to the vector and removing objects to the ...
1
vote
1answer
35 views
lock iList .net thread safe
Im just confused why adding to a list would not be thread safe like below
object aLock = new object();
List<string> aList = new List<string>
lock(aLock)
aList.Add("abc");
Not sure ...
1
vote
1answer
67 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 ...
1
vote
2answers
93 views
php make posts safe
I am having trouble with the simplest of tasks.
The html page has a single textarea tag that sends the data to a php file using $.get() with jquery
From there I use a variety of methods from ...
1
vote
3answers
109 views
Is this password storage method secure?
I was just thinking if creating a password hash by using a salt created from the password himself is safe to use. Here an example in php:
<?php
$pass = $_GET['pass'];
$salt = hash('whirlpool', ...
1
vote
2answers
143 views
Thread safe logging Form
I have Form responsible for logging all neccessary informations from all thread into its richTextBox. I use Invoke when I want to access its controls from diffrent threads (to append text to ...
1
vote
0answers
153 views
Java: delete .lck files and ensure file writing
My program (a server) has a logger, it is an attribute of the main server class and it is used by all the other classes to log an error. Is there a way to delete the .lck files when the program ...
1
vote
1answer
99 views
WindowsCE 5.0 safe tcp ports
What ports are safe to use for custom applications under WindowsCE?
For example if I use something around 3000 (3000, 3002 tested) it works. But if I use 4000, 11000 (tested), it does not work: it ...
1
vote
4answers
249 views
C++ Need thread safe wel tested containers (non microsoft)
Any one having idea about thread safe data containers like queue, map?
I dont want threadsafe STL when we use /MT switches for compiler.
A real thread safe wel tested STL containers.
1
vote
3answers
609 views
VB.net avoiding cross thread exception with extension method
Hello
I am trying to implement a solution for updating form controls without using a delegate.
I am attempting to use the 1st solution on this page:
...
1
vote
1answer
553 views
Is MySQL safe mode the default mode?
I just upgraded my Mac from Leopard to Snow Leopard and in the process my web development environment broke. I have managed to fix a weird "bug" in Apache that didn't happen before and I have restored ...
1
vote
3answers
185 views
When should I use escape and safe in Django's template system?
If I have a box where people put comments, and then I display that comment like this...should I escape?
{{ c.title }}
1
vote
1answer
388 views
PHP (external) safe image with cache?
Is there a way to display external images with PHP having cache?
I want display images like:
www.domain.com/safe_image.php?url=external.site.jpg
Basically like what Facebook does.
What's best way ...
1
vote
2answers
150 views
How to use VSS for Database management same as for source code?
Thanks in Advance..
I want to put a question to solve my problem, the question is that how is the way to use database (Trigger, Sps, and other elements) in VSS same like using source code in VSS and ...
1
vote
4answers
688 views
Safe placement new & explicit destructor call
This is an example of my codes:
template <typename T> struct MyStruct {
T object;
}
template <typename T> class MyClass {
MyStruct<T>* structPool;
size_t structCount;
...
1
vote
1answer
462 views
create safe title from string
moving a lot more of my old php functions to jquery alternatives. I'm a bit stuck on creating a decent preg_match function.
Is there an easy way to make strings url safe & seo'd?
php;
function ...
1
vote
1answer
144 views
A SAFE way to pass an array or arrys[][] in C# to a DLL
I have an array of arrays that I want to pass into a DLL. I am running into the error "There is no marshaling support for nested arrays."
I can pass a single array in fine but if I stack them up it ...
1
vote
3answers
178 views
Pattern for compile time discovery of unsafe/wrong queries
My team is developing a large java application which extensively queries a MySQL database (in different classes and modules).
I'd like to known if there is a pattern that allows me to be notified at ...
0
votes
0answers
17 views
include() warning - SAFE MODE Restriction in effect
I just switched from the development server to a new, live one. I've been having a slew of different problems but this is the latest. When a user creates an account, it creates a profile page for them ...
0
votes
4answers
39 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 ...
0
votes
1answer
98 views
Thread safe adding of subitem to a ListView control
I'm trying to convert an old Windows Forms Application to a WPF application.
The following code no longer compiles under C# .NET 4.0:
// Thread safe adding of subitem to ListView control
private ...
0
votes
0answers
57 views
Can not make cache safe url
I am working with Sharepoint 2007 and VS 2008. I created a web part with user control which refrences some external files (js,css and images). I deployed both the web part and the external files ...
0
votes
3answers
82 views
What does SAFE[] means here? [closed]
So I look at UrlEncode function from here:
std::string UriEncode(const std::string & sSrc)
{
const char DEC2HEX[16 + 1] = "0123456789ABCDEF";
const unsigned char * pSrc = (const unsigned ...
0
votes
1answer
66 views
Loki's SetLongevity function seems unsafe to me, is that so?
There is a global variable called "pTrackerArray", which is used in Loki's SetLongevity function.
Declaration of pTrackerArray:
typedef std::list<LifetimeTracker*> TrackerArray;
extern ...
0
votes
0answers
60 views
A complete list of unsafe string handling functions and their safer replacements for linux
I am looking for something like that:
strcpy -> strncpy
sprintf -> snprintf
etc
Google does not know I a'm afraid. Do you?