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 /
reproc++ /
[ HOME SHELL ]
Name
Size
Permission
Action
detail
[ DIR ]
drwxrwxr-x
arguments.hpp
1.43
KB
-rw-rw-r--
drain.hpp
3.36
KB
-rw-rw-r--
env.hpp
1.85
KB
-rw-rw-r--
export.hpp
469
B
-rw-rw-r--
input.hpp
643
B
-rw-rw-r--
reproc.hpp
5.72
KB
-rw-rw-r--
run.hpp
939
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : run.hpp
#pragma once #include <reproc++/drain.hpp> #include <reproc++/reproc.hpp> namespace reproc { template <typename Out, typename Err> std::pair<int, std::error_code> run(const arguments &arguments, const options &options, Out &&out, Err &&err) { process process; std::error_code ec; ec = process.start(arguments, options); if (ec) { return { -1, ec }; } ec = drain(process, std::forward<Out>(out), std::forward<Err>(err)); if (ec) { return { -1, ec }; } return process.stop(options.stop); } inline std::pair<int, std::error_code> run(const arguments &arguments, const options &options = {}) { struct options modified = options::clone(options); if (!options.redirect.discard && options.redirect.file == nullptr && options.redirect.path == nullptr) { modified.redirect.parent = true; } return run(arguments, modified, sink::null, sink::null); } }
Close