PATH:
home
/
lab2454c
/
keebchat.com
/
apps
/
native
/
http
/
download_info
<?php # @*************************************************************************@ # @ @author Mansur Altamirov (Mansur_TL) @ # @ @author_url 1: https://www.instagram.com/mansur_tl @ # @ @author_url 2: http://codecanyon.net/user/mansur_tl @ # @ @author_email: highexpresstore@gmail.com @ # @*************************************************************************@ # @ ColibriSM - The Ultimate Modern Social Media Sharing Platform @ # @ Copyright (c) 21.03.2020 ColibriSM. All rights reserved. @ # @*************************************************************************@ if (empty($cl["is_logged"])) { cl_redirect("guest"); } else { if (file_exists($me["info_file"])) { header("Content-Description: File Transfer"); header("Content-Type: application/octet-stream"); header(cl_strf("Content-Disposition: attachment; filename=\"%s.html\"", $me['username'])); header("Expires: 0"); header("Cache-Control: must-revalidate"); header("Pragma: public"); header(cl_strf("Content-Length: %s", filesize($me["info_file"]))); flush(); readfile($me["info_file"]); unlink($me["info_file"]); cl_update_user_data($me['id'], array( 'info_file' => "" )); exit; } else { header('Content-Type: application/json'); $data = array( "status" => "500", "err_code" => "invalid_file_name", "message" => "Something went wrong while processing your request. Please try again later" ); echo json_encode($data, JSON_PRETTY_PRINT); exit(); } }
[+]
..
[-] content.php
[edit]