mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
0e72894e58
git-svn-id: file:///home/svn/framework3/trunk@9212 4d416f70-5f16-0410-b530-b9f4589650da
43 lines
960 B
Ruby
Executable File
43 lines
960 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# $Id$
|
|
#
|
|
# This tool provides an easy way to see what opcodes are associated with
|
|
# certain x86 instructions by making use of nasm if it is installed and
|
|
# reachable through the PATH environment variable.
|
|
#
|
|
# $Revision$
|
|
#
|
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
|
|
|
|
require 'rex'
|
|
require 'rex/ui'
|
|
|
|
# Check to make sure nasm is installed and reachable through the user's PATH.
|
|
begin
|
|
Rex::Assembly::Nasm.check
|
|
rescue RuntimeError
|
|
puts "#{$!}"
|
|
exit
|
|
end
|
|
|
|
# Start a pseudo shell and dispatch lines to be assembled and then
|
|
# disassembled.
|
|
shell = Rex::Ui::Text::PseudoShell.new("%bldnasm%clr")
|
|
shell.init_ui(Rex::Ui::Text::Input::Stdio.new, Rex::Ui::Text::Output::Stdio.new)
|
|
|
|
shell.run { |line|
|
|
line.gsub!(/(\r|\n)/, '')
|
|
line.gsub!(/\\n/, "\n")
|
|
|
|
break if (line =~ /^(exit|quit)/i)
|
|
|
|
begin
|
|
puts(Rex::Assembly::Nasm.disassemble(
|
|
Rex::Assembly::Nasm.assemble(line)))
|
|
rescue RuntimeError
|
|
puts "Error: #{$!}"
|
|
end
|
|
}
|