OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
testing
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/28/2024 11:03:35 AM
rwxrwxr-x
📄
accessTest copy.php
657 bytes
10/07/2024 05:44:48 AM
rw-r--r--
📄
accessTest.php
657 bytes
10/08/2024 07:28:15 AM
rw-r--r--
📁
backup
-
10/07/2024 05:44:52 AM
rwxr-xr-x
📄
composer-setup.php
57.07 KB
10/07/2024 05:44:51 AM
rwxr-xr-x
📄
composer.json
64 bytes
10/07/2024 05:44:51 AM
rw-r--r--
📄
composer.lock
2.81 KB
10/07/2024 05:44:51 AM
rw-r--r--
📄
composer.phar
2.86 MB
10/07/2024 05:44:52 AM
rwxr-xr-x
📄
configuration.txt
79 bytes
10/07/2024 05:44:51 AM
rw-r--r--
📁
cream
-
10/07/2024 05:39:15 AM
rwxr-xr-x
📄
credential copy.json
556 bytes
10/07/2024 05:44:51 AM
rw-r--r--
📄
credential.json
556 bytes
10/07/2024 05:44:51 AM
rw-rw-rw-
📄
db_connect.php
341 bytes
10/07/2024 05:44:51 AM
rw-r--r--
📄
function.php
18.87 KB
10/10/2024 09:04:44 AM
rw-r--r--
📄
get_facebook_access_token.php
1.94 KB
09/04/2024 05:58:04 AM
rw-r--r--
📄
index.php
476 bytes
10/08/2024 07:28:06 AM
rw-r--r--
📄
navbar.php
1.63 KB
10/07/2024 11:24:58 AM
rw-r--r--
📁
new_folder
-
10/07/2024 05:44:53 AM
rwxr-xr-x
📄
new_index.php
10.08 KB
10/10/2024 08:40:32 AM
rw-r--r--
📄
permissionTest.php
1.31 KB
09/04/2024 05:58:04 AM
rw-r--r--
📄
postTest.php
3.43 KB
10/08/2024 07:28:28 AM
rw-r--r--
📄
post_to_page.php
2.29 KB
09/04/2024 05:58:04 AM
rw-r--r--
📄
share_facebook.php
2.02 KB
10/08/2024 07:28:28 AM
rw-r--r--
📄
sidebar.php
3.08 KB
10/07/2024 11:28:08 AM
rw-r--r--
📄
update_fb_pages.php
347 bytes
10/10/2024 09:05:33 AM
rw-r--r--
📁
vendor
-
07/20/2024 07:09:34 AM
rwxr-xr-x
Editing: permissionTest.php
Close
<?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); include 'function.php'; // Access token you want to debug $input_token = 'EAAGvb6fjh0YBO43g75nS06W5420ZC6ZBpUzRj6gme7MXRZCLbCUbN8rdxZAfprYJmDvxRaEM2okZCxjeYYvf3NMcZCg3ZC4CjjADe0LUhhLtWhb8ZBs6b4RBaGXC4yNNvenewR0XJ7uCb1ZAIIoQe8ZBBhwzJBKZBoWwp7OLHurTqzqZBteDWHLbMSYNXc5FvrajdA9zOXpnqxT1T1guMAZDZD'; // Your app's access token or a valid user access token with the `debug_token` permission $app_access_token = 'EAAGvb6fjh0YBO6fMyG4UDZBJPGueyZBfy5fRPcVrMtVbgHZAAnnrFK4cTG2LlSam56oARr3TNK7KcWY7HOzbChBcZCK1K1BBHKuUwUQ6qxUhZCVJ0AL1jbnrmdDJTHjNQReaEIYjJ6Ye33zl2lZCQzoW2N2mFqaIV910HIia0IG2UFfp7vNrxoD25q4XAuZBRvi32T7QuIqfMZBqWmhGByqMY1xI06XGvSMub4O7rtQiS5EKaMZBCSQDDlEVdHgsgNlwZD'; // The URL to send the request to $url = "https://graph.facebook.com/debug_token?input_token={$input_token}&access_token={$app_access_token}"; // Initialize cURL $ch = curl_init(); // Set the URL and other options curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); // Execute the request $response = curl_exec($ch); // Close cURL resource curl_close($ch); // Decode the response $data = json_decode($response, true); // Print the response data echo "<pre>"; print_r($data); echo "</pre>"; ?>