ctxis / crackerjack

CrackerJack / Hashcat Web Interface / Context Information Security
https://www.contextis.com/en/resources/tools/crackerjack
MIT License
357 stars 86 forks source link

Fix session creation date #23

Closed crapStone closed 2 years ago

crapStone commented 2 years ago

The datetime.now() function gets called only once and every session will have the same creation date until the server is restarted.

SQLAlchemy can handle function references and now calls datetime.now() every time a new session is created.

sadreck commented 2 years ago

Thanks for this - much appreciated!