#include "vuln.h"

#include <stdio.h>
#include <string.h>

static void helper_1() {
  // ...
}

static void helper_2() {
  // ...
}

uint16_t pwn() {
  char resp[256];
  char req[256];

  sprintf(req, "admin admin");

  authenticate(resp, req);
  authenticate(resp, req);
  authenticate(resp, req);
  authenticate(resp, req);
  // Repeat until we convince the authenticator

  uint16_t session_id = 42;  // I'm Feeling Lucky
  return session_id;
  }
}
