The safe tag has no wiki summary.
3
votes
5answers
711 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 ...
0
votes
0answers
187 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 ...
1
vote
4answers
1k 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;
...
0
votes
2answers
1k views
Atomic [move to another table, then delete original data]
I have a Data table and an Archive table.
A webapp pours data into the Data table, and a cron job pulls the data out every hour and archives it in the Archive table (this keeps the Data table small ...
0
votes
1answer
346 views
Need help with a PHP proxy script
I’m currently working on a small web app that allows people to search for music album covers. However, I’m having a problem getting my PHP proxy to work. Right now I’m using a simple PHP proxy script ...
3
votes
6answers
3k 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 ...
5
votes
4answers
474 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 ...
1
vote
1answer
944 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 ...
16
votes
3answers
13k views
PHP-MySQL-How to safely increment MySQL integer field?
I want 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 ...
12
votes
6answers
776 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 ...
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 ...
1
vote
1answer
321 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 ...
0
votes
0answers
616 views
Visual Source Safe adding my local directory structure when project is checked in
I have a VB.net 2005 application in My Documents/Visual Studio.net 2005/Projects folder.
When I Add the project to source safe it is adding it in a wierd folder structure like C:\documents and ...
23
votes
5answers
24k 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 ...
0
votes
6answers
158 views
Is this fileuploading script safe?
Hi is this totally safe or not? I would like a totally safe fileuploading script for my new project. Thanks in advice. Here is the one i found:
<?php
if ((($_FILES["file"]["type"] == "image/gif")
...
2
votes
2answers
463 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 ...
0
votes
2answers
150 views
iPhone dev - objects stay until user quits, don't release?
In in my app, say it count downs to something and at the end just beeps forever until the user quits the app, is it safe to say have an NSTimer and never release (or in NSTimer's case, invalidate it) ...
2
votes
3answers
326 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
284 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 ...
4
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 ...
1
vote
3answers
194 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 ...
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 ...
