forked from CTFd/ctfcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
88 lines (64 loc) · 2.1 KB
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import configparser
import json
import os
from ctfcli import __file__ as base_path
from .api import APISession
def get_base_path():
return os.path.dirname(base_path)
def get_config_path():
pwd = os.getcwd()
while pwd:
config = os.path.join(pwd, ".ctf/config")
if os.path.isfile(config):
return config
new_pwd = os.path.dirname(pwd)
pwd = None if new_pwd == pwd else new_pwd
return None
def get_project_path():
pwd = os.getcwd()
while pwd:
config = os.path.join(pwd, ".ctf/config")
if os.path.isfile(config):
return pwd
new_pwd = os.path.dirname(pwd)
pwd = None if new_pwd == pwd else new_pwd
return None
def load_config():
path = get_config_path()
parser = configparser.ConfigParser()
# Preserve case in configparser
parser.optionxform = str
parser.read(path)
return parser
def preview_config(as_string=False):
config = load_config()
d = {}
for section in config.sections():
d[section] = {}
for k, v in config.items(section):
d[section][k] = v
preview = json.dumps(d, sort_keys=True, indent=4)
if as_string is True:
return preview
else:
print(preview)
def generate_session():
config = load_config()
# Load required configuration values
url = config["config"]["url"]
access_token = config["config"]["access_token"]
# Handle SSL verification disabling
try:
# Get an ssl_verify config. Default to True if it doesn't exist
ssl_verify = config["config"].getboolean("ssl_verify", True)
except ValueError:
# If we didn't a proper boolean value we should load it as a string
# https://requests.kennethreitz.org/en/master/user/advanced/#ssl-cert-verification
ssl_verify = config["config"].get("ssl_verify")
s = APISession(prefix_url=url)
s.verify = ssl_verify
s.headers.update({"Authorization": f"Token {access_token}"})
# Handle cookies section in config
if "cookies" in config:
s.cookies.update(dict(config["cookies"]))
return s