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 /
sharp /
install /
[ HOME SHELL ]
Name
Size
Permission
Action
check.js
1.25
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : check.js
// Copyright 2013 Lovell Fuller and others. // SPDX-License-Identifier: Apache-2.0 'use strict'; try { const { useGlobalLibvips, globalLibvipsVersion, log, spawnRebuild } = require('../lib/libvips'); const buildFromSource = (msg) => { log(msg); log('Attempting to build from source via node-gyp'); try { const addonApi = require('node-addon-api'); log(`Found node-addon-api ${addonApi.version || ''}`); } catch (err) { log('Please add node-addon-api to your dependencies'); return; } try { const gyp = require('node-gyp'); log(`Found node-gyp version ${gyp().version}`); } catch (err) { log('Please add node-gyp to your dependencies'); return; } log('See https://sharp.pixelplumbing.com/install#building-from-source'); const status = spawnRebuild(); if (status !== 0) { process.exit(status); } }; if (useGlobalLibvips()) { buildFromSource(`Detected globally-installed libvips v${globalLibvipsVersion()}`); } else if (process.env.npm_config_build_from_source) { buildFromSource('Detected --build-from-source flag'); } } catch (err) { const summary = err.message.split(/\n/).slice(0, 1); console.log(`sharp: skipping install check: ${summary}`); }
Close