class NatasLevel2

Level 2

Constants

LEVEL
USERS_FILE

Public Instance Methods

exec() click to toggle source
# File lib/natas.rb, line 158
def exec
  log("Parsing users file: #{USERS_FILE}")
  data = get(USERS_FILE).body
  match = /natas3:(\w{32})/.match(data)
  not_found unless match
  found(match[1])
end