Tagged Questions

A security anti-pattern in which secure information is "protected" by making it "hard to find" in the mistaken belief that it is then secure. It is the approximate equivalent of hiding the front door key under the mat.

learn more… | top users | synonyms

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 ...
5
votes
6answers
492 views

Make an application that “encrypts” a string with a given key and can easily be reversed

After the success of last weeks Code-Bowling, we present you yet another chance to write the worst code you have ever written. Code-Bowling is a challenge for writing the most obscure, ...
4
votes
3answers
161 views

How to hide literals in code

What are the main existing approaches to hide the value of literals in code, so that they are not easily traced with just an hexdumper or a decompiler? For example, instead of coding this: ...
3
votes
1answer
226 views

How to monitor user action on .NET web browser control without obfuscation?

I have embedded web browser control in WinForms app. The user makes some actions on site that doesn't belong to me. At the end (eg. on last page) I need to send confirmation to my server (eg. via web ...
3
votes
5answers
399 views

Is it possible to have an open source implementation of DRM software?

I am curious to know if anyone has figured out a way to create the server portion of DRM in an open source manner while allowing for DRM clients to be closed. I understand that if the client were open ...
1
vote
2answers
182 views

How to obscure Wordpress?

I am running a site using Wordpress as CMS System. Now I don't want anyone to know that this site is powered by Wordpress in the background. Is there any easy way to completely obscure Wordpress? ...
1
vote
2answers
136 views

Obfuscation in .NET vs. Delphi

I have old Delphi application. This app takes session key from server, do some stuff with secret using this key like hashing etc. and post back cipher to the server. Server knows how to retrieve data ...
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
376 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. ...
1
vote
6answers
526 views

Masking an external URL

I need to be able to open up an external URL in my website with out revealing it to my users (both in the browser and in the source). I do not want them to be able to copy the URL and edit the query ...
0
votes
2answers
57 views

What techniques are available to obscure shader assets?

I have a number of shaders in my games and apps, I currently use a simple program I made to take the shaders and generate a java class which puts the text into a StringBuilder, one char at a time, so ...
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
106 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 ...