1234567891011121314151617181920 |
- import hashlib
- from helper.user import User
- # The Flags for the Challanges
- FLAGS = {
- 'po1':'P{ezpz_b4sic_padd1ng_0r4cle_a77ack}',
- 'po2':'PO{itz_g3tting_h4rder}',
- 'po3':'PO{t1ming_c4n_b3_hard}',
- 'po4':'PO{bl3ichenb4cher_w0uld_b3_pr0ud}',
- }
- app_users = {
- User("admin", "superStrongAndUnguessablePassword", 1337),
- User("user", "password", 2000),
- }
|