From owner-freebsd-hackers@FreeBSD.ORG Tue Aug 12 14:31:18 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2296337B404 for ; Tue, 12 Aug 2003 14:31:18 -0700 (PDT) Received: from hysteria.spc.org (hysteria.spc.org [195.206.69.234]) by mx1.FreeBSD.org (Postfix) with SMTP id 930A843FB1 for ; Tue, 12 Aug 2003 14:31:16 -0700 (PDT) (envelope-from bms@hysteria.spc.org) Received: (qmail 14178 invoked by uid 5013); 12 Aug 2003 21:28:29 -0000 Date: Tue, 12 Aug 2003 22:28:29 +0100 From: Bruce M Simpson To: Ryan Sommers Message-ID: <20030812212829.GA1413@spc.org> Mail-Followup-To: Bruce M Simpson , Ryan Sommers , freebsd-questions@freebsd.org, freebsd-hackers@freebsd.org References: <20030812211812.29690.qmail@neuroflux.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030812211812.29690.qmail@neuroflux.com> User-Agent: Mutt/1.4.1i Organization: SPC cc: freebsd-hackers@freebsd.org cc: freebsd-questions@freebsd.org Subject: Re: x86 Disassembler X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 12 Aug 2003 21:31:18 -0000 On Tue, Aug 12, 2003 at 05:18:12PM -0400, Ryan Sommers wrote: > Are there any tools to disassemble an x86 binary file? objdump does a nice > job on most files. However, I'm messing with some machine-code binary > files that don't have ELF headers or anything other then the machine-code > (ie MBR's). I'd like to disassemble them on FreeBSD, possibly to a format > that G(as) could reassemble. Then I don't have to use something like > debug.exe. nasm and ndisasm work splendidly for me. If you need something more elaborate, try the trial version of DataRescue's IDA. The console version works well under WINE. BMS