##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
###
#
# SingleByte
# ----------
#
# This class implements simple NOP generator for PowerPC
#
###
class MetasploitModule < Msf::Nop
def initialize
super(
'Name' => 'Simple',
'Alias' => 'ppc_simple',
'Description' => 'Simple NOP generator',
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Arch' => ARCH_PPC)
register_advanced_options(
[
OptBool.new('RandomNops', [ false, "Generate a random NOP sled", true ])
])
end
def generate_sled(length, opts)
badchars = opts['BadChars'] || ''
random = opts['Random'] || datastore['RandomNops']
if random
1.upto(1024) do |i|
regs_d = (rand(0x8000 - 0x0800) + 0x0800).to_i
regs_b = [regs_d].pack('n').unpack('B*')[0][1, 15]
flag_o = rand(2).to_i
flag_r = rand(2).to_i
pcword = ["011111#{regs_b}#{flag_o}100001010#{flag_r}"].pack("B*")
failed = false
pcword.each_byte do |c|
failed = true if badchars.include?(c.chr)
end
next if failed
return (pcword * (length / 4))[0, length]
end
end
return ("\x60" * length)[0, length]
end
end
Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation