Noobie question :p - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Programming with C++ (https://www.supportforums.net/forumdisplay.php?fid=20) +---- Thread: Noobie question :p (/showthread.php?tid=16087) Pages:
1
2
|
Noobie question :p - w00pz - 02-09-2011 Is it possible to decompile C++ programs and get the source code? Sorry but i am new to the language RE: Noobie question :p - Gaijin - 02-09-2011 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! RE: Noobie question :p - AceInfinity - 02-09-2011 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. RE: Noobie question :p - w00pz - 02-10-2011 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 RE: Noobie question :p - versx - 02-10-2011 Yes it is possible to decompile a file coded in C++, unless you obfuscate your program I think. RE: Noobie question :p - w00pz - 02-10-2011 (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. RE: Noobie question :p - Untouch - 02-10-2011 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. RE: Noobie question :p - w00pz - 02-11-2011 (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/ Thanks for sharing the link There is always another way around.. ( crack it ) RE: Noobie question :p - AceInfinity - 02-11-2011 (02-11-2011, 06:14 AM)Rand0m™ Wrote: Thanks for sharing the link 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' RE: Noobie question :p - w00pz - 02-12-2011 (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 |