Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
google-cloud-sdk /
platform /
bq /
auth /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-06-08 18:08
gcloud_credential_loader.py
6.44
KB
-rw-r--r--
1980-01-01 08:00
main_credential_loader.py
2.55
KB
-rw-r--r--
1980-01-01 08:00
utils.py
1.29
KB
-rw-r--r--
1980-01-01 08:00
Save
Rename
#!/usr/bin/env python """BQ CLI helper functions for authentication.""" import os import bq_flags import bq_utils _DEFAULT_TOKEN_HOST = 'https://oauth2.googleapis.com/token' _DEFAULT_MTLS_TOKEN_HOST = 'https://oauth2.mtls.googleapis.com/token' _CLOUD_CLI_CLIENT_ID = '32555940559.apps.googleusercontent.com' _CLOUD_CLI_CLIENT_SECRET = 'ZmssLNjJy2998hD4CTg2ejr2' _CLOUD_CLI_CLIENT_USER_AGENT = 'google-cloud-sdk' + os.environ.get( 'CLOUDSDK_VERSION', bq_utils.VERSION_NUMBER ) _BQ_CLI_CLIENT_ID = '977385342095.apps.googleusercontent.com' _BQ_CLI_CLIENT_SECRET = 'wbER7576mc_1YOII0dGk7jEE' _BQ_CLI_CLIENT_USER_AGENT = 'bq/' + bq_utils.VERSION_NUMBER def get_client_id() -> str: if os.environ.get('CLOUDSDK_WRAPPER') == '1': return _CLOUD_CLI_CLIENT_ID else: return _BQ_CLI_CLIENT_ID def get_client_secret() -> str: if os.environ.get('CLOUDSDK_WRAPPER') == '1': return _CLOUD_CLI_CLIENT_SECRET else: return _BQ_CLI_CLIENT_SECRET def get_client_user_agent() -> str: if os.environ.get('CLOUDSDK_WRAPPER') == '1': return _CLOUD_CLI_CLIENT_USER_AGENT else: return _BQ_CLI_CLIENT_USER_AGENT def get_token_uri() -> str: # TODO: b/394417874 - Read user's gcloud properties too. if bq_flags.MTLS.value: return _DEFAULT_MTLS_TOKEN_HOST return _DEFAULT_TOKEN_HOST