forked from IDeletedSystem64/iptables-deploy
13 lines
321 B
Python
13 lines
321 B
Python
import paramiko
|
|
import json
|
|
import os
|
|
|
|
# import modules
|
|
|
|
with open("conf.json", "r") as file:
|
|
cfg = json.load(file)
|
|
# yeah yeah i should probably use YAML but i don't really want to fool with it rn lol -64
|
|
|
|
sshc = paramiko.client.SSHClient()
|
|
|
|
sshc.connect(cfg["server"],port=cfg["port"],password=cfg["ssh-password"]) |