Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

504
votes
48answers
52k views

I've found my software as cracked download on Internet, what to do?

So, after 6 months of hard work finally released my application. Today I found the first web site where people download it cracked, and I was wondering if any of you fellow programmers know how to ...
18
votes
10answers
2k views

My website got hacked… What should I do?

My dad called me today and said people going to his website were getting 168 viruses trying to download to their computers. He isn't technical at all, and built the whole thing with a WYSIWYG editor. ...
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 ...
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.
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 ...
9
votes
7answers
1k views

Quantum Computing and Encryption Breaking

I read a while back that Quantum Computers can break most types of hashing and encryption in use today in a very short amount of time(I believe it was mere minutes). How is it possible? I've tried ...
9
votes
9answers
690 views

Hacking/cracking deontology

Let's say you recently discovered some major vulnerabilities in a couple of web sites that activate mainly in your country and are very powerful in their market. The vulnerabilities I'm talking about ...
8
votes
4answers
262 views

how to skip a line doing a buffer overflow in c

I want to skip a line in C the line x=1; in the main section using bufferoverflow; however, I don't know why I can not skip the address from 4002f4 to the next address 4002fb in spite of the fact that ...
8
votes
3answers
12k views

Decompiling Objective-C libraries

I've just finished a library in Objective-C that I compiled as a Static Library for distribution. I'd wanted to know what chances to get this decompiled are out there. Do you know any software that ...
7
votes
3answers
630 views

How to crack a dBase file password?

I've inherited a bunch of dBase (.dbf) files from a legacy application, and I need to import the data into MS SQL or MS Access. I know these programs have built in "import" functions, but the dBase ...
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 ...
6
votes
8answers
404 views

Software protection / code obfuscation that does not trigger antivirus false positives

I'm looking for software protection and/or code obfuscation software like Oreans Themida, VSProtect, ASPRotect and similar. However, antivirus false positives is a deal-breaker for me. I cannot ...
6
votes
4answers
440 views

What is the best anti-crack scheme for your trial or subscription software?

Writing code takes time and effort and just like any other human being we need to live by making an income (save for the few that are actually self sustainable.) Here are 3 general schemes to make a ...
5
votes
0answers
254 views

John the Ripper Custom Rule [closed]

I am using John the Ripper to crack a copy of the passwd file at my work. I want to alert users that have weak passwords. I happen to know that many accounts have the default password which is ...
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
6answers
831 views

Hacking your own application

I am a web developer that is very conscious of security and try and make my web applications as secure as possible. How ever I have started writing my own windows applications in C# and when it comes ...
4
votes
2answers
377 views

Most efficient Anti-Crack methods

Since cracking is a huge problem I want to go deep into blocking those pirates (I don't even want to mention Cydia Themes, I have recorded a cracking percentage of over 98% on my themes which are all ...
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 ; ...
3
votes
1answer
192 views

Where is the method call in the EXE file?

Introduction After watching this video from LIDNUG, about .NET code protection http://secureteam.net/lidnug_recording/Untitled.swf (especially from 46:30 to 57:30), I would to locate the call to a ...
3
votes
6answers
600 views

What is the Best way to create a program which works only in the predefined trial period(evaluation period)?

I need to create a simple application that doesn't work after 30 days. How can I do that ? Is there a way to use Trial program after 30 days ?
3
votes
3answers
446 views

Secure Software License Usage Audit Log

Folks, We have an intriguing technical challenge. How to write a secure audit file that tracks usage of a software so license fees can be based on usage thereby making it more affordable to those who ...
3
votes
5answers
3k views

Decrypt MD5 hash

Is there any way to decrypt the encrypted MD5 string, given the key?
2
votes
4answers
609 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
1answer
303 views

OTP/XOR Cracking two ciphertexts that have the same key

How can I crack two ciphertexts that have used the same key twice? For example, plaintext1 uses the key "abcdefg", and plaintext2 uses the key "abcdefg". I know that ciphertext2 ^ ciphertext1 is ...
2
votes
5answers
555 views

Software tools to automatically decrypt a file, whose encryption algorithm (and/or encryption keys) isn't known?

I have an idea for encryption that I could program fairly easily to encrypt some local text file. Given that my approach is novel, and does not use any of the industry standard encryption techniques, ...
2
votes
5answers
731 views

How secure is a PostgreSQL database if my server is stolen?

If I have a server with a database if top secret data in PostgreSQL and my password is practically impossible to crack (128 character string of all sorts of weird chars, generated by hand). The server ...
2
votes
2answers
195 views

Debugging and Analyzing a Trojan

I'm interested in using something like OllyDbg to examine a program that potentially has Trojan-like characteristics. Does anyone know any good tutorials on how to do this safely? Basically the ...
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 ...
2
votes
2answers
192 views

How to deal with user authentication and wrongful modification in scripting languages?

I'm building a centralized desktop application using Python/wxPython. One of the requirements is User authentication, which I'm trying to implement using LDAP (although this is not mandatory). Users ...
2
votes
2answers
218 views

Changing the program flow when running under a debugger

Is there any way of detecting that a debugger is running in memory? and here comes the on Form Load pseudocode. if debugger.IsRunning then Application.exit end if Edit: The original title was ...
1
vote
3answers
98 views

Is NtSetInformationThread safe to use?

I am attempting to implement some very basic debugger protection to prevent kids from using easy tricks to reverse engineer my software. While these simple measures are easy to bypass, they will at ...
1
vote
1answer
285 views

reduce my app cracking (cocoafob)

I am using cocoafob for licensing. Unfortunaletly my app is always cracked quickly after each release. Is there a way do make this a little more difficult?
1
vote
4answers
878 views

CryptoLicensing cracked - still usable or better options for a similar price?

I want to sell software developed in c# to end-users and want to use licensing with a yearly fee for this. I have never used licensing, so I'm completely clueless about this and don't want to ...
1
vote
2answers
235 views

What is the best way to protect my program from cracking?

I've written a VB program. How do I add anti-tamper code so people can't crack it?
1
vote
7answers
118 views

Windows: reliable way to know if a certain date passed?

For a simple product key library I need to reliably check if a certain date passed. I'd like to do something slightly less trivial than checking the system clock since that can be changed easily by ...
1
vote
6answers
484 views

Being a cracker nightmare!

I am trying to make a code hard to crack using Objective-C on a Mac. One of the things I have to do is to check to see if the application was cracked. I am new to Objective-C and Xcode and whatever ...
0
votes
1answer
60 views

Is it possible to decompile a program while running

I was wondering about cracking computer games to mod them since I like making my own game rules. The problem is that game files are encrypted and it makes game modding quite difficult. I however ...
0
votes
2answers
216 views

How secure is in app billing in Android?

I am developing a game and I would like to include some in-app purchases. I decided to store the purchased items in a database and adding some checks to it. However, there is still one problem: ...
0
votes
6answers
195 views

How to make a PHP serial code system

I was thinking of implementing a MySQL database with valid serial codes which would be checked against user input and grant usage of the app if the check returns true, but I know this is way too basic ...
0
votes
0answers
182 views

Aircrack-ng on Windows (XP) — Needs clear steps [closed]

I've found that Aircrack-ng is very powerful tool for Wireless Hacking. But it is a bit complicate to use (even with its documentations). Can anyone guide me up with clear steps? (to use on Win XP) ...
0
votes
2answers
113 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
515 views

How decryptum cracks excel file password

does anyone know how decryptum.com cracks excel file password in under 3 minutes? I am looking to see if we can develop something like that. PS: I had posted a similar question earlier and that was ...
0
votes
0answers
33 views

can any one help me with ms access file permissions cracking [closed]

how to open this file "http://www.tamillexicon.com/access/data.mdb"? plz.(I know english)
0
votes
1answer
56 views

Securing Windows Phone 7 App?

I'm about to port some of my applications to Windows Phone 7. At the moment, these apps are all native, C++ or Delphi. Over the years I've developed a good understanding and skills on how to secure ...
0
votes
3answers
257 views

Reading rainbow tables from freerainbowtables.com

I have downloaded Rainbow Tables from freerainbowtables.com. Its extension is .rti . I was wondering if there is a way to read this file as a text file or anyother file. I want to write a simple ...
0
votes
3answers
1k views

Things to know before starting hack and what books can help me

This maybe is a very simple question, but i did not have any resources for hack. I searched google and there was nothing to help me out. I need to know some basic information about hacking. Questions ...
0
votes
3answers
738 views

How to open locked app in design mode?

Our MS Access 2000 developer left the company a year ago. We need to open his app in design mode in order to make modifications. Double-clicking the .mdb file while holding the shift key doesn't work. ...
0
votes
1answer
151 views

Airmon-ng problem

When, I run the airmon-ng command, I do not get any wireless extension for my wireless network card like wlan0.What could be the problem?My wireless card is Atheros hence it is supported. Any help ...
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 ...

1 2