da41886856
lib/rex/arch/x86.rb - removed illegal 'break' statements lib/rex/peparsey* - imported from spn/, renamed classes to Rex msfpescan - first version from spoonm git-svn-id: file:///home/svn/incoming/trunk@3598 4d416f70-5f16-0410-b530-b9f4589650da
28 lines
307 B
Ruby
28 lines
307 B
Ruby
#!/usr/bin/ruby
|
|
|
|
module Rex
|
|
module PeParsey
|
|
|
|
class PeError < ::RuntimeError
|
|
end
|
|
|
|
class ParseError < PeError
|
|
end
|
|
|
|
class DosHeaderError < ParseError
|
|
end
|
|
|
|
class FileHeaderError < ParseError
|
|
end
|
|
|
|
class OptionalHeaderError < ParseError
|
|
end
|
|
|
|
class BoundsError < PeError
|
|
end
|
|
|
|
class WtfError < PeError
|
|
end
|
|
|
|
end end
|