Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.119.158.142
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
npm /
node_modules /
npm-user-validate /
[ HOME SHELL ]
Name
Size
Permission
Action
npm-user-validate.js
1.21
KB
-rw-r--r--
package.json
1.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : npm-user-validate.js
exports.email = email exports.pw = pw exports.username = username var requirements = exports.requirements = { username: { length: 'Name length must be less than or equal to 214 characters long', lowerCase: 'Name must be lowercase', urlSafe: 'Name may not contain non-url-safe chars', dot: 'Name may not start with "."', illegal: 'Name may not contain illegal character' }, password: {}, email: { valid: 'Email must be an email address' } } var illegalCharacterRe = new RegExp('([' + [ "'" ].join() + '])') function username (un) { if (un !== un.toLowerCase()) { return new Error(requirements.username.lowerCase) } if (un !== encodeURIComponent(un)) { return new Error(requirements.username.urlSafe) } if (un.charAt(0) === '.') { return new Error(requirements.username.dot) } if (un.length > 214) { return new Error(requirements.username.length) } var illegal = un.match(illegalCharacterRe) if (illegal) { return new Error(requirements.username.illegal + ' "' + illegal[0] + '"') } return null } function email (em) { if (!em.match(/^.+@.+\..+$/)) { return new Error(requirements.email.valid) } return null } function pw (pw) { return null }
Close