Tagged Questions
The protection tag has no wiki summary.
133
votes
12answers
37k views
Secure hash and salt for PHP passwords
It is currently said that MD5 is partially unsafe.
Taking this into consideration, I'd like to know which mechanism to use for password protection.
Is “double hashing” a password less secure than ...
80
votes
28answers
9k views
How do you protect your software from illegal distribution?
I am curious about how do you protect your software against cracking, hacking etc.
Do you employ some kind of serial number check? Hardware keys?
Do you use any third-party solutions?
How do you ...
17
votes
9answers
1k views
How effective is obfuscation?
A different question, i.e. Best .NET obfuscation tools/strategy, asks whether obfuscation is easy to implement using tools.
My question though is, is obfuscation effective? In a comment replying to ...
13
votes
7answers
1k views
Software protection for small vendors
This is a problem we all have to consider at some point.
After many years and many approaches I tend to agree in general with the staterment:
"For any protected software used by more than a few ...
13
votes
15answers
3k views
Software protection by encryption
For our software we use hardware dongles to protect the software. No protection is perfect but this commercial solution is affordable and keeps honest people honest (as mentioned in another thread). ...
11
votes
6answers
10k views
Client/JS Framework for “Unsaved Data” Protection?
Hey all- we have a typical web application that is essentially a data entry application with lots of screens some of which have some degree of complexity. We need to provide that standard capability ...
10
votes
4answers
479 views
Protection against cracking - specifically ways to make a program harder to decompile
I'm making a commercial product that will have a client and server side. The client is totally dependent on the server , just to make it harder to crack/pirate . Problem is , even so there is a chance ...
10
votes
14answers
986 views
Making commercial Java software (DRM)
I intend to make some software to be sold over internet. I've only created open-source before, so I have really no idea of how to protect it from being cracked and distributed as warez. Bearing in ...
9
votes
7answers
309 views
.NET: What is the best way to protect sensitive data in the code?
I was examining the ways of protecting my code from decompiling.
There are several good threads here describing obfuscation and code packing as the possible ways of protecting the code. However none ...
9
votes
4answers
150 views
Best means of licensing php software? [closed]
Ok, i have developed some php software that i sell to local companies. To ensure i dont get wripped off, to now i have had the software connect to my server check for a php license file and use its ...
9
votes
6answers
389 views
How to sell and protect software that has easily visible source (like Javascript)?
I have a unique idea for a browser based application that I'm considering developing and selling. The only problem is that it would all be HTML/Javascript based code. It is not a web-based service ...
9
votes
9answers
1k views
Protecting a high value C# application with only one user
I have a single application -- written in C# -- which is used by only one user. I provide this software for a very high monthly fee (> $10,000). I'd like to protect this application against use by ...
8
votes
8answers
702 views
How to protect a web server FROM a reverse proxy server
I have a website "www.website.com".
Recently I found out that somebody has set up a reverse proxy with an almost identical url "www.website1.com" in front of my website.
I'm concerned of those ...
8
votes
2answers
252 views
Who Uses Software Watermarking?
I'm a PhD student looking at software watermarking techniques and I always get asked 'who uses it?' The answer to which I don't know. There is a large amount of academic work on the subject (most ...
7
votes
13answers
882 views
How to protect your software code? [closed]
Possible Duplicates:
How do you protect your software from illegal distribution?
Best practice to prevent software copy
Hypothetical situation:
Lets say I have built a software product ...
7
votes
6answers
701 views
How can I avoid SQL injection attacks?
Yesterday I was speaking with a developer, and he mentioned something about restricting the insertions on database field, like, strings such as -- (minus minus).
At the same type, what I know is that ...
7
votes
9answers
1k views
Protection against automation
One of our next projects is supposed to be a MS Windows based game (written in C#, with a winform GUI and an integrated DirectX display-control) for a customer who wants to give away prizes to the ...
6
votes
11answers
513 views
Can a secret be hidden in a 'safe' java class offering access credentials?
This is a brainstorming question about what's possible in Java (or not). I want to know if it is possible to hide a secret within a class and prevent anymore from accessing it using Java code or any ...
6
votes
7answers
328 views
Protecting image media in an web application
we are maintaing a database of image media in a large scale webapplication. The high resolution jpgs are big (> 15MB) and must not be made available for download in any way. Now we need to provide ...
6
votes
13answers
1k views
What are some ways to protect emails on websites from spambots?
I'm creating a public internet facing website which contains the email address of their salespeople.
What kind of programming options do I have to generate the "mailto" and display the email from ...
6
votes
8answers
1k views
(Why) should I use obfuscation?
It seems to me obfuscation is an idea that falls somewhere in the "security by obscurity" or "false sense of protection" camp. To protect intellectual property, there's copyright; to prevent security ...
5
votes
5answers
336 views
Where should I store license data locally?
Currently, I do a database check every time a client opens my application — they enter their login information, and my app then runs their info through the database and see if it matches. It works ...
5
votes
6answers
676 views
How do I protect javascript files?
I know it's impossible to hide source code but, for example, if I have to link a JavaScript file from my CDN to a web page and I don't want the people to know the location and/or content of this ...
5
votes
2answers
3k views
How to detect a cracked iPhone App and a jailbroken device (different methods)
I'm building a blacklisting service for cracked iPhone apps and I am curious if I missed a method for detecting cracked apps.
In the moment following app crack detection methods are available for the ...
5
votes
3answers
291 views
Protecting DLL's
Quite a few people have really taken interest in the dll's ivé sent them, and they're not the type that should be given away for free too often...
I was just wondering, if I were to sell my ...
5
votes
4answers
1k views
Protecting the content of public/ in a Rails app
I'm maintaining a Rails app that has content in the public/ folder that will now need to be protected by a login. We're considering moving those folders of files into a path outside of public/ and ...
5
votes
6answers
141 views
Protecting Web Services
I've got a WebService project that we've created to expose some methods to our clients (specifically if they call one of the methods it will trigger an event on our servers) that they can call in ...
5
votes
4answers
2k views
Protect yourself against Dos attacks
This might be something more suited for Serverfault, but many webdevelopers who come only here will probably benefit from possible answers to this question.
The question is: How do you effectively ...
4
votes
2answers
147 views
Hide value of the secret key Air app
I am creating Air (AS3) project. It will be have own system of protection. All data from the server to the application and back is encrypted. I use a secret key which is registered in a server-side ...
4
votes
3answers
228 views
What's the protection flags of memory allocated by malloc?
According to this thread,memory allocated by malloc at least have PROT_READ | PROT_EXEC,otherwise the contaned function can't be executed .
man malloc doesn't mention anything about protection thus ...
4
votes
2answers
95 views
solution for multiple inheritance - with opportunity to change protection lvl
I need a solution for multiple inheritance. I know that I can use interfaces. That would be good solution but...
...I need opportunity to change protection level but fields of interface must be ...
4
votes
2answers
114 views
Silverlight hijacking question
Lets say my silverlight app uses Webservice to for example perform login operation and acquire security token to allow further calls to webservice.
And webservice sets clientaccesspolicy to only ...
4
votes
5answers
325 views
Protection level of a struct field within a class
I am fairly new to C# programming so this is likely a beginner's question.
I get a "'A.Test.That.Fails' is inaccessible due to its protection level" error on the following code snippet and I fail to ...
4
votes
6answers
308 views
How to secure proprietary software in an enterprise environment?
We need to secure a proprietary software that is built in .NET for Windows PCs, to limit usage only within the enterprise, and ensure that employees cannot steal or copy out the program even though ...
4
votes
4answers
381 views
How to protect my .net winforms assembly from customers of a customer
This question appears to have died, so I've decided to offer a bounty.
What I'm most interested in knowing is if my scenario in the ETA1 below is viable and is used. If it isn't, then a good ...
4
votes
1answer
82 views
Why can I access my private variables of the “other” object directly, in my equals(Object o) method
In Java in the equals(Object o) method I can access the private variables of the passed in object without going through its public getters.
public boolean equals(Object o){
...
MyObject other ...
4
votes
9answers
410 views
Creating unmodifiable files
I want to be able to create a file, distribute it to an end-user, but prevent them from making modifications to the file.
Now, obviously, I can't actually stop anybody from modifying the file - so my ...
3
votes
1answer
46 views
Protecting your DLLs
Suppose you have a DLL which exposes a class like this:
class MyClass
{
public:
int MyMethod();
}
How would you deny or at least make it harder for other people/ hackers to take this DLL and use ...
3
votes
1answer
409 views
Is There A Way To Set A Time Limit On a PDF?
I was wondering if there was a way to set a time limit on a pdf file where maybe it would stop opening after the set time? I know this software claims it can: ...
3
votes
1answer
108 views
Protecting AJAX based web applications
I'm building an AJAX based web application.
I'm currently in a situation where anyone can build a server side proxy application, which connects to my web application server with the proper request ...
3
votes
4answers
231 views
How does SQL-injection work and how do I protect against it [closed]
Possible Duplicate:
What is SQL injection?
I see a lot of php code floating around on stackoverflow and (too) little escaping of strings.
Can anyone
Explain what SQL injection is;
...
3
votes
1answer
353 views
How to create a undeletable registry key (or file) in C++
I would like to create time limited version of a game I am developping in C++.
I already meet some program that create files I am still not able to delete, and other that created registry key very ...
3
votes
6answers
537 views
How to make ASP.NET HTML code not viewable to clients ( users)
I am wondering are there any standard mechanisms available to protect the asp.net asp code in the client browser ? I found some references to windows script encoders. Question is,are these script ...
3
votes
4answers
768 views
Where to Store the Protection Trial Info for Software Protection Purpose
It might be duplicate with other questions, but I swear that I googled a lot and search at StackOverflow.com a lot, and I cannot find the answer to my question:
In a C#.Net application, where to ...
3
votes
1answer
125 views
Google app engine: what are content folder data securing options?
It seems for me that when youve got low (in general hacking terms) quotas (I am talking about free GAE plan) and quite large files uoy wanna stream to your users youmust somehow to protect thouse ...
3
votes
2answers
176 views
Protect Files from Git
I'm using Git with WindRiver to manage a project of mine. The code is being managed, however the project files (such as .cproject, .project, .wrmakefile, and .wrproject) are not. However when I switch ...
3
votes
2answers
221 views
jquery write protection in textarea for wildcards
Does anyone know a possibilty to protect a string-wildcard from changing in a textarea?
HTML:
<textarea name="mail_text" id="mail_text">
{salutation} {recipient},
thanks for your email.
...
3
votes
1answer
653 views
How does Android Market secure my application against distribution?
Up to now, I've only distributed a few apps by sending .apk files around. I was wondering how Android Market prevents users from distributing a paid application to other people.
3
votes
6answers
496 views
Retrieve time from the internet (bypassing PC clock)?
For my MFC/C++ unmanaged time-limited software needs, I'd like to get a GMT/UTC time-stamp from the internet (instead of relying on the PC clock time that can be easily changed).
I already though ...
3
votes
7answers
977 views
How to implement copy protection of content in an open source application?
I have an idea for an open source app -- the app would be free, but I would charge a small fee for data that a customer would order. For instance, let's say I'm writing a map application. I'd give the ...