mirror of
https://github.com/Ekultek/Zeus-Scanner.git
synced 2026-03-11 08:55:51 +00:00
fixed the x-forwarded-for header in the header checking
This commit is contained in:
parent
3d37e31747
commit
3225387157
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@ def load_headers(url, **kwargs):
|
|||
header_value = {
|
||||
HTTP_HEADER.CONNECTION: "close",
|
||||
HTTP_HEADER.USER_AGENT: agent,
|
||||
HTTP_HEADER.X_FORWARDED_FROM: "{}, {}, {}".format(
|
||||
HTTP_HEADER.X_FORWARDED_FOR: "{}, {}, {}".format(
|
||||
ip_list[0], ip_list[1], ip_list[2]
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue