Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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 /
amatya /
quiz1 /
node_modules /
regex-parser /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
typings
[ DIR ]
dr-xr-xr-x
index.js
894
B
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict"; /** * RegexParser * Parses a string input. * * @name RegexParser * @function * @param {String} input The string input that should be parsed as regular * expression. * @return {RegExp} The parsed regular expression. */ var RegexParser = module.exports = function (input) { // Validate input if (typeof input !== "string") { throw new Error("Invalid input. Input must be a string"); } // Parse input var m = input.match(/(\/?)(.+)\1([a-z]*)/i); // If there's no match, throw an error if (!m) { throw new Error("Invalid regular expression format."); } // Filter valid flags: 'g', 'i', 'm', 's', 'u', and 'y' var validFlags = Array.from(new Set(m[3])).filter(function (flag) { return "gimsuy".includes(flag); }).join(""); // Create the regular expression return new RegExp(m[2], validFlags); };
Close