diff options
author | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:08:30 +0300 |
---|---|---|
committer | Evgeny Sorokin <me@ch1p.io> | 2024-04-03 04:08:30 +0300 |
commit | d03ff16b1ab99e95a7516d876b3117ee37eab66d (patch) | |
tree | f96f531890537dc990deceb059c4f1f44d1ba1a6 /bin | |
parent | 376deb5610e29b0345f5e234d5bab746562810a8 (diff) |
web_kbn: debug.cgi: don't include headers
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/web_kbn.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/web_kbn.py b/bin/web_kbn.py index 9a03d15..b5bfa74 100755 --- a/bin/web_kbn.py +++ b/bin/web_kbn.py @@ -555,7 +555,7 @@ async def routing_dhcp(req: web.Request): @routes.get('/debug.cgi') async def debug(req: web.Request): info = dict( - headers=req.headers, + # headers=req.headers, host=req.headers.get('Host'), url=req.url, method=req.method, |