class NatasLevel30

Level 30

Constants

LEVEL
PAGE
PAYLOAD

Public Instance Methods

exec() click to toggle source
# File lib/natas.rb, line 868
def exec
  data = post(
    PAGE,
    {},
    PAYLOAD
  ).body
  match = /<br>natas31(\w{32})<div/.match(data)
  not_found unless match
  found(match[1])
end