parazeeknova / nyxtext

Audit required: Starting a subprocess BAN-B606
Security
Minor
3 months ago6 months old
Starting a process without a shell.
262
263        # Open the directory
264        if os.name == "nt":  # Windows
265            os.startfile(directory)266        elif os.name == "posix":  # macOS or Linux
267            subprocess.Popen(["open", directory])
268        else: