mirror of
https://github.com/lgandx/Responder.git
synced 2025-07-05 20:41:22 -07:00
Added current date for all HTTP headers, avoiding easy detection
This commit is contained in:
parent
1d99ab648f
commit
ecd62c322f
2 changed files with 14 additions and 10 deletions
4
utils.py
4
utils.py
|
@ -21,7 +21,11 @@ import logging
|
|||
import socket
|
||||
import time
|
||||
import settings
|
||||
import datetime
|
||||
|
||||
def HTTPCurrentDate():
|
||||
Date = datetime.datetime.utcnow().strftime('%a, %d %b %Y %H:%M:%S GMT')
|
||||
return Date
|
||||
try:
|
||||
import sqlite3
|
||||
except:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue