Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
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
/
home /
syrihapj /
public_html /
node_modules /
file-type /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
6.98
KB
-rw-r--r--
index.js
23.09
KB
-rw-r--r--
license
1.08
KB
-rw-r--r--
package.json
1.9
KB
-rw-r--r--
readme.md
12.13
KB
-rw-r--r--
supported.js
3.8
KB
-rw-r--r--
util.js
2.22
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : util.js
'use strict'; exports.stringToBytes = string => [...string].map(character => character.charCodeAt(0)); const uint8ArrayUtf8ByteString = (array, start, end) => { return String.fromCharCode(...array.slice(start, end)); }; exports.readUInt64LE = (buffer, offset = 0) => { let n = buffer[offset]; let mul = 1; let i = 0; while (++i < 8) { mul *= 0x100; n += buffer[offset + i] * mul; } return n; }; exports.tarHeaderChecksumMatches = buffer => { // Does not check if checksum field characters are valid if (buffer.length < 512) { // `tar` header size, cannot compute checksum without it return false; } const MASK_8TH_BIT = 0x80; let sum = 256; // Intitalize sum, with 256 as sum of 8 spaces in checksum field let signedBitSum = 0; // Initialize signed bit sum for (let i = 0; i < 148; i++) { const byte = buffer[i]; sum += byte; signedBitSum += byte & MASK_8TH_BIT; // Add signed bit to signed bit sum } // Skip checksum field for (let i = 156; i < 512; i++) { const byte = buffer[i]; sum += byte; signedBitSum += byte & MASK_8TH_BIT; // Add signed bit to signed bit sum } const readSum = parseInt(uint8ArrayUtf8ByteString(buffer, 148, 154), 8); // Read sum in header // Some implementations compute checksum incorrectly using signed bytes return ( // Checksum in header equals the sum we calculated readSum === sum || // Checksum in header equals sum we calculated plus signed-to-unsigned delta readSum === (sum - (signedBitSum << 1)) ); }; exports.multiByteIndexOf = (buffer, bytesToSearch, startAt = 0) => { // `Buffer#indexOf()` can search for multiple bytes if (Buffer && Buffer.isBuffer(buffer)) { return buffer.indexOf(Buffer.from(bytesToSearch), startAt); } const nextBytesMatch = (buffer, bytes, startIndex) => { for (let i = 1; i < bytes.length; i++) { if (bytes[i] !== buffer[startIndex + i]) { return false; } } return true; }; // `Uint8Array#indexOf()` can search for only a single byte let index = buffer.indexOf(bytesToSearch[0], startAt); while (index >= 0) { if (nextBytesMatch(buffer, bytesToSearch, index)) { return index; } index = buffer.indexOf(bytesToSearch[0], index + 1); } return -1; }; exports.uint8ArrayUtf8ByteString = uint8ArrayUtf8ByteString;
Close