Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html /
kougakubu /
htdocs /
api /
yaju /
Delete
Unzip
Name
Size
Permission
Date
Action
.git
[ DIR ]
drwxrwxrwx
2025-04-07 13:23
lib
[ DIR ]
drwxrwxrwx
2025-04-07 13:23
list
[ DIR ]
drwxrwxrwx
2025-04-07 13:23
.gitignore
31
B
-rwxrwxrwx
2025-04-07 13:23
.htaccess
1
B
-rwxrwxrwx
2025-04-07 13:23
README.md
29
B
-rwxrwxrwx
2025-04-07 13:23
err.txt
0
B
-rw-r--r--
2026-07-23 18:39
gen.py
301
B
-rwxrwxrwx
2025-04-07 13:23
main.php
1.47
KB
-rwxrwxrwx
2025-04-07 13:37
main.py
354
B
-rwxrwxrwx
2025-04-07 13:23
out.txt
83
B
-rw-r--r--
2026-07-23 18:39
raw_data.txt
4.9
KB
-rwxrwxrwx
2025-04-07 13:23
Save
Rename
<?php use function PHPSTORM_META\type; if ($_SERVER['REQUEST_METHOD'] === 'POST') { // Method is POST // Add your code here $input = $_POST['input']; $input = mb_convert_encoding($input, 'UTF-8', 'auto'); exec('echo "' . $input . '" > out.txt'); exec('python3 /var/www/html/kougakubu/htdocs/api/yaju/main.py 2> err.txt', $output, $return_var); if ($output == null) { // Error occurred $response = array( 'success' => false, 'message' => 'Failed to process as JSON file.', 'status' => 400, 'result' => (object) array( 'input' => $input, 'output' => $output ) ); header('Content-Type: application/json, charset=UTF-8'); echo json_encode($response); exit; } else{ $response = array( 'success' => true, 'message' => 'Processed as JSON file.', 'status' => 200, 'result' => (object) array( 'input' => $input, 'output' => $output ) ); header('Content-Type: application/json'); echo json_encode($response); exit; } } else { // Method is not POST // Add your code here $response = array( 'success' => false, 'message' => 'Failed to process as JSON file.', 'status' => 400 ); header('Content-Type: application/json'); echo json_encode($response); }