#! /usr/bin/env python3 import cgi import os import fcntl import re import sys import http.cookies from urllib.parse import quote, unquote import config import pointscli import teams datafile = config.datafile('puzzler.dat') keysfile = config.get('puzzler', 'keys_file') puzzles_dir = config.get('puzzler', 'dir') cgi_url = config.get('puzzler', 'cgi_url') base_url = config.get('puzzler', 'base_url') ## ## This allows you to edit the URL and work on puzzles that haven't been ## unlocked yet. For now I think that's an okay vulnerability. It's a ## hacking contest, after all. ## cat_re = re.compile(r'^[a-z]+$') points_re = re.compile(r'^[0-9]+$') def dbg(*vals): print('<--: \nContent-type: text/html\n\n-->
') print(*vals) print('') points_by_cat = {} points_by_team = {} try: for line in open(datafile, encoding='utf-8'): cat, team, pts = [unquote(v) for v in line.strip().split('\t')] pts = int(pts) points_by_cat[cat] = max(points_by_cat.get(cat, 0), pts) points_by_team.setdefault((team, cat), set()).add(pts) except IOError: pass c = http.cookies.SimpleCookie(os.environ.get('HTTP_COOKIE', '')) try: team = c['team'].value passwd = c['passwd'].value except KeyError: team, passwd = None, None f = cgi.FieldStorage() cat = f.getfirst('c') points = f.getfirst('p') team = f.getfirst('t', team) passwd = f.getfirst('w', passwd) key = f.getfirst('k') def start_html(title): if os.environ.get('GATEWAY_INTERFACE'): print('Content-type: text/html') if team or passwd: c = http.cookies.SimpleCookie() if team: c['team'] = team if passwd: c['passwd'] = passwd print(c) print() print('''
None (someone is slacking)
') end_html() def win(cat, team, points): start_html('Winner!') points = int(points) f = open(datafile, 'a', encoding='utf-8') pointscli.submit(cat, team, points) fcntl.lockf(f, fcntl.LOCK_EX) f.write('%s\t%s\t%d\n' % (quote(cat), quote(team), points)) print('%d points for %s.
' % (points, team)) print('Back to %s.
' % (cgi_url, cat, cat)) end_html() def get_key(cat, points): for line in open(keysfile, encoding='utf-8'): thiscat, thispoints, ret = line.split('\t', 2) if (cat, points) == (thiscat, thispoints): return ret.strip() return False def main(): cat_dir = safe_join(puzzles_dir, cat) points_dir = safe_join(puzzles_dir, cat, points) if not cat_dir: # Show categories show_cats() elif not points_dir: # Show available puzzles in category show_puzzles(cat, cat_dir) else: thekey = get_key(cat, points) if not teams.chkpasswd(team, passwd): start_html('Wrong password') end_html() elif key != thekey: start_html('Wrong key') end_html() elif int(points) in points_by_team.get((team, cat), set()): start_html('Greedy greedy') end_html() else: win(cat, team, points) if __name__ == '__main__': import optparse parser = optparse.OptionParser('%prog CATEGORY POINTS') opts, args = parser.parse_args() if len(args) == 2: cat, points = args show_puzzle(cat, points) else: parser.print_usage() # Local Variables: # mode: python # End: