class NatasLevel23

Level 23

Constants

LEVEL
PAGE

Public Instance Methods

exec() click to toggle source
# File lib/natas.rb, line 680
def exec
  data = get(PAGE).body
  match = %r(Password: (\w{32})</pre>).match(data)
  not_found unless match
  found(match[1])
end