Module: PWN::Banner::ForkBomb

Defined in:
lib/pwn/banner/fork_bomb.rb

Overview

This plugin processes images into readable text

Class Method Summary collapse

Class Method Details

.authorsObject

Author(s)

0day Inc. <[email protected]>



22
23
24
25
26
# File 'lib/pwn/banner/fork_bomb.rb', line 22

public_class_method def self.authors
  "AUTHOR(S):
    0day Inc. <[email protected]>
  "
end

.getObject

Supported Method Parameters

PWN::Banner::ForkBomb.get



12
13
14
15
16
17
18
# File 'lib/pwn/banner/fork_bomb.rb', line 12

public_class_method def self.get
  '
  $ pwn() { pwn | pwn & }; pwn
  '.blue
rescue StandardError => e
  raise e
end

.helpObject

Display Usage for this Module



30
31
32
33
34
35
36
# File 'lib/pwn/banner/fork_bomb.rb', line 30

public_class_method def self.help
  puts "USAGE:
    #{self}.get

    #{self}.authors
  "
end