403Webshell
Server IP : 202.155.9.250  /  Your IP : 216.73.217.177
Web Server : LiteSpeed
System : Linux srv339029361 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64
User : grabn6394 ( 1016)
PHP Version : 8.0.30
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/local/CyberPanel/lib/python3.10/site-packages/examples/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/local/CyberPanel/lib/python3.10/site-packages/examples/example_always_use_https.py
#!/usr/bin/env python
"""Cloudflare API code - example"""

import os
import sys

sys.path.insert(0, os.path.abspath('..'))
import CloudFlare

def main():
    """Cloudflare API code - example"""

    update_flag = False

    try:
        if sys.argv[1] == '--off':
            update_flag = True
            new_value = 'off'
            sys.argv.pop(1)
    except IndexError:
        pass

    try:
        if sys.argv[1] == '--on':
            update_flag = True
            new_value = 'on'
            sys.argv.pop(1)
    except IndexError:
        pass

    # Grab the zone name
    try:
        zone_name = sys.argv[1]
        params = {'name':zone_name, 'per_page':1}
    except IndexError:
        exit('usage: example_always_use_https.py [--on|--off] zone')

    cf = CloudFlare.CloudFlare()

    # grab the zone identifier
    try:
        zones = cf.zones.get(params=params)
    except CloudFlare.exceptions.CloudFlareAPIError as e:
        exit('/zones.get %d %s - api call failed' % (e, e))
    except Exception as e:
        exit('/zones - %s - api call failed' % (e))

    zone_id = zones[0]['id']

    # retrieve present value
    try:
        r = cf.zones.settings.always_use_https.get(zone_id)
    except CloudFlare.exceptions.CloudFlareAPIError as e:
        exit('/zones.settings.always_use_https.get %d %s - api call failed' % (e, e))

    present_value = r['value']

    print(zone_id, zone_name, present_value)

    if update_flag and present_value != new_value:
        print('\t', '(now updating... %s -> %s)' % (present_value, new_value))
        try:
            r = cf.zones.settings.always_use_https.patch(zone_id, data={'value':new_value})
        except CloudFlare.exceptions.CloudFlareAPIError as e:
            exit('/zones.settings.always_use_https.patch %d %s - api call failed' % (e, e))
        updated_value = r['value']
        if new_value == updated_value:
            print('\t', '... updated!')

if __name__ == '__main__':
    main()
    exit(0)

Youez - 2016 - github.com/yon3zu
LinuXploit