Hi there everybody..
I have a object(a.out) file which is running on a Linux..
I need to decompile this objectfile to c source code.Can anybody tell
me where to
get a good c decompiler or how to go about this.
Thanking you all in advance
Chellappa
|
|
0
|
|
|
|
Reply
|
N.Chellappa (47)
|
8/1/2005 9:17:50 AM |
|
chellappa wrote:
>
> Hi there everybody..
> I have a object(a.out) file which is running on a Linux..
> I need to decompile this objectfile to c source code.Can anybody tell
> me where to
> get a good c decompiler or how to go about this.
> Thanking you all in advance
> Chellappa
+-------------------+ .:\:\:/:/:.
| PLEASE DO NOT | :.:\:\:/:/:.:F
| FEED THE TROLLS | :=.' - - '.=:
| | '=(\ 9 9 /)='
| Thank you, | ( (_) )
| Management | /`-vvv-'\
+-------------------+ / \
| | @@@ / /|,,,,,|\ \
| | @@@ /_// /^\ \\_\
@x@@x@ | | |/ WW( ( ) )WW
\||||/ | | \| __\,,\ /,,/__
\||/ | | | jgs (______Y______)
/\/\/\/\/\/\/\/\//\/\\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
==============================================================
--
Chuck F (cbfalconer@yahoo.com) (cbfalconer@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
|
|
0
|
|
|
|
Reply
|
cbfalconer (19183)
|
8/1/2005 10:27:41 AM
|
|
is it in elf format??? if it is in aout format then you can have
convert back to
..c file but it is difficult.
first you have to reverse engineer it to .asm or .s then u can use
asm2c to get your work done. but the end result is not exactly the same
as original.
|
|
0
|
|
|
|
Reply
|
ashok.s.das (25)
|
8/1/2005 10:55:52 AM
|
|
ashok.s.das@gmail.com wrote:
> is it in elf format??? if it is in aout format then you can have
> convert back to
> .c file but it is difficult.
> first you have to reverse engineer it to .asm or .s then u can use
> asm2c to get your work done. but the end result is not exactly the same
> as original.
cow -> hamburger easy
hamburger -> functional_cow a little harder;)
|
|
0
|
|
|
|
Reply
|
rjshawN_o (140)
|
8/1/2005 11:24:02 AM
|
|
Russell Shaw wrote:
>
> ashok.s.das@gmail.com wrote:
> > is it in elf format??? if it is in aout format then you can have
> > convert back to
> > .c file but it is difficult.
> > first you have to reverse engineer it to .asm or .s then u can use
> > asm2c to get your work done. but the end result is not exactly the same
> > as original.
>
> cow -> hamburger easy
> hamburger -> functional_cow a little harder;)
You might be able to get it back into the shape of a cow relatively
easily. However, it may or may not look anything like the original
cow(s).
--
+-------------------------+--------------------+-----------------------------+
| Kenneth J. Brody | www.hvcomputer.com | |
| kenbrody/at\spamcop.net | www.fptech.com | #include <std_disclaimer.h> |
+-------------------------+--------------------+-----------------------------+
Don't e-mail me at: <mailto:ThisIsASpamTrap@gmail.com>
|
|
0
|
|
|
|
Reply
|
kenbrody (1860)
|
8/1/2005 3:28:19 PM
|
|
Yes harder, but for educational purposes it is ok. but there is no
guarantee the code will be compiled and give actual result.
|
|
0
|
|
|
|
Reply
|
ashok.s.das (25)
|
8/2/2005 1:17:33 PM
|
|
Das wrote:
>
> Yes harder, but for educational purposes it is ok. but there is
> no guarantee the code will be compiled and give actual result.
Is this supposed to have some meaning? Include suitable context.
See my sig. below for how to do it even with the google usenet
interface.
--
"If you want to post a followup via groups.google.com, don't use
the broken "Reply" link at the bottom of the article. Click on
"show options" at the top of the article, then click on the
"Reply" at the bottom of the article headers." - Keith Thompson
|
|
0
|
|
|
|
Reply
|
cbfalconer (19183)
|
8/2/2005 1:30:47 PM
|
|