Tagged Questions
29
votes
16answers
14k views
Encrypting/Hashing plain text passwords in database
I've inherited a web app that I've just discovered stores over 300,000 usernames/passwords in plain text in a SQL Server database. I realize that this is a Very Bad Thing™.
Knowing that I'll have to ...
26
votes
14answers
2k views
Why is security through obscurity a bad idea?
I recently came across a system where all of the DB connections were managed by routines obscured in various ways, including base 64 encoding, md5sums and various other techniques.
Is it just me, or ...
8
votes
8answers
299 views
Isn't a password a form of security through obscurity?
I know that security through obscurity is frowned upon and considered not really secure, but isn't a password security through obscurity? It's only secure so long as no one finds it.
Is it just a ...
6
votes
12answers
2k views
Is using a GUID security though obscurity?
If you use a GUID as a password for a publicly facing application as a means to gain access to a service, is this security through obscurity?
I think the obvious answer is yes, but the level of ...
1
vote
7answers
230 views
I want to use security through obscurity for the admin interface of a simple website. Can it be a problem?
For the sake of simplicity I want to use admin links like this for a site:
http://sitename.com/somegibberish.php?othergibberish=...
So the actual URL and the parameter would be some completely ...
1
vote
6answers
375 views
The best approach to scramble CSS definitions to a human-unreadable state throughout an ASP.NET application
I'm not sure if it will bring anything beyond saving on traffic through the removal of long-worded names, but I would definitely want to hide my system of namings, declarations and their organization.
...
0
votes
0answers
139 views
When might “security through obscurity” be appropriate? [closed]
The aphorism "security through obscurity" suggests that hiding information provides some level of security. In what types of situations might this approach of hiding information add appreciably to the ...
0
votes
1answer
105 views
Security by obscurity: what about URLs?
first of all, the question from a naive point of view:
I've got a WebApplication with a URL to a product like Products?id=123. Let's say I've got an administration page reachable from ...