Change font size
It is currently Sat Nov 28, 2009 2:51 pm

Welcome
Welcome to Computer Programming Forum
We have a tool bar that you can download at http://comprog98.ourtoolbar.com/
Free Domain Name Service
You are currently viewing our boards as a guest, which gives you limited access to view most discussions and access our other features. By joining our free community, you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content, and access many other special features. Registration is fast, simple, and absolutely free, so please, join our community today!
Here's where the people who come to are site are from:Image
Affiliate links: http://www.dreamincode.net/
Prediction Market

DaniWeb IT Discussion Community




Post a new topicPost a reply Page 1 of 3   [ 55 posts ]
Go to page 1, 2, 3  Next
Author Message
 Post subject: decompiling
PostPosted: Fri May 16, 2008 10:31 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
what is a good decompiler? for c++ of course (and c)

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 16, 2008 10:35 am 
PseudoAverage

Joined: Fri May 02, 2008 6:54 am
Posts: 76
those are not quiet legal and are hard to get.


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 16, 2008 10:53 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
^^ so
tell me

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 16, 2008 12:33 pm 
PseudoAverage

Joined: Fri May 02, 2008 6:54 am
Posts: 76
A.) What u are referring to is called reverse engineering.
B.) The process of C & C++ compiling is complex and even if u reverse engineer the program back, all u end up with is a crap load of HEX and/or assembly language while u lose all the comments, classes, and a lot of other stuff. U do not get the original code back. Thus, unless u know assembly, don't bother.
C.) Goggle.


Top
 Profile  
 
 Post subject:
PostPosted: Fri May 16, 2008 3:19 pm 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
Decompiling C/C++ is impossible to get good. This is because C/C++ translates a lot of it's code into machine code(hence you get hex and assembaly), and in doing so, it makes it unreadable to humans.


Top
 Profile  
 
 Post subject:
PostPosted: Thu May 22, 2008 7:19 am 
Average
User avatar

Joined: Sat Mar 15, 2008 1:55 pm
Posts: 218
Location: Earth, usually.
I used to use REC and RECstudio, but it suddenly stopped working for me, and I've never done anything since. It was great while it lasted though...

_________________
When there's nothing left to lose, you win.

- Crush40


Top
 Profile  
 
 Post subject:
PostPosted: Thu May 22, 2008 7:21 am 
Average
User avatar

Joined: Sat Mar 15, 2008 1:55 pm
Posts: 218
Location: Earth, usually.
Problem is, when it's compiled, a program replaces all it's names with hex vals, so you get functions called f00001210(); or something like that.

_________________
When there's nothing left to lose, you win.

- Crush40


Top
 Profile  
 
 Post subject:
PostPosted: Tue May 27, 2008 8:28 pm 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
i know a place to read hex decs ^^

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 28, 2008 9:08 am 
PseudoAverage

Joined: Fri May 02, 2008 6:54 am
Posts: 76
I think I knew one myself but I forgot it. Care to share?


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 28, 2008 9:16 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
http://en.wikipedia.org/wiki/Hexadecimal

i think this place will do the converting for you

http://textop.us/Text-Convert/Hexadecimal

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Wed May 28, 2008 1:13 pm 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
It's not hard per se to read hexadecimal, it's just another way to count. Just like binary.

_________________
"Do you want to sell sugar water for the rest of your life or do you want to change the world?"--Steve Jobs
"Quick put out the fire before the judge comes!"---Unknown
If you can't make it good, make it look good"---Bill Gates
"The mac file structure can be used to scare small children"--Linux Trovalds
"As a programmer, I should have known that. Otherwise I should be taken out back and "decompiled""---Unknown


Top
 Profile  
 
 Post subject:
PostPosted: Thu May 29, 2008 7:49 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
it looks pretty confusing. hopefully wikipedia can help ^^

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Thu May 29, 2008 10:23 am 
PseudoAverage

Joined: Fri May 02, 2008 6:54 am
Posts: 76
0-9 is represented by 0-9. 10=A, 11=B. 12=C, 13+D, 14=E, 15=F. Thats all there is to it.


Top
 Profile  
 
 Post subject:
PostPosted: Thu May 29, 2008 11:38 am 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
It does look confusing at first, but it gets easier realy fast.

_________________
"Do you want to sell sugar water for the rest of your life or do you want to change the world?"--Steve Jobs
"Quick put out the fire before the judge comes!"---Unknown
If you can't make it good, make it look good"---Bill Gates
"The mac file structure can be used to scare small children"--Linux Trovalds
"As a programmer, I should have known that. Otherwise I should be taken out back and "decompiled""---Unknown


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jun 07, 2008 3:00 pm 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
yea, not the most efficient way to read :?

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 09, 2008 10:40 am 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
Well, neither is decimal.

_________________
"Do you want to sell sugar water for the rest of your life or do you want to change the world?"--Steve Jobs
"Quick put out the fire before the judge comes!"---Unknown
If you can't make it good, make it look good"---Bill Gates
"The mac file structure can be used to scare small children"--Linux Trovalds
"As a programmer, I should have known that. Otherwise I should be taken out back and "decompiled""---Unknown


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 09, 2008 10:57 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
reading in general can be quite inefficient, sometimes id rather have popup books

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Mon Jun 09, 2008 11:06 am 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
Well depends on the language. English is highly redundent, but there are other languages that aren't(Read:romance languages)

_________________
"Do you want to sell sugar water for the rest of your life or do you want to change the world?"--Steve Jobs
"Quick put out the fire before the judge comes!"---Unknown
If you can't make it good, make it look good"---Bill Gates
"The mac file structure can be used to scare small children"--Linux Trovalds
"As a programmer, I should have known that. Otherwise I should be taken out back and "decompiled""---Unknown


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 10, 2008 6:58 am 
Average

Joined: Fri Mar 14, 2008 8:12 am
Posts: 435
read about it, funny how italian is close to croatian (language wise). even tho croatia is of slav decent, it was a favorite place of cesar to stay at...

_________________
"ease the trigger" does that work for games too?


:twisted:


Top
 Profile  
 
 Post subject:
PostPosted: Tue Jun 10, 2008 12:46 pm 
Site Admin

Joined: Fri Feb 29, 2008 5:38 pm
Posts: 647
Highscores: 11
Hrm...

_________________
"Do you want to sell sugar water for the rest of your life or do you want to change the world?"--Steve Jobs
"Quick put out the fire before the judge comes!"---Unknown
If you can't make it good, make it look good"---Bill Gates
"The mac file structure can be used to scare small children"--Linux Trovalds
"As a programmer, I should have known that. Otherwise I should be taken out back and "decompiled""---Unknown


Top
 Profile  
 
Display posts from previous:  Sort by  
Post a new topicPost a reply Page 1 of 3   [ 55 posts ]
Go to page 1, 2, 3  Next


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron