02-09-2011, 03:10 PM
Pages: 1 2
02-09-2011, 03:44 PM
Take a look here, the site explains you better and more, than I could!
http://www.codeproject.com/KB/cpp/reversedisasm.aspx
And take a look at this, if you are not familiar with asembly.
http://en.wikipedia.org/wiki/Assembly_language
You'll find some good information there!
http://www.codeproject.com/KB/cpp/reversedisasm.aspx
And take a look at this, if you are not familiar with asembly.
http://en.wikipedia.org/wiki/Assembly_language
You'll find some good information there!
02-09-2011, 07:47 PM
Yes, it is possible.
Some software you can't decompile though because developers don't want you trying to 'steal' their idea, and so there's a way to protect against anyone using their code.
Some software you can't decompile though because developers don't want you trying to 'steal' their idea, and so there's a way to protect against anyone using their code.
02-10-2011, 05:12 AM
I actually just wanted to know this, because i don't wanna have people to "decompile" my project(s).
But thanks for the answer guys
But thanks for the answer guys
02-10-2011, 12:42 PM
Yes it is possible to decompile a file coded in C++, unless you obfuscate your program I think.
02-10-2011, 01:34 PM
(02-10-2011, 12:42 PM)versx Wrote: [ -> ]Yes it is, unless you obfuscate your program I think.
Do you know any tutorial on how to obfuscate?
Or can you make one?
I would really appreciate it
Thanks.
02-10-2011, 04:37 PM
The way I know of is to use a tool called Stunnix. It's an Obfuscator which you can find here: http://www.stunnix.com/
It's expensive to buy but you can use the trial to test it out.
It's expensive to buy but you can use the trial to test it out.
02-11-2011, 06:14 AM
(02-10-2011, 04:37 PM)Untouch Wrote: [ -> ]The way I know of is to use a tool called Stunnix. It's an Obfuscator which you can find here: http://www.stunnix.com/
It's expensive to buy but you can use the trial to test it out.
Thanks for sharing the link
There is always another way around.. ( crack it )
02-11-2011, 09:54 PM
(02-11-2011, 06:14 AM)Rand0m™ Wrote: [ -> ]Thanks for sharing the link
There is always another way around.. ( crack it )
You can't really crack it unless you know how the program works, or you have the code to determine how it's encryption and execution works. If you crack it, that's different than getting the code to be able to 'copy' an app/program project. Cracking won't get you the program 'map'
02-12-2011, 08:12 AM
(02-11-2011, 09:54 PM)Infinity Wrote: [ -> ]You can't really crack it unless you know how the program works, or you have the code to determine how it's encryption and execution works. If you crack it, that's different than getting the code to be able to 'copy' an app/program project. Cracking won't get you the program 'map'Oh okay
Thanks for letting me know
Pages: 1 2