This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Nginx versions since 0.5.6 up to and including 1.13.2 are vulnerable | |
# to integer overflow vulnerability in nginx range filter module resulting into leak | |
# of potentially sensitive information triggered by specially crafted request. | |
# * CVE-2017-7529 | |
# - By @BlackViruScript / @Black#4544 | |
import urllib.parse, requests, argparse | |
global colorama, termcolor | |
try: | |
import colorama, termcolor | |
colorama.init(autoreset=True) |