update: new start.py syntax and commands, fix: frontend not url encoded properly (could create problems with some passwords)

This commit is contained in:
Domingo Dirutigliano
2024-04-21 16:05:06 +02:00
parent 3e18e64d66
commit 9233b759df
3 changed files with 152 additions and 95 deletions

1
.gitignore vendored
View File

@@ -22,6 +22,7 @@
/backend/modules/proxy /backend/modules/proxy
docker-compose.yml docker-compose.yml
firegex-compose.yml firegex-compose.yml
firegex-compose-tmp-file.yml
# misc # misc
**/.DS_Store **/.DS_Store

View File

@@ -85,7 +85,7 @@ export async function postapi(path:string,data:any,is_form:boolean=false):Promis
'Content-Type': is_form ? 'application/x-www-form-urlencoded' : 'application/json', 'Content-Type': is_form ? 'application/x-www-form-urlencoded' : 'application/json',
"Authorization" : "Bearer " + window.localStorage.getItem("access_token") "Authorization" : "Bearer " + window.localStorage.getItem("access_token")
}, },
body: is_form ? data : JSON.stringify(data) body: is_form ? (new URLSearchParams(data)).toString() : JSON.stringify(data)
}).then(res => { }).then(res => {
if(res.status === 401) window.location.reload() if(res.status === 401) window.location.reload()
if(res.status === 406) resolve({status:"Wrong Password"}) if(res.status === 406) resolve({status:"Wrong Password"})
@@ -157,7 +157,7 @@ export async function changepassword(data:ChangePassword) {
} }
export async function login(data:PasswordSend) { export async function login(data:PasswordSend) {
const from = "username=login&password=" + encodeURI(data.password); const from = {username: "login", password: data.password};
const { status, access_token } = await postapi("login",from,true) as LoginResponse; const { status, access_token } = await postapi("login",from,true) as LoginResponse;
window.localStorage.setItem("access_token", access_token); window.localStorage.setItem("access_token", access_token);
return status; return status;

242
start.py
View File

@@ -4,7 +4,8 @@ import argparse, sys, platform, os, multiprocessing, subprocess, getpass
pref = "\033[" pref = "\033["
reset = f"{pref}0m" reset = f"{pref}0m"
composefile = "firegex-compose.yml" composefile = "firegex-compose-tmp-file.yml"
os.chdir(os.path.dirname(os.path.realpath(__file__)))
class colors: class colors:
black = "30m" black = "30m"
@@ -44,40 +45,46 @@ def dockercmd(cmd):
else: else:
puts("Docker not found! please install docker!", color=colors.red) puts("Docker not found! please install docker!", color=colors.red)
def run_checks(): def gen_args():
if not check_if_exists("docker"): parser = argparse.ArgumentParser()
puts("Docker not found! please install docker and docker compose!", color=colors.red)
exit()
elif not check_if_exists("docker-compose") and not check_if_exists("docker compose"):
print(check_if_exists("docker-compose"), check_if_exists("docker compose"))
puts("Docker compose not found! please install docker compose!", color=colors.red)
exit()
if not check_if_exists("docker ps"):
puts("Cannot use docker, the user hasn't the permission or docker isn't running", color=colors.red)
exit()
parser = argparse.ArgumentParser() subcommands = parser.add_subparsers(dest="command", help="Command to execute [Default start if not running]")
parser.add_argument('--port', "-p", type=int, required=False, help='Port where open the web service of the firewall', default=4444)
parser.add_argument('--clear', required=False, action="store_true", help='Delete docker volume associated to firegex resetting all the settings', default=False) #Compose Command
parser.add_argument('--logs', required=False, action="store_true", help='Show firegex logs', default=False) parser_compose = subcommands.add_parser('compose', help='Run docker compose command')
parser.add_argument('--threads', "-t", type=int, required=False, help='Number of threads started for each service/utility', default=-1) parser_compose.add_argument('compose_args', nargs=argparse.REMAINDER, help='Arguments to pass to docker compose', default=[])
parser.add_argument('--no-autostart', "-n", required=False, action="store_true", help='Save docker-compose file and not start the container', default=False)
parser.add_argument('--build', "-b", required=False, action="store_true", help='Build the container locally', default=False) #Start Command
parser.add_argument('--keep','-k', required=False, action="store_true", help='Keep the firegex-compose.yml file generated', default=False) parser_start = subcommands.add_parser('start', help='Start the firewall')
parser.add_argument('--stop', '-s', required=False, action="store_true", help='Stop firegex execution', default=False) parser_start.add_argument('--threads', "-t", type=int, required=False, help='Number of threads started for each service/utility', default=-1)
parser.add_argument('--restart', '-r', required=False, action="store_true", help='Restart firegex', default=False) parser_start.add_argument('--build', "-b", required=False, action="store_true", help='Build the container locally', default=False)
parser.add_argument('--psw-no-interactive',type=str, required=False, help='Password for no-interactive mode', default=None) parser_start.add_argument('--psw-no-interactive',type=str, required=False, help='Password for no-interactive mode', default=None)
parser.add_argument('--startup-psw','-P', required=False, action="store_true", help='Insert password in the startup screen of firegex', default=False) parser_start.add_argument('--startup-psw','-P', required=False, action="store_true", help='Insert password in the startup screen of firegex', default=False)
parser_start.add_argument('--port', "-p", type=int, required=False, help='Port where open the web service of the firewall', default=4444)
parser_start.add_argument('--logs', required=False, action="store_true", help='Show firegex logs', default=False)
#Stop Command
parser_stop = subcommands.add_parser('stop', help='Stop the firewall')
parser_stop.add_argument('--clear', required=False, action="store_true", help='Delete docker volume associated to firegex resetting all the settings', default=False)
parser_restart = subcommands.add_parser('restart', help='Restart the firewall')
parser_restart.add_argument('--logs', required=False, action="store_true", help='Show firegex logs', default=False)
#General args
if os.path.isfile("./Dockerfile"):
parser.add_argument('--build', "-b", required=False, action="store_true", help='Build the container from source', default=False)
return parser.parse_args()
args = gen_args()
args = parser.parse_args() def is_linux():
os.chdir(os.path.dirname(os.path.realpath(__file__))) return "linux" in sys.platform and not 'microsoft-standard' in platform.uname().release
run_checks()
def write_compose(psw_set=None): def write_compose(skip_password = True):
psw_set = get_password() if not skip_password else None
with open(composefile,"wt") as compose: with open(composefile,"wt") as compose:
if "linux" in sys.platform and not 'microsoft-standard' in platform.uname().release: #Check if not is a wsl also if is_linux(): #Check if not is a wsl also
compose.write(f""" compose.write(f"""
services: services:
firewall: firewall:
@@ -110,9 +117,6 @@ volumes:
""") """)
else: else:
sep()
puts("--- WARNING ---", color=colors.yellow)
puts("You are not in a linux machine, the firewall will not work in this machine.", color=colors.red)
compose.write(f""" compose.write(f"""
services: services:
firewall: firewall:
@@ -127,83 +131,135 @@ services:
{"- HEX_SET_PSW="+psw_set.encode().hex() if psw_set else ""} {"- HEX_SET_PSW="+psw_set.encode().hex() if psw_set else ""}
volumes: volumes:
- firegex_data:/execute/db - firegex_data:/execute/db
- /execute/db
cap_add: cap_add:
- NET_ADMIN - NET_ADMIN
volumes: volumes:
firegex_data: firegex_data:
""") """)
def main():
start_operation = not (args.stop or args.restart)
volume_exists = check_if_exists('docker volume ls --filter="name=^firegex_firegex_data$" --quiet | grep firegex_firegex_data')
if args.clear: def check_already_running():
dockercmd("volume rm firegex_firegex_data") return check_if_exists("docker ps --filter 'name=^firegex$' --no-trunc | grep firegex")
exit()
def get_password():
if args.logs: if volume_exists() or args.startup_psw:
composecmd("logs -f") return None
exit()
if args.build and not os.path.isfile("./Dockerfile"):
puts("This is not a clone of firegex, to build firegex the clone of the repository is needed!", color=colors.red)
exit()
if args.threads < 1:
args.threads = multiprocessing.cpu_count()
if start_operation and (not args.build or args.keep):
if check_if_exists("docker ps --filter 'name=^firegex$' --no-trunc | grep firegex"):
if args.keep:
write_compose()
else:
puts("Firegex is already running! use --help to see options useful to manage firegex execution", color=colors.yellow)
exit()
sep()
puts(f"Firegex", color=colors.yellow, end="")
puts(" will start on port ", end="")
puts(f"{args.port}", color=colors.cyan)
psw_set = None
if args.psw_no_interactive: if args.psw_no_interactive:
psw_set = args.psw_no_interactive return args.psw_no_interactive
elif start_operation and not volume_exists and not args.startup_psw: psw_set = None
while True:
while True: while True:
puts("Insert the password for firegex: ", end="" , color=colors.yellow, is_bold=True, flush=True) puts("Insert a password for firegex: ", end="" , color=colors.yellow, is_bold=True, flush=True)
psw_set = getpass.getpass("") psw_set = getpass.getpass("")
puts("Confirm the password: ", end="" , color=colors.yellow, is_bold=True, flush=True) if (len(psw_set) < 8):
check = getpass.getpass("") puts("The password has to be at least 8 char long", color=colors.red, is_bold=True, flush=True)
if check != psw_set:
puts("Passwords don't match!" , color=colors.red, is_bold=True, flush=True)
else: else:
break break
puts("Confirm the password: ", end="" , color=colors.yellow, is_bold=True, flush=True)
check = getpass.getpass("")
if check != psw_set:
puts("Passwords don't match!" , color=colors.red, is_bold=True, flush=True)
else:
break
return psw_set
write_compose(psw_set) def volume_exists():
return check_if_exists('docker volume ls --filter="name=^firegex_firegex_data$" --quiet | grep firegex_firegex_data')
sep() def nfqueue_exists():
if not args.no_autostart: return check_if_exists('ls /lib/modules/$(uname -r)/kernel/net/netfilter/nfnetlink_queue.*')
try:
if args.restart: def delete_volume():
puts("Running 'docker-compose restart'\n", color=colors.green) return dockercmd("volume rm firegex_firegex_data")
composecmd("restart", composefile)
elif args.stop: def main():
puts("Running 'docker-compose down'\n", color=colors.green)
composecmd("down", composefile) print(args)
else:
if not args.build: if not check_if_exists("docker"):
puts("Downloading docker image from github packages 'docker pull ghcr.io/pwnzer0tt1/firegex'", color=colors.green) puts("Docker not found! please install docker and docker compose!", color=colors.red)
dockercmd("pull ghcr.io/pwnzer0tt1/firegex") exit()
puts("Running 'docker-compose up -d --build'\n", color=colors.green) elif not check_if_exists("docker-compose") and not check_if_exists("docker compose"):
composecmd("up -d --build", composefile) print(check_if_exists("docker-compose"), check_if_exists("docker compose"))
finally: puts("Docker compose not found! please install docker compose!", color=colors.red)
if not args.keep: exit()
os.remove(composefile) if not check_if_exists("docker ps"):
else: puts("Cannot use docker, the user hasn't the permission or docker isn't running", color=colors.red)
puts("Done! You can start/stop firegex with docker-compose up -d --build", color=colors.yellow) exit()
if args.command is None:
if not check_already_running() and not args.clear:
args.command = "start"
if not is_linux():
sep() sep()
puts("--- WARNING ---", color=colors.yellow)
puts("You are not in a linux machine, the firewall will not work in this machine.", color=colors.red)
sep()
elif not nfqueue_exists():
sep()
puts("--- WARNING ---", color=colors.yellow)
puts("The nfqueue kernel module seems not loaded, some features of firegex may not work.", color=colors.red)
sep()
if not "threads" in args or args.threads < 1:
args.threads = multiprocessing.cpu_count()
if not "port" in args or args.port < 1:
args.port = 4444
if args.command:
match args.command:
case "start":
if check_already_running():
puts("Firegex is already running! use --help to see options useful to manage firegex execution", color=colors.yellow)
else:
puts(f"Firegex", color=colors.yellow, end="")
puts(" will start on port ", end="")
puts(f"{args.port}", color=colors.cyan)
write_compose(skip_password=False)
if not args.build:
puts("Downloading docker image from github packages 'docker pull ghcr.io/pwnzer0tt1/firegex'", color=colors.green)
dockercmd("pull ghcr.io/pwnzer0tt1/firegex")
puts("Running 'docker compose up -d --build'\n", color=colors.green)
composecmd("up -d --build", composefile)
case "compose":
write_compose()
compose_cmd = " ".join(args.compose_args)
puts(f"Running 'docker compose {compose_cmd}'\n", color=colors.green)
composecmd(compose_cmd, composefile)
case "restart":
if check_already_running():
write_compose()
puts("Running 'docker compose restart'\n", color=colors.green)
composecmd("restart", composefile)
else:
puts("Firegex is not running!" , color=colors.red, is_bold=True, flush=True)
case "stop":
if check_already_running():
write_compose()
puts("Running 'docker compose down'\n", color=colors.green)
composecmd("down", composefile)
else:
puts("Firegex is not running!" , color=colors.red, is_bold=True, flush=True)
write_compose()
if "clear" in args and args.clear:
if volume_exists():
delete_volume()
else:
puts("Firegex volume not found!", color=colors.red)
if "logs" in args and args.logs:
composecmd("logs -f")
if __name__ == "__main__": if __name__ == "__main__":
try: try:
main() try:
main()
finally:
if os.path.isfile(composefile):
os.remove(composefile)
except KeyboardInterrupt: except KeyboardInterrupt:
print() print()