Tagged Questions

11
votes
8answers
2k views

how are serial generators / cracks developed?

I mean, I always was wondered about how the hell somebody can develop algorithms to break/cheat the constraints of legal use in many shareware programs out there. Just for curiosity.
7
votes
6answers
3k views

How do I copy-protect my Java application?

I want to sell my Java application using PayPal. When a payment is received, the customer is mailed a one-time download link to my application. My question is, how do I prevent people from sending ...
7
votes
6answers
2k views

Have you ever used code virtualizer or vmprotect to protect from reverse engineering?

I know that there is no way to fully protect our code. I also know that if a user wants to crack our app, then he or she is not a user that would buy our app. I also know that it is better to improve ...
4
votes
4answers
574 views

SP (Stack Pointer) Anti-debug Trick - x86

Listing 7.1 The Decryptor of the Cascade Virus lea si, Start ; position to decrypt (dynamically set) mov sp, 0682 ; length of encrypted body (1666 bytes) Decrypt: xor [si],si ; ...
2
votes
4answers
611 views

How to make a good anti-crack protection?

I will start off with saying I know that it is impossible to prevent your software from reverse engineering. But, when I take a look at crackmes.de, there are crackmes with a difficulty grade of 8 ...
2
votes
3answers
294 views

Protecting a program from unauthorised use/“crackers”

I am writing a piece of software in C++ which is targeted at a market in which software is traditionally heavily cracked (or at least, attempted to be). I realise that nothing can be completely ...
0
votes
2answers
114 views

How to hook Native process whose export functions are not available?

I need to solve a reverse engineering problem of a native process. I am having unmanaged .exe of having some controls on it ( e.g TextBox, Buttons, TextAreas, ComboBoxes). After filling all the data ...
0
votes
2answers
9k views

How To Extract .flv Stream from JW Player 5.1?

The problem is I've a slow internet connection, and the video doesn't buffer like in YouTube. Therefore I was wondering weather I can extract the url of the .flv file which is being streamed in JW ...