Skip to content

Commit

Permalink
Update hackme.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MindPatch authored Jul 16, 2022
1 parent 00a2835 commit ef112d5
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion hackme.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ def index():
cur = g.db.execute('select id, title, description, date from entries order by id desc limit 8')
a = cur.fetchall()
entries = [dict(id=row[0],title=row[1], description=row[2],d=row[3]) for row in a]
print entries
response=make_response(render_template('index.html',entries=entries,Name=name))
response.headers['Strict-Transport-Security'] = 'max-age=31536000; includeSubDomains'
response.headers['X-Content-Type-Options'] = 'nosniff'
Expand Down

0 comments on commit ef112d5

Please sign in to comment.