0
votes
1answer
14 views
What browsers support Alpha channel in colors?
Since I'm always sticking to CSS 2, it was a (pleasant) surprise for me today to find out that CSS 3 supports alpha channels in colors. That allows for a nice range of effects. But …
4
votes
2answers
76 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 …
1
vote
3answers
38 views
Int-UserID and Session in ASP.Net unsafe?
Hi,
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 varia …
3
votes
9answers
155 views
Does proper office ergonomics equate to better safety and more production?
This question is directed more for the users who have experience in many different work environments.
My boss's brother works for a large oil and gas company, and I have heard sto …
0
votes
5answers
188 views
is this ok? salting
Hey i would like do have your input on this
I use this to generate unique salts to each of my users when they register (random letters and numbers). how big is the chance that sal …
0
votes
4answers
113 views
password encryption [beginner] [closed]
Possible Duplicates:
Simple password encryption
Best way to encode passwords in PHP
I'm fairly new with PHP and I'm currently looking into password encryption, whats the …
0
votes
2answers
44 views
MySQL shell/client: Read-only access, or “safe history” option?
Yesterday I was working on a shell script to perform some moderately complex table insertions to a MySQL database. Naturally I was keeping a mysql client shell window open to for …
3
votes
4answers
95 views
What can I do to protect myself as a contractor? [closed]
Around two years ago, I worked as a freelance web contractor, doing all the server-side coding for various websites. I got all my jobs through a specific woman, who was getting pai …
4
votes
8answers
223 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 decom …
2
votes
5answers
127 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 con …
1
vote
3answers
110 views
Echo/print a jpg-image with php, for safety?
Because of safety (check if user are logged in), I call a php-document when showing images.
<html>...
<img src="showImage.php?id=455" />
...</html>
showImage. …
0
votes
0answers
43 views
Implications to software development of safety level SIL 1
I have to develop a system with very little safety related issues. We would like to be compliant with SIL 1 safety level. What implications does it have to software development? Wh …
2
votes
5answers
126 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
3
votes
4answers
141 views
how safe are PDO prepared statements
Started using PDO prepared statements not too long ago, and, as i understand, it does all the escaping/security for you.
for example, assuming $_POST['title'] is a form field.
$t …
1
vote
3answers
128 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 applicatio …
