Class: Ronin::Generators::Exploits::Exploit

Inherits:
Generator
  • Object
show all
Defined in:
lib/ronin/generators/exploits/exploit.rb

Constant Summary collapse

DEFAULT_NAME =

Default name to give the exploit

'Exploit'
DEFAULT_DESCRIPTION =

Default description to give the exploit

%{This is an exploit.}
DEFAULT_STATUS =

Default status to give the exploit

:potential
DEFAULT_AUTHORS =

Default authors of the exploit

[Author::ANONYMOUSE]
DEFAULT_DISCLOSURE =

Default disclosure information to give the exploit

[:in_wild]

Instance Method Summary collapse

Instance Method Details

#generateObject

Generate a basic exploit.

Since:

  • 0.3.0



62
63
64
65
# File 'lib/ronin/generators/exploits/exploit.rb', line 62

def generate
  template File.join('ronin','generators','exploits','exploit.erb'),
           self.path
end