The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
6 views

Is GenericObjectPool<T> from commons.apache.org thread safe?

Is GenericObjectPool from commons.apache.org thread safe ? I am most interested in the operations borrowObject() and returnObject(). Thank you in advance for the replies.
-1
votes
0answers
48 views

I made a PHP contact form that goes to multiple addresses based on drop down selection, how do I determine if my code is safe? [closed]

I followed a tutorial to create a PHP contact form that sends to multiple emails depending on drop down field selection. I have included the PHP below. Is it protected from spam/other dangers? Or is ...
0
votes
0answers
28 views

How SafeHtml & SafeUri deal with malicious image?

Pls read this scenarios: -You build a program that allows user to insert Image or Image URL into 1 field in a table in DB. For example, table imgTbl has imgCol which contains ...
0
votes
1answer
53 views

For SafeHtml, Do we need to sanitize the “link” in <img src=link> tag, GWT?

I got a textbox that allows users to put image link (ex: http://abc.test.gif) & another textbox that allows user to put Alternate text (ex: "This is test.gif"), & a submit button. When a ...
1
vote
1answer
37 views

When modifying SimpleHtmlSanitizer.java, how to deal with <a href=> (Gwt)?

You know that SimpleHtmlSanitizer.java only accepts the following markup ("b", "em", "i", "h1", "h2", "h3", "h4", "h5", "h6", "hr", "ul", "ol", "li"). It is good but I want "u", "sub", "a href=" & ...
0
votes
1answer
38 views

For setHTML() method, is it still safe If we do not use Safehtml but we validate the String & only accept some limited html tag (Gwt)?

Any widget that has setHTML method could give a hole in security system, but if we validate String & only accept some limited html tags such as <b>, <i>.... And then we put this string ...
0
votes
1answer
60 views

Why SafeHtml only shows plain text & does not show formmatted text (GWT)?

HTML myHtml=new HTML(SafeHtmlUtils.fromString("<i>Test</i>")); HTML myHtml2=new HTML("<i>Test2</i>"); testHTMLPanel.add(myHtml); testHTMLPanel.add(myHtml2); ...
0
votes
1answer
32 views

Cross threading exception avoided but GUI isn't updating

I have a thread which needs to update a Windows form. Using the code from here: http://www.dreamincode.net/forums/blog/143/entry-2337-handling-the-dreaded-cross-thread-exception/ to avoid ...
0
votes
1answer
54 views

Deadlock -Safe Sequence and Un Safe Sequence

Consider a system with 9 units of a resource, and three processes, P1, P2, and P3, with maximum resource usage limits of 5, 4, 4, respectively. P1 has a usage sequence of A4, A1, R5; P2 has a usage ...
0
votes
2answers
77 views

Safe disk operations with C#

I have a following question. Right now, we are writing out config files at shutdown. It happened that the user got a process kill during writing which resulted in corrupt configuration. Thus I have to ...
0
votes
1answer
57 views

Is it safe to access SDL_Surface's pitch data member if the surface is locked?

I have the following code in my font rendering test: SDL_Surface* image = SDL_CreateRGBSurface(SDL_SWSURFACE, face->glyph->bitmap.width, ...
0
votes
3answers
99 views

I want to get a tip of rm command filter by using bash script

Some weeks ago, a senior team member removed an important oracle database file(.dbf) unexpectedly. Fortunately, We could restore the system by using back-up files which was saved some days ago. After ...
0
votes
2answers
90 views

How to create safe scripts PHP + jquery

From my phpwebsite, when users need to create a new post (for example), I'm sending a jquery/post to one phpscript to do this action. But this is not safe, I mean, everyone could send a fake ...
2
votes
1answer
241 views

is @Autowired HttpSession thread safe in springmvc?

i am use HttpSession object in springmvc with Autowired: public abstract class UserController { @Autowired public HttpSession session; @RequestMapping(value = { "" }, method = { ...
-1
votes
2answers
112 views

Is my php website safe? [closed]

I am busy building a custom CMS with a lot of features which include API's (so accessing other websites). For safety measures I protected all Mysql inputs with mysql_real_escape_string, strip_tags ...
0
votes
0answers
15 views

How do I create a secondary thread?

I'm creating a class called, and it the class's constructor, I must create a secondary thread and execute the class's add method on the secondary followed by the primary thread. My question is, how do ...
0
votes
0answers
52 views

I would like to hack a safe. More specifically, I would like to buy a safe that can be computer controlled. Arduino? [closed]

Basically I want to hack a safe to operate according to a simple program. This program could be in any language, but all it needs to do is make the safe be "open-able" between certain hours of the ...
2
votes
0answers
62 views

mysqld_safe is causing problems at login [closed]

I'm running ubuntu 10.04 and recently have installed mysql server 5.1 but when i tried to log in, it showed me an error like this: can't log in to mysql server through /var/run/mysqld/mysqld.sock ...
0
votes
0answers
22 views

Use Session Attribute In Safe Way

I'm using Servlet and Jsp. When i need to access in a restricted area then the associated Servlet performs a control. It checks if the boolean variable "Logged" is true to allow the access, otherwise ...
0
votes
5answers
105 views

Launching 'safe' eval()

I m making a irc bot https://github.com/mouuff/MouBot I would like the bot to reply the eval() when the message starts with !math but its creating failures if the user enter something like !math ...
0
votes
2answers
274 views

Wordpress PHP Safe mode [duplicate]

Possible Duplicate: Is setting the uploads folder 777 permision secure? I am using WordPress on my new host, and when I try to install a plugin I get this; Warning: touch() ...
7
votes
4answers
94 views

When PHP code should really be treated as unsafe?

Yesterday I took a part in interview for PHP developer postion. My job was to solve 15 questions quite simple test. One of the questions was to decide wether code similar to below should be treated as ...
0
votes
6answers
90 views

Is reference update thread safe?

public class Test{ private MyObj myobj = new MyObj(); //it is not volatile public class Updater extends Thred{ myobje = getNewObjFromDb() ; //not am setting new object } public ...
1
vote
1answer
206 views

HtmlUnit: one WebClient per thread - is it thread safe?

I have many threads. Each thread creates and uses it's own WebClient (HtmlUnit framework). No one thread uses WebClient's instance from other thread. Is it thread safe?
0
votes
2answers
92 views

Avoiding partially written files in Python

What is the "safest" way to write files in Python? I've heard about atomic file writing but I am not sure of how to do it and how to handle it.
0
votes
2answers
62 views

php exec() with constant parameter, secure?

We would like to generate mobi files on server side. For this we need to use kindlegen(to generate mobi from epub) from Amazon. I have read that enabling exec is not entirely safe, but my question is ...
1
vote
1answer
289 views

GAE Golang - html templates and data safety

When displaying a webpage through the use of html templates in Google App Engine Go application, does the passed data and/or raw template ever leave the App Engine, or just the final html output? For ...
1
vote
3answers
138 views

Are method level singleton instances Thread safe?

Are the operations on obj below thread safe? I know that method level variables and instances go on each thread's stack - but im not sure what will happen when the local variables is a singleton!! FYI ...
0
votes
1answer
72 views

implementing Js widget: Relying on $_SERVER['HTTP_REFERER'] variable to check on the host domain is safe?

I'm implementing a Js widget , the widget with source code is on domain1.com the host of the widget(viewer) is on domain2.com On domain1.com I'm using PHP as server scripting language. What I need ...
2
votes
4answers
319 views

Will memcpy or memmove cause problems copying classes?

Suppose I have any kind of class or structure. No virtual functions or anything, just some custom constructors, as well as a few pointers that would require cleanup in the destructor. Would there be ...
3
votes
1answer
180 views

PostSharp OnMethodBoundaryAspect Not Thread Safe

I'm trying out PostSharp AOP and am surprised that OnMethodBoundaryAspect is not thread safe. The same instance of the aspect is shared between method calls. This makes its utility quite limited in ...
2
votes
1answer
610 views

Qt QTimer is it safe to stop it this way?

Is it safe to stop Qt's timer in it's "timeout" signal/slot function? Can't seem to find any information in Qt documentation about the QTimer. I have created a timer that is periodically sending a ...
3
votes
2answers
272 views

“no warnings;” in a Safe compartment

I am using reval from Perl's Safe module and I want to prevent it from generating warnings if the string being eval'ed can't be parsed (actually, I want to prevent it from generating any warnings at ...
0
votes
1answer
78 views

what is more secure way to send sensitive data in MVC3

Could you please advice me what is more secure way and what procedure to follow. I have this page with password and other data to be sent. So what is the more secure way to send it in MVC3: 1) with ...
-4
votes
3answers
65 views

How to make my ajax requests safer? [closed]

Like a lot of you guys know that the javascript functions or methods can be ran through browser adress bar. I want to prevent that happening by what kind of concept i should use where user may NOT ...
1
vote
1answer
187 views

Terminate Thread in hidden code for CANBus adapter

I am working with a CANBus adapter while currently writing code for it in Microsoft Visual C# 2010 Express. I am trying to make a GUI that runs a separate thread for reading in messages from a ...
0
votes
3answers
822 views

100% safe way of storing html in MySQL [closed]

I'm working on a project where the public (so everyone) is allowed to insert HTML through TinyMCE for their own project page. Since everyone is allowed to use this feature, I need a 100% safe way of ...
0
votes
1answer
68 views

How to secure multiple select box options?

Do you need to secure multiple select boxes being that the options are already set rather then user input? I use this function to secure regular inputs: function keepmesafe($input) { ...
2
votes
1answer
287 views

Is this python code thread safe (thread with twisted)?

I am writing an application to collect UDP messages and process them every 1sec. Application prototype looks like: from twisted.internet.protocol import DatagramProtocol from twisted.internet import ...
1
vote
3answers
449 views

Adding one digit (0-9) to the sequence/string creates new 4 digits number

I'm trying to find an algorithm which "breaks the safe" by typing the keys 0-9. The code is 4 digits long. The safe will be open where it identifies the code as substring of the typing. meaning, if ...
-3
votes
2answers
105 views

Creating php form with multiple outcomes [closed]

This image will hopefully explain my problem
0
votes
1answer
158 views

python/twisted, t.w.s.Site: safe shutdown

Having class CnxAwareSite(server.Site): def __init__(self, *args, **kwargs): server.Site.__init__(self, *args, **kwargs) self.cnx_cnt = 0 def buildProtocol(self, addr): ...
3
votes
1answer
117 views

C# Mixed Unsafe/Safe Library

I'm slowly building a code libary for use across several applications. Some of the code is processing images and pre-existing message formats (converted from C++) so unsafe code is required. Any ...
2
votes
2answers
193 views

Making a block of “unsafe” code “safe”

I have this unsafe code that I need to make safe so it can execute. I know about the fixed block, but I don't know how to implement it: private static unsafe void PrintHex(byte* data, uint len) ...
0
votes
1answer
104 views

How to safely move an SQLite3 database?

I have a sqlite3 database that I created from Python (2.7) on a local machine, and am trying to copy it to a remote location. I ran "sqlite3 posts.db .backup posts.db.bak" to create a copy (I can use ...
3
votes
2answers
213 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 ...
4
votes
4answers
136 views

Is polling for a lock a correct way to implement critical sections?

If I have a critical section, I must implement a method of locking it. I saw the following variant: while(lock) { //do nothing } lock = true; // code of critical section lock = false; However, ...
1
vote
1answer
656 views

Upgrade native apache from 2.2.21 to 2.4.2 - Lion 10.7.4

As stated in the title, i have apache 2.2.21 running natively as part of my LAMP stack. I would like to upgrade apache to the latest version - 2.4.2. Is there a recommended or best practice to safely ...
7
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 ...
0
votes
1answer
89 views

Pymongo iteratively safe saving and counting

I'm trying to pick out unique elements from a collection of objects and then save them to a sub collection. The code I have is: for item in db.col1.find({'Summary': {'$ne':{}}}): current_specs = ...

1 2 3