Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
yarn /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
yarn
1
KB
-rwxr-xr-x
yarn.cmd
34
B
-rwxr-xr-x
yarn.js
1015
B
-rwxr-xr-x
yarnpkg
42
B
-rwxr-xr-x
yarnpkg.cmd
30
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : yarn.js
#!/usr/bin/env node /* eslint-disable no-var */ /* eslint-disable flowtype/require-valid-file-annotation */ 'use strict'; var ver = process.versions.node; var majorVer = parseInt(ver.split('.')[0], 10); if (majorVer < 4) { console.error('Node version ' + ver + ' is not supported, please use Node.js 4.0 or higher.'); process.exit(1); // eslint-disable-line no-process-exit } else { try { require(__dirname + '/../lib/v8-compile-cache.js'); } catch (err) { // We don't have/need this on legacy builds and dev builds } // Just requiring this package will trigger a yarn run since the // `require.main === module` check inside `cli/index.js` will always // be truthy when built with webpack :( // `lib/cli` may be `lib/cli/index.js` or `lib/cli.js` depending on the build. var cli = require(__dirname + '/../lib/cli'); if (!cli.autoRun) { cli.default().catch(function(error) { console.error(error.stack || error.message || error); process.exitCode = 1; }); } }
Close