Questions tagged [copy-protection]

Copy protection, also known as content protection, copy obstruction, copy prevention and copy restriction, is any effort designed to prevent the reproduction of software, films, music, and other media, usually for copyright reasons.

Copy protection, also known as content protection, copy obstruction, copy prevention and copy restriction, is any effort designed to prevent the reproduction of software, films, music, and other media, usually for copyright reasons.

Various methods have been devised to prevent reproduction so that companies will gain benefit from each users who obtain a copy of their product.

Unauthorized copying and distribution accounted for $2.4 billion in United States in 1990s, and is assumed to be causing impact on revenues in music or game industry, leading to proposal of anti-piracy laws such as PIPA.

Some methods of copy protection have also led to criticisms because it caused inconvenience for honest users or secretly installed additional software to watch activity on user's computer to detect copying.

Effective copy protection as well as protecting user rights is still an ongoing problem with media publication.

Source:http://en.wikipedia.org/wiki/Copy_protection

273 questions
8
votes
22 answers

How to stop pirates? Someone already nulled and pirated my script :(

I dont know what to say. About 3 days ago I released a script to the public. Today I realised, after searching on google that someone had already nulled (removed my protection) and pirated the script. How do I stop users from pirating the script? It…
Alec Smart
  • 94,115
  • 39
  • 120
  • 184
8
votes
5 answers

Is this iOS anti-piracy code any good?

I want to use that anti piracy code for my app. NSString* bundlePath = [[NSBundle mainBundle] bundlePath]; BOOL fileExists = [[NSFileManager defaultManager] fileExistsAtPath:(@"%@/_CodeSignature", bundlePath)]; if (!fileExists) { //Pirated …
Mpampinos Holmens
  • 1,879
  • 5
  • 18
  • 34
8
votes
2 answers

How paranoid should I be about my Azure application binary files being stolen?

I need to migrate a huge application to Windows Azure. The application depends on a third-party library that requires an activation key stored in a special binary file on the role instance filesystem. Obviously that key has to be either included…
sharptooth
  • 167,383
  • 100
  • 513
  • 979
8
votes
4 answers

How to copy protect PhoneGap Android app ? Is Android Market Copy protect feature useful?

I have PhoneGap app in Android. Now I am ready to publish it, but I would like to protect the app from eyes of script-kiddies. I first thought that it is impossible, than I have discovered "Copy protection" feature when publishing the app on the…
Frodik
  • 14,986
  • 23
  • 90
  • 141
8
votes
12 answers

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 anyone from accessing it using Java code or any of its feature only (security, reflection,…
Jérôme Verstrynge
  • 57,710
  • 92
  • 283
  • 453
8
votes
3 answers

How to get unique hardware/software signature from a windows pc in c/c++

I'm developing a small windows app using c++ and i would like to get some kind of fingerprint of the software/hardware on a pc so that i can allow the app to be run only on certain pc's. I am aware that the app can be cracked but i'm really…
daniels
  • 18,416
  • 31
  • 103
  • 173
8
votes
6 answers

Protect embedded password

I have a properties file in java, in which I store all information of my app, like logo image filename, database name, database user and database password. I can store the password encrypted on the properties file. But, the key or passphrase can be…
Gero
  • 1,842
  • 25
  • 45
7
votes
6 answers

Algorithm for activation key- Security

I'm writing a software application that the user needs to buy a license for and activate it. I need suggestions on how to start about writing a powerful algorithm for code generation and of course, code checking. I know that people can reverse…
Saher Ahwal
  • 9,015
  • 32
  • 84
  • 152
7
votes
3 answers

phonegap copy-protection

I'm working on a phonegap-app for Android/iOS. If I understand correctly, if someone opens up a phonegap-app package, he can just copy the html/js/css into a phonegap-app of their own. That is something I would like to make more difficult. My app…
Kanarie
  • 183
  • 1
  • 2
  • 9
6
votes
7 answers

C++ Intellectual Property Protection/Anti-Reversing

I've seen a lot of discussion on here about copy protection. I am more interested in anti-reversing and IP protection. There are solutions such as Safenet and HASP that claim to encrypt the binary, but are these protected from reversing when used…
Kevin Bowling
  • 323
  • 4
  • 11
6
votes
4 answers

Should I / how do I protect source code from web host?

Are you concerned at all with your web host having access to all of your files and being able to essentially download your entire web app? What steps can you take to protect yourself? More specifically, I am interested in knowing how to protect the…
Alexa Green
  • 1,153
  • 4
  • 14
  • 21
6
votes
9 answers

Piracy protection using USB based hardware solution

i want to protect my Java product by using some USB-based authentication and password management solution like you can buy it here: aladdin This mean that you have to connect a USB stick with a special software on it, before you can start your…
6
votes
3 answers

Unique Virtual Machine

I am working on some method to protect my software with a license. Doing some wmi calls to uniquely distinguish computers and making sure there cannot be loaded multiple instances of the application. I came to think though when the application is…
Henrik
  • 167
  • 1
  • 1
  • 7
6
votes
6 answers

cf.net app protection (antidebug, obfuscate)

Is there any out-of-the box solution that protects cf.net (3.5) software against reverse engineering and unlicensed redistribution (average hacker protection)? Any option of packer/native wrapper?
FrenkR
  • 327
  • 1
  • 3
  • 11
6
votes
1 answer

Detecting pirated apps on iOS - vampires that incur server costs

I know this the question of how to detect if your iOS app has been pirated has come up dozens of times, and the general consensus is that: It isn't worth playing that cat and mouse game People who pirate your app most likely wouldn't have bought it…
OpenUserX03
  • 1,448
  • 2
  • 14
  • 21
1 2
3
18 19