dump: 1.1.003

This commit is contained in:
Igor Rzegocki 2021-07-09 19:13:24 +02:00
parent eb28a81fbc
commit ec9ccbe416
No known key found for this signature in database
GPG Key ID: DBF5E35526B27548
30 changed files with 311 additions and 333 deletions

View File

@ -7,6 +7,10 @@ Ps3xploit team. If you find these tools useful, please consider a donation via P
|:---:|:---:|:---:|
| Legacy P2PKH | Segwit BECH32 | PayNyms |
<p align="center">
<b>Supported versions: 4.80 - 4.88</b>
</p>
## IMPORTANT INFO, please read carefuly.
- **This is NOT official repository of bgtoolset**. It's a dump which I made for myself, to be able jailbreak my console if for whatever reason [Ps3Xploit](https://www.ps3xploit.com/)
@ -15,7 +19,7 @@ website goes down.
Not only they are more reliable, and written by people who actually know what they're doing - they're also always up to date.
- **I'm not responsible for any damage you may do to your console**. This stuff if used inproperly, can brick your PS3.
- I tested this dump on my `CECHJ03 PAL` PS3 FAT console, with `4.87` firmware, and it worked without any issues. However I do not guarantee that it will work for you.
- **I haven't tested it on other versions (`4.88` or later)!**
- I'm not providing any info how to use this locally, if you don't know it - you probably shouldn't do this.
- It's not a full dump, I only focused on happy path, of flashing PS3. Memory editor probably wouldn't work, logs are also not reliable. Original toolset uses `*.php` files,
which (for obvious reasons) I couldn't dump, so most of them are just plain HTML output of the scripts. The `file.php` is my dummy, minimal implementation which makes
all this stuff work.
which (for obvious reasons) I couldn't dump, so most of them are just plain HTML output of the scripts. The `file3.php` is my dummy, minimal implementation which makes all this stuff work.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

View File

@ -3,18 +3,18 @@
$file = $_REQUEST['file'];
$files = array(
'FP9TesterK.swf' => array(
'path' => __DIR__ . '/files/FP9TesterK.swf',
'FP9TesterK3.swf' => array(
'path' => __DIR__ . '/files/FP9TesterK3.swf',
'type' => 'application/x-shockwave-flash',
'kind' => 'flash',
),
'PS3FP9NC.swf' => array(
'path' => __DIR__ . '/files/PS3FP9NC.swf',
'PS3FP9NC3.swf' => array(
'path' => __DIR__ . '/files/PS3FP9NC3.swf',
'type' => 'application/x-shockwave-flash',
'kind' => 'flash',
),
'PS3LoaderK.swf' => array(
'path' => __DIR__ . '/files/PS3LoaderK.swf',
'PS3LoaderK3.swf' => array(
'path' => __DIR__ . '/files/PS3LoaderK3.swf',
'type' => 'application/x-shockwave-flash',
'kind' => 'flash',
),
@ -28,8 +28,8 @@ $files = array(
'type' => 'application/x-javascript',
'kind' => 'js',
),
'nofsm_patch_487.bin' => array(
'path' => __DIR__ . '/files/nofsm_patch_487.bin',
'nofsm_patch_488.bin' => array(
'path' => __DIR__ . '/files/nofsm_patch_488.bin',
'type' => 'application/octet-stream',
'kind' => 'bin',
)

Binary file not shown.

BIN
files/FP9TesterK3.swf Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

1
files/PS3FP9NC3.swf Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

1
files/PS3LoaderK3.swf Normal file

File diff suppressed because one or more lines are too long

BIN
files/PS3TSound.swf Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -13,7 +13,7 @@
<div id='dSTree' class='diag-dtree ui-widget-content ui-corner-all'></div>
</div>
</div>
<h2 align='right' class='tab-header'>Flash Memory Manager <span class='header-tiny-text'>v1.3.0</span></h2>
<h2 align='right' class='tab-header'>Flash Memory Manager <span class='header-tiny-text'>v1.3.1</span></h2>
<div id='treecontainer' class='fm-container'>
<table id='fmbox' class='window'>
<tbody class='window'>
@ -170,6 +170,7 @@
'dump_start': 0,
'save_offset': 0,
'file_path': '/dev_hdd0/dump.hex',
'default_name': 'dump.hex',
'buffer': null
};
var dialogButtons = [{text: 'Save', icon: 'ui-icon-disk', click: function(event, ui){
@ -198,6 +199,22 @@
confirmDump();
}
}
else if(sobj.idps){
//alert(sobj.idps);
jQdialog.dialog('close');
sobj.file_path = jQlbl_fname[0].innerText;
function confirmSave(){
setTimeout(function() {
sdef.resolve(sobj);
},250);
}
if(fsitem_exists(sobj.file_path)){
confirmDialog('If you continue, '+sobj.file_path+' will be overwritten','Confirm',confirmSave);
}
else{
confirmSave();
}
}
}},{text: 'Cancel', icon: 'ui-icon-close', click: function(event, ui){
jQdialog.dialog('close');
}}];//
@ -335,6 +352,10 @@
jQdialog.dialog('option', 'title', txt );
};
this.open = function(obj,func){
sobj = obj ? obj : sobj;
if(sobj.default_name){
fname = sobj.default_name ? sobj.default_name : 'dump.hex';
}
jQdialog.dialog('open');
jQuery('.scbsave').mCustomScrollbar({
theme: (Cookies.get('style')==='eggplant') ? 'light-thick' : 'dark-thick'
@ -342,7 +363,6 @@
this.disableSaveButton();
this.disableSaveText();
jQlbl_fname.text('Please select a destination folder');
sobj = obj ? obj : sobj;
sdef = jQuery.Deferred();
sdef.promise().done(func);
jQtree.focus();
@ -725,6 +745,7 @@
'dump_start': 0,
'save_offset':0,
'file_path': '',
'default_name': 'dump.hex',
'tls': null,
'buffer': null
},mt_dump);
@ -774,7 +795,7 @@
'_disabled': is_cex ? helper.nofsm_url.length>0 ? false: true : true, //add more checks????
'icon' : 'fa fa-download fa-fw',
'action': function (obj) {
document.getElementById('dlframe').src = 'file.php?tk='+ftoken+'&file='+helper.nofsm_url;
document.getElementById('dlframe').src = 'file3.php?tk='+ftoken+'&file='+helper.nofsm_url;
}
},
'Patch': {
@ -823,6 +844,7 @@
'dump_start': _nor ? 0x600:0x400,
'save_offset': _nor ? 0x10:0x30,
'file_path': '',
'default_name': 'ros0.hex',
'buffer': null
}: {
'sector_count': 0x3800,
@ -830,6 +852,7 @@
'dump_start': _nor ? 0x3E00:0x3C00,
'save_offset': _nor ? 0x10:0x20,
'file_path': '',
'default_name': 'ros1.hex',
'buffer': null
},mt_dump);
},0);
@ -844,6 +867,31 @@
'action': function (obj) {
idps_hidden ? jstree.rename_node('idps', 'IDPS: '+idps.toUpperCase()) : jstree.rename_node('idps', 'IDPS: '+XXX);
idps_hidden = !idps_hidden;
//u64 value=0;
//lv2_ss_update_mgr_if(UPDATE_MGR_PACKET_ID_READ_EPROM, QA_FLAG_OFFSET, (uint64_t) &value, 0, 0, 0, 0);
// var rvalue = helper.heap.store(8);
// var scret = helper.rop.rrun(syscall32(863,0x600b,0x48C61,rvalue,0, 0, 0, 0));
// alert('syscall returned 0x'+scret.toString(16));
// alert('value 0x'+helper.memory.upeek32(rvalue).toString(16)+helper.memory.upeek32(rvalue+4).toString(16));
// helper.heap.free([rvalue]);
}
},
'Save':{
'separator_before': false,
'separator_after': false,
'label': 'Save IDPS as file',
'icon' : 'fa fa-floppy-o fa-fw',
'action': function (obj) {
setTimeout(function(){
sdiag.open( {
'file_path': '',
'idps':idps,
'default_name': 'idps.hex'
},idps_dump);
},0);
}
}
}:{};
@ -914,6 +962,7 @@
//Show spinner
function sha256_cleanup(){
//alert('sha256_cleanup');
so.close();
delete rosH;
enable_GUI();
jQuery().toastmessage('removeToast', close_toast);
@ -1269,6 +1318,7 @@
var f = new fileObject(dump_object.file_path,helper.fs_flag_create_rw);
Logger.warn('fileObject created'+getElapsedTime(start));
ulog(f.size>0 ? 'File IO Overwriting '+dump_object.file_path : 'File IO Creating '+dump_object.file_path );
//Logger.error('Socket Handle 0x'+so.device_handle.toString(16));
var d = new dumpObject(so,f,dump_object);
Logger.warn('dumpObject '+getElapsedTime(start));
var max_it = Math.floor(dump_object.sector_count/dump_object.nsec_iter);
@ -1364,6 +1414,20 @@
Logger.error('<h2><b>JS Exception: </b></h2><br>'+e);
}
};
var idps_dump = function(iobj){
var idps_offset = helper.heap.store(iobj.idps.toUpperCase());
var fo = new fileObject(iobj.file_path, helper.fs_flag_create_rw);
var iret = fo.save({'offset':idps_offset,'size':0x10},0x10,null,null);
fo.close();
delete fo;
if(iret==0){
infoDialog('IDPS saved at '+ iobj.file_path,'Saved IDPS',function(){});
}
else{
infoDialog('Error 0x'+iret.toString(16)+' saving IDPS at '+ iobj.file_path,'Error saving IDPS',function(){});
}
helper.heap.free([idps_offset]);
};
var mt_patch = function(patch_object){
if(!patch_object){return;}
var _nor = so.is_nor();

View File

@ -7,24 +7,20 @@
<script type='text/javascript' src="js/logger.pmin.js"></script>
<script>
"use strict"
var token=null;
var ftoken=null;
var token='';
var ftoken='';
var libraries = [
//{'library':'cookies','async':true,'fail':0,'url':'https://cdnjs.cloudflare.com/ajax/libs/js-cookie/2.2.1/js.cookie.min.js','data':null},
//{'library':'jquery','async':true,'fail':0,'url':'https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.4/jquery.min.js','data':null},
//{'library':'jqueryui','async':true,'fail':0,'url':'https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js','data':null},
{'library':'cookies','async':true,'fail':0,'url':'js/js.cookie.min.js','data':null},
{'library':'jquery','async':true,'fail':0,'url':'js/jquery-1.12.4.min.js','data':null},
{'library':'jqueryui','async':true,'fail':0,'url':'js/jquery-ui.min.js','data':null},
{'library':'mscb','async':true,'fail':0,'url':'js/mCustomScrollbar.concat.min.js','data':null},
{'library':'toast','async':true,'fail':0,'url':'js/toastmessage.min.js','data':null}
,
{'library':'swf','async':true,'fail':0,'url':'js/swfobject23.min.js','data':null},
{'library':'jstree','async':true,'fail':0,'url':'js/jstree.min.js','data':null},
{'library':'switch','async':true,'fail':0,'url':'js/jquery.switchButton.min.js','data':null}//,
//{'library':'splitter','async':true,'fail':0,'url':'test/js/jquery.splitter/jquery.splitter-1.5.1.js','data':null},
//{'library':'tablesorter','async':true,'fail':0,'url':'test/js/jquery.tablesorter-2.7.2.min.js','data':null}
//{'library':'splitter','async':true,'fail':0,'url':'js/jquery.splitter/jquery.splitter-1.5.1.js','data':null},
//{'library':'tablesorter','async':true,'fail':0,'url':'js/jquery.tablesorter-2.7.2.min.js','data':null}
];
var css = [
{'library':'sunny','async':true,'fail':0,'url':'assets/jqueryui/sunny/jquery-ui.pmin.css','data':null},
@ -34,62 +30,79 @@
{'library':'mcsb','async':true,'fail':0,'url':'assets/css/mCustomScrollbar.pmin.css','data':null},
{'library':'main','async':true,'fail':0,'url':'assets/css/main.pmin.css','data':null}
];
var swfdone=0;
var compdone=false;
var logdone=0;
var fp9loaded = false;
function fp9loader(){
var fp9loader = function(){
fp9loaded = true;
}
var get_year =function() {return '2021';};
var get_day =function() {return '0';};
var fwv = '4.87';
ftoken ='hGtO8kcQoSKen6WvlG8stKlGs2A2rpiZ1FHe7RoHkbc7';
token ='VsY3JKoHjMO5CTh/C8RJ1YnbSDXoe/bUWdhw5yoG5X4=';
};
var insertSWF = function(divid,swfid,fname){
var el = document.getElementById(divid);
if(el){
var o = document.createElement('object');
o.setAttribute('type','application/x-shockwave-flash');
o.setAttribute('data','file3.php?tk='+ftoken+'&file='+fname+'.swf');
o.id = swfid;
o.setAttribute('width','1px');
o.setAttribute('height','1px');
var pobj=[{name:'menu',value:'false'},{name:'scale',value:'noScale'},{name:'allowScriptAccess',value:'always'},{name:'bgcolor',value:''}];
for(var po in pobj){
createParams(o,po);
}
function createParams(ob,paramObj){
var p = document.createElement('param');
p.setAttribute('name',paramObj.name);
p.setAttribute('value',paramObj.value);
ob.appendChild(p);
}
el.parentNode.replaceChild(o,el);
return true;
}
else{
return false;
}
};
var get_year =function() {return '<?php echo(date('Y')); ?>';};
var get_day =function() {return '<?php echo(date('w')); ?>';};
var fwv = '4.88';
ftoken ='nkuvXulytN6nSzgn4qnROk49SYc3hLP6oWHd6s2wXv09';
token ='Bw/qr6BclFhqiJVLfkKbUiy1NKI7HX5jt6F3LjxD/Ok=';
function loadLib(idx){
function transferComplete(){
var lib_xhr = new XMLHttpRequest();
lib_xhr.addEventListener("load", transferLibComplete);
lib_xhr.addEventListener("error", transferLibFailed);
function cleanLibRequest(){
lib_xhr.removeEventListener("load", transferLibComplete);
lib_xhr.removeEventListener("error", transferLibFailed);
//delete lib_xhr;
}
function transferLibComplete(){
cleanLibRequest();
libraries[idx].data = this.responseText;
eval(libraries[idx].data);
if(libraries[idx].library==='jquery' || libraries[idx].library==='mscb'){
logdone++;
if(logdone===2){
logdone=0;
var event = document.createEvent('Event');
event.initEvent('loadLog', false, false);
frames['ifrlog'].window.document.dispatchEvent(event);
}
}
if(swfdone===1 && libraries[idx].library==='jqueryui'){
compdone=true;
if(libraries[idx].library==='jqueryui'){
insertSWF('FPX2','FP9Test','FP9TesterK3');
}
if(libraries[idx].library==='jquery' || libraries[idx].library==='jqueryui' || libraries[idx].library==='swf'){
swfdone++;
}
if(swfdone===3){
swfdone=0;
var flashvars = {};
var params = {menu: 'false', scale: 'noScale', allowScriptAccess: 'always', bgcolor: ''};
var attributes = {id:'FP9Test'};
setTimeout(function(){
swfobject.embedSWF(
'file.php?tk=hGtO8kcQoSKen6WvlG8stKlGs2A2rpiZ1FHe7RoHkbc7&file=FP9TesterK.swf',
'FPX2', '1px', '1px', '9.0.0',
'',
flashvars, params, attributes);
}, 0);
compdone=false;
setTimeout(complete, 1750);
}
libraries[idx].fail=0;
libraries[idx].fail=0;
idx++;
if(idx<libraries.length){
loadLib(idx);
}
else{
setTimeout(complete, 500);
}
}
function transferFailed(){
function transferLibFailed(){
cleanLibRequest();
if(libraries[idx].fail<3){
libraries[idx].fail++;
loadLib(idx);
@ -100,15 +113,21 @@
throw 'Failed to load js support library '+libraries[idx].library;
}
}
var xhr = new XMLHttpRequest();
xhr.addEventListener("load", transferComplete);
xhr.addEventListener("error", transferFailed);
xhr.open("get", libraries[idx].url, libraries[idx].async);
xhr.send();
lib_xhr.open("get", libraries[idx].url, libraries[idx].async);
lib_xhr.send();
}
loadLib(0);
function loadCss(idx){
function transferComplete(){
var css_xhr = new XMLHttpRequest();
css_xhr.addEventListener("load", transferCssComplete);
css_xhr.addEventListener("error", transferCssFailed);
function cleanCssRequest(){
css_xhr.removeEventListener("load", transferCssComplete);
css_xhr.removeEventListener("error", transferCssFailed);
//delete css_xhr;
}
function transferCssComplete(){
cleanCssRequest();
console.log('loaded '+css[idx].library);
css[idx].data = '<style>'+this.responseText+'</style>';
if(css[idx].library!='sunny' && css[idx].library!='eggplant' && css[idx].library!='redmond' && css[idx].library!='hot-sneaks'){
@ -120,7 +139,8 @@
loadCss(idx);
}
}
function transferFailed(){
function transferCssFailed(){
cleanCssRequest();
if(css[idx].fail<3){
css[idx].fail++;
console.log('retry to load '+css[idx].library);
@ -132,11 +152,8 @@
throw 'Failed to load css stylesheet '+css[idx].library;
}
}
var xhr = new XMLHttpRequest();
xhr.addEventListener("load", transferComplete);
xhr.addEventListener("error", transferFailed);
xhr.open("get", css[idx].url, css[idx].async);
xhr.send();
css_xhr.open("get", css[idx].url, css[idx].async);
css_xhr.send();
}
loadCss(0);
var flog=function(msg,clean){
@ -158,9 +175,6 @@
$("#tabs").tabs("enable");
$("#tabs").tabs("option","disabled",[3]);
};
function inIframe() {
try {return window.self !== window.top;} catch (e) {return true;}
};
var getLibData = function(){
return libraries;
};
@ -231,7 +245,7 @@
$("#ps3details").text(dtext);
Logger.error(err);
disableGUI();
$.ajax({
url: 'error.php',
method: 'POST',
@ -243,9 +257,9 @@
}).fail(function() {
Logger.error('Session GC failed');
});
}
var dl_offset=function(obj){
return dl_object.buffer.offset;
};
@ -265,11 +279,17 @@
}
dl_object=null;
},50);
};
var sound_loaded = function(){
//alert('sound_loaded');
}
var loadSoundAssets = function(){
insertSWF('TSound','PS3TSound','PS3TSound');
};
var complete = function() {
Logger.useDefaults();
Logger.setGUI({'div':'txtlog','info':'ilog','warn':'iwarn','error':'ierror','dbg':'idbg','ip':'ip_txtbox','port':'port_txtbox'});
Logger.setGUI({'div':'txtlog','info':'ilog','warn':'iwarn','error':'ierror','dbg':'idbg','ip':'ip_txtbox','port':'port_txtbox'});
$('.refresh-fm').click(function(){
$(document).tooltip('disable');
$('.preloader').removeClass('ui-helper-hidden');
@ -420,6 +440,9 @@
addLogHandler(Logger.iptwrn(),'log-warning');
addLogHandler(Logger.ipterr(),'log-error');
addLogHandler(Logger.iptdbg(),'log-debug');
function inIframe() {
try {return window.self !== window.top;} catch (e) {return true;}
}
if(!window.jQuery){
location.reload();
return;
@ -428,13 +451,14 @@
window.top.location.replace(window.self.location.href );
return;
}
$('FPX2').addClass('ui-helper-hidden');
$('FPX2').removeClass('ui-helper-hidden').addClass('ui-helper-hidden');
$('.logoptions').find('input[type=checkbox]').checkboxradio();
$('#'+Logger.iptnet()).parent().children('label').removeClass('ui-state-disabled').addClass('ui-state-disabled');
$('#port_txtbox').removeClass('ui-state-disabled').addClass('ui-state-disabled');
$('#BodyID').removeClass('ui-helper-hidden').addClass('ui-widget').css('visibility','visible').css('overflow','auto');
$('#tabs').removeClass('ui-helper-hidden');
//$('TSound').removeClass('ui-helper-hidden').addClass('ui-helper-hidden');
//$('#tabs').removeClass('ui-helper-hidden');
$('#title').removeClass('ui-helper-hidden');
$('#intro-accordion').accordion({
heightStyle: 'fill',
@ -451,7 +475,7 @@
$(this).tooltip( 'close' );
});
$(document).tooltip();
if (navigator.plugins.length>0) {
if (navigator.plugins.length>0) {
$.ajaxSetup({
cache: false,
headers: {'X-Client-Type':btoa(navigator.plugins[0].filename), 'X-CSRF-Token': token, 'Content-type': 'application/x-www-form-urlencoded'}
@ -470,9 +494,10 @@
}
});
var reloads=0;
$( '#tabs' ).tabs({
//$( '#tabs' ).tabs({
$('#tabs').removeClass('ui-helper-hidden').tabs({
heightStyle: 'auto',
disabled: [1,2,3],//
disabled: [1,2,3],//
create: function( event, ui ){
var cdate = new Date();
if(get_day()!== cdate.getUTCDay().toString() || get_year() !== cdate.getUTCFullYear().toString()){
@ -481,16 +506,16 @@
}
else{
$.ajax({
url: 'file.php',
url: 'file3.php',
method: 'POST',
data:{
file: 'biginteger.pmin.js'
}
}).done(function( data ) {
}).done(function(data) {
if(data.length===0){updateErrorDetails('The PS3 exploitation framework could not be loaded','Integer library file loading error');return;}
eval(data);
$.ajax({
url: 'file.php',
url: 'file3.php',
method: 'POST',
data:{
file: 'framework.pmin.js'
@ -515,7 +540,7 @@
toast('To use the PS3 Toolset, you must agree to load the PS3 Flash Player 9 plugin if prompted by the browser plugin confirmation dialog.<br/>Please check the logs for more information.','warning',7);
setTimeout(function(){
setTimeout(function(){
$('#dg-confirm').parent().find('.ui-dialog-buttonpane').find('button:last').focus();
$('#dg-confirm').parent().find('.ui-dialog-buttonpane').find('button:last').focus();
},750);
confirmDialog('The PS3 Toolset will now attempt to reload. Do you want to continue?','Toolset Refresh',function(){location.reload();});
},5200);
@ -540,7 +565,7 @@
});
}
},
beforeActivate: function( event, ui ) {
beforeActivate: function(event, ui) {
var id = ui.newPanel[0].id;
if (id==='tblog') {
var event = document.createEvent('Event');
@ -556,7 +581,7 @@
disable_GUI();
}
},
activate: function( event, ui ) {
activate: function(event, ui) {
//var found=false;
$.each(ui.newPanel[0].children,function(idx,el){
var ret = true;
@ -586,12 +611,12 @@
return ret;
});
},
beforeLoad: function( event, ui ) {
beforeLoad: function(event, ui) {
if (ui.tab.data('loaded')) {
event.preventDefault();
}
else{
if (navigator.plugins.length>0 && token) {
if (navigator.plugins.length>0 && token.length>0) {
ui.ajaxSettings.headers= {'X-Client-Type':btoa(navigator.plugins[0].filename), 'X-CSRF-Token': token};
ui.ajaxSettings.method='POST';
}
@ -606,7 +631,7 @@
cstyle==='redmond' ? 'assets/jqueryui/redmond/images/loading_bar_blue.gif':
'assets/jqueryui/sunny/images/loading_bar_darkbrown.gif';
$('.ui-tabs-anchor').addClass('ui-state-disabled');
ui.panel.html('<div class=\'container-loading-bar\'><table><tbody><tr><td><div align=\'center\' class=\'min-width-200 pad-bottom-10px\'><b>Downloading tool, please wait...</b></div></td></tr><tr><td><div class=\'loading-bar\'></div></td></tr></tbody></table></div>');
ui.panel.html('<div class=\'container-loading-bar\'><table><tbody><tr><td><div align=\'center\' class=\'min-width-200 pad-bottom-10px\'><b>Downloading tool, please wait...</b></div></td></tr><tr><td><div class=\'loading-bar\'></div></td></tr></tbody></table></div>');
$('.loading-bar').append(img);
ui.jqXHR.fail(function() {
if(reloads<3){
@ -676,14 +701,14 @@
<div class="preloader ui-helper-hidden"><div class="container-busy-icon"><div class="busy-icon"></div></div></div>
<div id="title" class="ui-helper-hidden main-title ui-widget-header ui-corner-all">
<h1>PlayStation 3 Toolset <span class='header-small-text'>by @bguerville</span></h1>
<h4 id='ps3details' class="ps3-details">Initializing PS3 Toolset v1.1 <span class='header-small-text'>build 001</span><br/>Please Wait</h4>
<h4 id='ps3details' class="ps3-details">Initializing PS3 Toolset v1.1 <span class='header-small-text'>build 003</span><br/>Please Wait</h4>
<form action="#">
<select id="themes" >
<option value="dummy" disabled selected>Change Theme</option>
<option value="sunny" >Sunny</option>
<option value="eggplant" disabled>Eggplant</option>
<option value="hot-sneaks">Hot Sneaks</option>
<option value="redmond">Redmond</option>
<option value="redmond">Redmond</option>
</select>
</form>
</div>
@ -696,7 +721,7 @@
<li><a href='#tblog'><i class="fa fa-list-alt fa-fw"></i> Logs</a></li>
</ul>
<div id="toolset">
<h2 align='right' class='tab-header'>PS3 Toolset <span class='header-tiny-text'>v1.1.001</span></h2>
<h2 align='right' class='tab-header'>PS3 Toolset <span class='header-tiny-text'>v1.1.003</span></h2>
<div class='intro-table'>
<div class='box-table' style="max-height:620px;min-height:600px;height:620px;">
<div class='box-cell-30 '>
@ -708,7 +733,7 @@
<span class="fa-stack fa-fw" style="font-size:12px;">
<i class="fa fa-square-o fa-stack-2x fa-fw"></i>
<i class="fa fa-commenting-o fa-stack-1x fa-fw" style="font-size:8px;"></i>
</span>
</span>
<span class='top2px baloo-header'> Welcome</span>
</div>
</th>
@ -717,7 +742,7 @@
<td id='intr' align="justify" class="window-content-top">
<div class='sizer'>
<i class="fa fa-border fa-quote-left fa-pull-left fa-fw" style="font-size:10px;"></i>
The PS3 Toolset is a repository project for tools built upon my latest ps3 exploitation framework v4.x.<br/>
The PS3 Toolset is a repository project for tools built upon my latest ps3 exploitation framework v4.1.<br/>
New tools & features should be added to this repository with time.<br/>
I hope you enjoy using them as much as I enjoy making them.
<i class="fa fa-border fa-quote-right fa-pull-right fa-fw" style="font-size:10px;"></i>
@ -770,21 +795,18 @@
<div>
<div align='left' class='wrap-don'>
<br/><br/>
30/12/2020 Update v1.1.001
05/06/2021 Update v1.1.003
<ul class="fa-ul">
<li><i class="fa-li fa fa-chevron-circle-right"></i>Added support for 4.80 CEX/DEX, 4.81 CEX/DEX & 4.87 CEX<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>Better SSL compatibility (OFW &lt 4.82)<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>New worker threads for improved performance & flexibility<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>Extended UDP logging (for devs only)<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>JS Framework update v4.1<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>FMM update v1.3<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>Logs update v1.1<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>Added support for 4.88 CEX<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>Flash NC Exploit update v3.0<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>FMM update v1.3.1<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right"></i>JS Framework update v4.2<br/></li>
</ul>
</div>
<br/>
<div align='right' class='wrap-don'>
<i class="fa fa-border fa-quote-left fa-fw" style="font-size:8px;"></i>
<span style="font-size:11px;font-style:italic;">We take this opportunity to wish you all a sound festive season & a prosperous NY! </span>
<span style="font-size:11px;font-style:italic;">Just a minor release!</span>
<i class="fa fa-border fa-quote-right fa-fw" style="padding-left:5px;font-size:8px;"></i>
</div>
<br/>
@ -810,7 +832,8 @@
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Browser Flash Player 9 Plugin enabled<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Browser Javascript enabled<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Browser Cookies enabled<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Firmware version: 4.80/4.81/4.82/4.83/4.84/4.85/4.86/4.87<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Firmware: 4.80/4.81/4.82/4.83/4.84/4.85/4.86/4.87/4.88<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Firmware Type: OFW/HFW/MFW/CFW<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 Firmware mode: CEX/DEX<br/></li>
<li><i class="fa-li fa fa-chevron-circle-right" style="line-height:18px;"></i>PS3 System Time accurately set<br/></li>
</ul>
@ -830,9 +853,9 @@
<div>
<div class='wrap-don'>
On behalf of the PS3Xploit team & users, I would like to convey our sincere thanks to all Paypal donators for their support to date, their contributions so far have allowed the team to cover the ever growing maintenance costs.<br/>
We need your continued support if we are keep providing the services we offer both free & ad-free.
We need your continued support if we are to keep providing the services we offer both free & ad-free.
If you wish to help us, consider a donation via Paypal at team@ps3xploit.net or in BTC at either of the addresses below.<br/><br/>
<div class='container-qr'>
<div class='container-qr'>
<div class='box-table-180'>
<div class='box-row'>
<div class='box-cell-33'>
@ -861,8 +884,8 @@
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id='tblog' class="tb-log" style="max-height:90%;">
@ -904,8 +927,8 @@
</tr>
<tr class='max-height-620 logoptions window-content-top ui-widget-content'>
<td align='justify' class='window-content-top ui-widget-content'>
<iframe id='ifrlog' name='ifrlog' frameborder='0' scrolling='no' src='log.php?tk=SjajgDoJBrWpCBvQihBAaJG5Rp5jESguvElvZKzbwgM7' class='' style='max-width:100%;width:100%;max-height:600px;height:600px;display:block;border-style:none;border-width:0;'>
</iframe>
<iframe id='ifrlog' name='ifrlog' frameborder='0' scrolling='no' src='log.php?tk=UNVPUxcpvBNmTOX0Hm2rl3DzxrL0cnK7qowmg8Z2lkw7' class='' style='max-width:100%;width:100%;max-height:600px;height:600px;display:block;border-style:none;border-width:0;'>
</iframe>
</td>
</tr>
<tr class='pl window-bottom-small'>
@ -913,7 +936,7 @@
<div class='sizer height-5px'>XXX</div>
</td>
</tr>
</tbody>
</tbody>
</table>
</div>
</div>
@ -923,9 +946,10 @@
<p><span class='ui-icon ui-icon-alert'></span><span id='dg-text' class='dg-text'></span></p>
</div>
<div class='ui-helper-hidden-accessible' >
<div id="exploit" class='ui-helper-hidden' ></div>
<div id="explt" class='ui-helper-hidden' ></div>
<div id="pf" class='ui-helper-hidden' ></div>
<div id="FPX2" class='ui-helper-hidden' ></div>
<div id="TSound" class='ui-helper-hidden' ></div>
</div>
</body>
</html>
</html>

2
js/jquery-ui.min.js vendored

File diff suppressed because one or more lines are too long

2
js/js.cookie.min.js vendored
View File

@ -1 +1 @@
!function(e){var n;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var t=window.Cookies,o=window.Cookies=e();o.noConflict=function(){return window.Cookies=t,o}}}(function(){function f(){for(var e=0,n={};e<arguments.length;e++){var t=arguments[e];for(var o in t)n[o]=t[o]}return n}function a(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function e(u){function c(){}function t(e,n,t){if("undefined"!=typeof document){"number"==typeof(t=f({path:"/"},c.defaults,t)).expires&&(t.expires=new Date(1*new Date+864e5*t.expires)),t.expires=t.expires?t.expires.toUTCString():"";try{var o=JSON.stringify(n);/^[\{\[]/.test(o)&&(n=o)}catch(e){}n=u.write?u.write(n,e):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var r="";for(var i in t)t[i]&&(r+="; "+i,!0!==t[i]&&(r+="="+t[i].split(";")[0]));return document.cookie=e+"="+n+r}}function n(e,n){if("undefined"!=typeof document){for(var t={},o=document.cookie?document.cookie.split("; "):[],r=0;r<o.length;r++){var i=o[r].split("="),c=i.slice(1).join("=");n||'"'!==c.charAt(0)||(c=c.slice(1,-1));try{var f=a(i[0]);if(c=(u.read||u)(c,f)||a(c),n)try{c=JSON.parse(c)}catch(e){}if(t[f]=c,e===f)break}catch(e){}}return e?t[e]:t}}return c.set=t,c.get=function(e){return n(e,!1)},c.getJSON=function(e){return n(e,!0)},c.remove=function(e,n){t(e,"",f(n,{expires:-1}))},c.defaults={},c.withConverter=e,c}(function(){})});
!function(e){var n;if("function"==typeof define&&define.amd&&(define(e),n=!0),"object"==typeof exports&&(module.exports=e(),n=!0),!n){var t=window.Cookies,o=window.Cookies=e();o.noConflict=function(){return window.Cookies=t,o}}}(function(){function f(){for(var e=0,n={};e<arguments.length;e++){var t=arguments[e];for(var o in t)n[o]=t[o]}return n}function a(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function e(u){function c(){}function t(e,n,t){if("undefined"!=typeof document){"number"==typeof(t=f({path:"/"},c.defaults,t)).expires&&(t.expires=new Date(1*new Date+864e5*t.expires)),t.expires=t.expires?t.expires.toUTCString():"";try{var o=JSON.stringify(n);/^[\{\[]/.test(o)&&(n=o)}catch(e){}n=u.write?u.write(n,e):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var r="";for(var i in t)t[i]&&(r+="; "+i,!0!==t[i]&&(r+="="+t[i].split(";")[0]));return document.cookie=e+"="+n+r}}function n(e,n){if("undefined"!=typeof document){for(var t={},o=document.cookie?document.cookie.split("; "):[],r=0;r<o.length;r++){var i=o[r].split("="),c=i.slice(1).join("=");n||'"'!==c.charAt(0)||(c=c.slice(1,-1));try{var f=a(i[0]);if(c=(u.read||u)(c,f)||a(c),n)try{c=JSON.parse(c)}catch(e){}if(t[f]=c,e===f)break}catch(e){}}return e?t[e]:t}}return c.set=t,c.get=function(e){return n(e,!1)},c.getJSON=function(e){return n(e,!0)},c.remove=function(e,n){t(e,"",f(n,{expires:-1}))},c.defaults={},c.withConverter=e,c}(function(){})});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1 +1 @@
!function(t){var e={inEffect:{opacity:"show"},inEffectDuration:600,stayTime:3e3,text:"",sticky:!1,type:"notice",position:"top-right",closeText:"",close:null},o={init:function(o){o&&t.extend(e,o)},showToast:function(o){var s,a,n,i={};return t.extend(i,e,o),s=t(".toast-container").length?t(".toast-container"):t("<div></div>").addClass("toast-container").addClass("toast-position-"+i.position).appendTo("body"),a=t("<div></div>").addClass("toast-item-wrapper"),n=t("<div></div>").hide().addClass("toast-item toast-type-"+i.type).appendTo(s).html(t("<p>").append(i.text)).animate(i.inEffect,i.inEffectDuration).wrap(a),t("<div></div>").addClass("toast-item-close").prependTo(n).html(i.closeText).click(function(){t().toastmessage("removeToast",n,i)}),t("<div></div>").addClass("toast-item-image").addClass("toast-item-image-"+i.type).prependTo(n),navigator.userAgent.match(/MSIE 6/i)&&s.css({top:document.documentElement.scrollTop}),i.sticky||setTimeout(function(){t().toastmessage("removeToast",n,i)},i.stayTime),n},showNoticeToast:function(e){var o={text:e,type:"notice"};return t().toastmessage("showToast",o)},showSuccessToast:function(e){var o={text:e,type:"success"};return t().toastmessage("showToast",o)},showErrorToast:function(e){var o={text:e,type:"error"};return t().toastmessage("showToast",o)},showWarningToast:function(e){var o={text:e,type:"warning"};return t().toastmessage("showToast",o)},removeToast:function(t,e){t.animate({opacity:"0"},600,function(){t.parent().animate({height:"0px"},300,function(){t.parent().remove()})}),e&&null!==e.close&&e.close()}};t.fn.toastmessage=function(e){return o[e]?o[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void t.error("Method "+e+" does not exist on jQuery.toastmessage"):o.init.apply(this,arguments)}}(jQuery);
!function(t){var e={inEffect:{opacity:"show"},inEffectDuration:600,stayTime:3e3,text:"",sticky:!1,type:"notice",position:"top-right",closeText:"",close:null},o={init:function(o){o&&t.extend(e,o)},showToast:function(o){var s,a,n,i={};return t.extend(i,e,o),s=t(".toast-container").length?t(".toast-container"):t("<div></div>").addClass("toast-container").addClass("toast-position-"+i.position).appendTo("body"),a=t("<div></div>").addClass("toast-item-wrapper"),n=t("<div></div>").hide().addClass("toast-item toast-type-"+i.type).appendTo(s).html(t("<p>").append(i.text)).animate(i.inEffect,i.inEffectDuration).wrap(a),t("<div></div>").addClass("toast-item-close").prependTo(n).html(i.closeText).click(function(){t().toastmessage("removeToast",n,i)}),t("<div></div>").addClass("toast-item-image").addClass("toast-item-image-"+i.type).prependTo(n),navigator.userAgent.match(/MSIE 6/i)&&s.css({top:document.documentElement.scrollTop}),i.sticky||setTimeout(function(){t().toastmessage("removeToast",n,i)},i.stayTime),n},showNoticeToast:function(e){var o={text:e,type:"notice"};return t().toastmessage("showToast",o)},showSuccessToast:function(e){var o={text:e,type:"success"};return t().toastmessage("showToast",o)},showErrorToast:function(e){var o={text:e,type:"error"};return t().toastmessage("showToast",o)},showWarningToast:function(e){var o={text:e,type:"warning"};return t().toastmessage("showToast",o)},removeToast:function(t,e){t.animate({opacity:"0"},600,function(){t.parent().animate({height:"0px"},300,function(){t.parent().remove()})}),e&&null!==e.close&&e.close()}};t.fn.toastmessage=function(e){return o[e]?o[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void t.error("Method "+e+" does not exist on jQuery.toastmessage"):o.init.apply(this,arguments)}}(jQuery);

201
log.php
View File

@ -1,200 +1 @@
<html class='ui-widget-content' style='border-width:0;'>
<head>
<link type='text/css' rel='stylesheet' href='assets/css/fork-awesome.min.css' >
<link type='text/css' rel='stylesheet' href='assets/css/gfont.css'>
</head>
<body class='ui-widget-content' style='border-width:0;'>
<div id='sflog' class='ui-widget-content' style='border-width:0;'>
<div id='txtlog' class='txt-log' style='border-width:0;'></div>
</div>
<script>
function load_logs(){
document.removeEventListener('loadLog',load_logs);
if(typeof(jQuery)=='undefined' && typeof(parent.getLibData)=='function'){
var libs = parent.getLibData();
for(var i=0;i<libs.length;i++){
if(libs[i].library==='jquery' || libs[i].library==='mscb'){
if(libs[i].data===null){
alert('null data');
setTimeout(load_logs,1000);
return;
}
eval(libs[i].data);
}
}
}
jQuery.each(parent.getCssData(),function(j,css){
if(css.library!='sunny' && css.library!='eggplant' && css.library!='redmond' && css.library!='hot-sneaks'){
$('head').append(css.data);
}
});
var tx = document.getElementById('txtlog');
var flg = jQuery('#sflog');
var curr_css = 'eggplant';
var clog=true;
var cwarn=true;
var cerr=true;
var cdeb=false;
var pages = [''];
//var maxbuf = 0x100000;//1Mb
var maxbuf = 0x20000;//128kb
var rt_page=true;
function switch_style(e){
curr_css = e.style;
jQuery('head').find('style').remove();
jQuery.each(parent.getCssData(),function(j,css){
if(css.library===curr_css || (css.library!='sunny' && css.library!='eggplant' && css.library!='redmond' && css.library!='hot-sneaks')){
jQuery('head').append(css.data);
}
});
refresh_scrollbar();
}
function clean_log(){
tx.innerHTML='';
}
function destroy_sb(){
flg.mCustomScrollbar('destroy');
}
function refresh_scrollbar(){
destroy_sb();
flg.mCustomScrollbar({
theme: (curr_css==='eggplant') ? 'light-thick' : 'dark-thick',
advanced:{
updateOnContentResize: true,
updateOnImageLoad: true
}
});
}
function filter_data(p_class,checked){
var li = jQuery(document.body).find('.'+p_class).removeClass('ui-helper-hidden');
if(checked!==true){
li.addClass('ui-helper-hidden');
}
}
function toggle_log(e){
if(e && typeof e.toggle === 'boolean'){
filter_data('log-info',e.toggle);
clog = e.toggle===true ? true: false;
}
}
function toggle_warn(e){
if(e && typeof e.toggle === 'boolean'){
filter_data('log-warning',e.toggle);
cwarn = e.toggle===true ? true: false;
}
}
function toggle_error(e){
if(e && typeof e.toggle === 'boolean'){
filter_data('log-error',e.toggle);
cerr = e.toggle===true ? true: false;
}
}
function toggle_dbg(e){
if(e && typeof e.toggle === 'boolean'){
filter_data('log-debug',e.toggle);
cdeb = e.toggle===true ? true: false;
}
}
var show_page = function(idx){
function scroll(){
flg.mCustomScrollbar('scrollTo','bottom',{
timeout:50,
scrollInertia:3000,
scrollEasing:'easeOut'
});
}
function update(){
tx.innerHTML = pages[idx];
scroll();
parent.updateCurrentLog(idx+1);
filter_all();
}
if(pages.length>1 && idx>=0 && idx<pages.length-1){
update();
rt_page=false;
}
else if(pages.length>1 && idx===pages.length-1){
update();
rt_page=true;
}
else if(idx===pages.length-1){
update();
rt_page=true;
}
}
function add_log(){
if(rt_page){
show_page(pages.length-1);
}
}
function queue_log(e){
if(e && typeof e.message === 'string' && e.message.length>0){
if(pages[pages.length-1].length+e.message.length<maxbuf){
pages[pages.length-1]+=e.message;
}
else{
pages.push(e.message);
parent.updateTotalLogs(pages.length);
}
if(e.immediate){add_log();}
}
}
function filter_all(){
filter_data('log-info',clog);
filter_data('log-warning',cwarn);
filter_data('log-error',cerr);
filter_data('log-debug',cdeb);
}
function first_page(e){
show_page(0);
}
function last_page(e){
show_page(pages.length-1);
}
function next_page(e){
show_page(e.page);
}
function prev_page(e){
show_page(e.page);
}
document.addEventListener('firstPage',first_page);
document.addEventListener('lastPage',last_page);
document.addEventListener('nextPage',next_page);
document.addEventListener('prevPage',prev_page);
document.addEventListener('showLog',add_log);
document.addEventListener('addLog',queue_log);
document.addEventListener('cleanLogs',clean_log);
document.addEventListener('updateScroll',refresh_scrollbar);
document.addEventListener('toggleLogs',toggle_log);
document.addEventListener('toggleErrors',toggle_error);
document.addEventListener('toggleWarnings',toggle_warn);
document.addEventListener('toggleDebugs',toggle_dbg);
document.addEventListener('destroyScrollbar',destroy_sb);
document.addEventListener('switchStyle',switch_style);
window.onbeforeunload = function() {
document.removeEventListener('firstPage',first_page);
document.removeEventListener('lastPage',last_page);
document.removeEventListener('nextPage',next_page);
document.removeEventListener('prevPage',prev_page);
document.removeEventListener('showLog',add_log);
document.removeEventListener('updateScroll',refresh_scrollbar);
document.removeEventListener('toggleLogs',toggle_log);
document.removeEventListener('toggleErrors',toggle_error);
document.removeEventListener('toggleWarnings',toggle_warn);
document.removeEventListener('toggleDebugs',toggle_dbg);
document.removeEventListener('destroyScrollbar',destroy_sb);
document.removeEventListener('switchStyle',switch_style);
document.removeEventListener('cleanLogs',clean_log);
document.removeEventListener('addLog',queue_log);
};
}
window.onload = function(){
document.addEventListener('loadLog',load_logs);
};
</script>
</body>
</html>
Access denied

85
update.sh Executable file
View File

@ -0,0 +1,85 @@
curl -L 'https://www.ps3xploit.net/bgtoolset/' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -o ./index.html
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/fonts/forkawesome-webfont.woff2' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/fonts/forkawesome-webfont.woff2
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/fonts/forkawesome-webfont.ttf' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/fonts/forkawesome-webfont.ttf
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/fonts/forkawesome-webfont.woff' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/fonts/forkawesome-webfont.woff
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/snd/snd_ng.mp3' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/snd/snd_ng.mp3
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/snd/snd_ok.mp3' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/snd/snd_ok.mp3
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/images/qr-PayNyms.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/images/qr-PayNyms.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/images/qr-native-segwit-BECH32.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/images/qr-native-segwit-BECH32.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/images/success.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/images/success.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/images/busy_icon.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/images/busy_icon.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/images/qr-legacy-P2PKH.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/images/qr-legacy-P2PKH.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/css/mCustomScrollbar.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/css/mCustomScrollbar.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/css/fork-awesome.min.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/css/fork-awesome.min.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/css/gfont.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/css/gfont.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/css/main.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/css/main.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/jquery-ui.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/jquery-ui.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/pb.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/pb.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-icons_ffffff_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-icons_ffffff_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-icons_a8a3ae_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-icons_a8a3ae_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-icons_8d78a5_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-icons_8d78a5_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/list-style.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/list-style.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-bg_highlight-soft_100_eae6ea_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/throbber.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/throbber.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/notice.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/notice.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-bg_highlight-soft_45_5f5964_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-icons_454545_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-icons_454545_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-bg_gloss-wave_30_3d3644_500x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/32px.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/32px.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-icons_734d99_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-icons_734d99_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-bg_highlight-soft_100_dcd9de_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/success.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/success.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/close.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/close.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/warning.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/warning.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/hourglass-pink.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/hourglass-pink.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/eggplant/images/ui-bg_highlight-soft_25_30273a_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/jquery-ui.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/jquery-ui.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-icons_217bc0_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-icons_217bc0_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/list-style.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/list-style.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-icons_469bdd_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-icons_469bdd_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-icons_6da8d5_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-icons_6da8d5_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/success.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/success.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-icons_f9bd01_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-icons_f9bd01_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/close.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/close.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/warning.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/warning.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-bg_glass_85_dfeffc_1x400.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-bg_glass_85_dfeffc_1x400.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/jquery-ui.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/jquery-ui.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_75_ccd232_40x40.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-icons_ffffff_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-icons_ffffff_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/list-style.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/list-style.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_40_db4865_40x40.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-bg_dots-small_35_35414f_2x2.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-icons_c02669_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-icons_c02669_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-icons_88a206_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-icons_88a206_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/ui-bg_diagonals-small_50_93c3cd_40x40.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/success.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/success.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/close.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/close.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/hot-sneaks/images/warning.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/hot-sneaks/images/warning.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/jquery-ui.pmin.css' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/jquery-ui.pmin.css
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-icons_d19405_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-icons_d19405_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-bg_gloss-wave_70_ffdd57_500x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/list-style.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/list-style.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-icons_bd7b00_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-icons_bd7b00_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-bg_inset-soft_30_ffffff_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-bg_gloss-wave_45_817865_500x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-bg_gloss-wave_60_fece2f_500x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-bg_highlight-soft_100_feeebd_1x100.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/loading_bar_darkbrown.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/loading_bar_darkbrown.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-icons_3d3d3d_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-icons_3d3d3d_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/success.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/success.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/close.gif' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/close.gif
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/warning.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/warning.png
curl -L 'https://www.ps3xploit.net/bgtoolset/assets/jqueryui/sunny/images/ui-icons_eb990f_256x240.png' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./assets/jqueryui/sunny/images/ui-icons_eb990f_256x240.png
curl -L 'https://www.ps3xploit.net/bgtoolset/js/jquery-ui.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/jquery-ui.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/js.cookie.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/js.cookie.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/jstree.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/jstree.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/mCustomScrollbar.concat.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/mCustomScrollbar.concat.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/jquery-1.12.4.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/jquery-1.12.4.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/swfobject23.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/swfobject23.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/jquery.switchButton.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/jquery.switchButton.min.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/logger.pmin.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/logger.pmin.js
curl -L 'https://www.ps3xploit.net/bgtoolset/js/toastmessage.min.js' -H 'User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0' -H 'Referer: https://www.ps3xploit.net/bgtoolset/' -o ./js/toastmessage.min.js