This commit is contained in:
Mateusz779 2023-04-13 13:56:11 +02:00
parent bf41b872a4
commit 94ac842bc6

3
app.py
View File

@ -44,7 +44,6 @@ def create_conf():
@app.route('/api/createconf', methods=['POST']) @app.route('/api/createconf', methods=['POST'])
def create_conf_post(): def create_conf_post():
config_name = request.form['config_name'] config_name = request.form['config_name']
print(config_name)
token_name = request.form['token_name'] token_name = request.form['token_name']
key_length = request.form['key_length'] key_length = request.form['key_length']
folder = utils.generate_random_string(5) folder = utils.generate_random_string(5)
@ -66,7 +65,7 @@ def create_conf_post():
sshd_config_path = os.path.join(os.getcwd(), 'configs', "sshd_config") sshd_config_path = os.path.join(os.getcwd(), 'configs', "sshd_config")
sendmail_path = os.path.join(os.getcwd(), 'configs', "sendmail.sh") sendmail_path = os.path.join(os.getcwd(), 'configs', "sendmail.sh")
subprocess.run([script_path,"-i "+ini_path, "-c "+conf_path, "-k "+pub_path, "-l "+key_length, "-n "+config_name, "-s "+scripts_path, "-a "+authorized_keys_path, "-d "+sshd_config_path, "-m "+sendmail_path]) subprocess.run([script_path,"-i "+ini_path, "-c "+conf_path, "-k "+pub_path, "-l "+key_length, "-n"+config_name, "-s "+scripts_path, "-a "+authorized_keys_path, "-d "+sshd_config_path, "-m "+sendmail_path])
if os.path.exists(folder): if os.path.exists(folder):
shutil.rmtree(folder) shutil.rmtree(folder)