mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 14:04:20 +01:00
fix for lowercase comparison bug
This commit is contained in:
@@ -138,7 +138,7 @@ def chal(chalid):
|
|||||||
for x in keys:
|
for x in keys:
|
||||||
if x['type'] == 0: #static key
|
if x['type'] == 0: #static key
|
||||||
print(x['flag'], key.strip().lower())
|
print(x['flag'], key.strip().lower())
|
||||||
if x['flag'] == key.strip().lower():
|
if x['flag'] and x['flag'].strip().lower() == key.strip().lower():
|
||||||
solve = Solves(chalid=chalid, teamid=session['id'], ip=request.remote_addr, flag=key)
|
solve = Solves(chalid=chalid, teamid=session['id'], ip=request.remote_addr, flag=key)
|
||||||
db.session.add(solve)
|
db.session.add(solve)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|||||||
Reference in New Issue
Block a user