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
/
opt /
miniconda3 /
python /
include /
mamba /
[ HOME SHELL ]
Name
Size
Permission
Action
api
[ DIR ]
drwxrwxr-x
core
[ DIR ]
drwxrwxr-x
specs
[ DIR ]
drwxrwxr-x
util
[ DIR ]
drwxrwxr-x
version.hpp
1.18
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : version.hpp
// Copyright (c) 2019, QuantStack and Mamba Contributors // // Distributed under the terms of the BSD 3-Clause License. // // The full license is in the file LICENSE, distributed with this software. #ifndef LIBMAMBA_VERSION_HPP #define LIBMAMBA_VERSION_HPP #include <array> #include <string> #define LIBMAMBA_VERSION_MAJOR 1 #define LIBMAMBA_VERSION_MINOR 5 #define LIBMAMBA_VERSION_PATCH 8 // Binary version #define LIBMAMBA_BINARY_CURRENT 2 #define LIBMAMBA_BINARY_REVISION 0 #define LIBMAMBA_BINARY_AGE 0 #define __LIBMAMBA_STRINGIZE_IMPL(s) #s #define __LIBMAMBA_STRINGIZE(s) __LIBMAMBA_STRINGIZE_IMPL(s) #define LIBMAMBA_VERSION \ (LIBMAMBA_VERSION_MAJOR * 10000 + LIBMAMBA_VERSION_MINOR * 100 + LIBMAMBA_VERSION_PATCH) #define LIBMAMBA_VERSION_STRING \ __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MAJOR) \ "." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_MINOR) "." __LIBMAMBA_STRINGIZE(LIBMAMBA_VERSION_PATCH) namespace mamba { std::string version(); std::array<int, 3> version_arr(); } #endif
Close