athphane / userbot

Audit required: Starting a subprocess BAN-B606
Security
Minor
6 months ago4 years old
Starting a process without a shell.
 83        if pip:
 84            os.system("pip install -U -r requirements.txt")
 85
 86        os.execl(sys.executable, sys.executable, "-m", self.__class__.__name__.lower()) 87        sys.exit()
 88
 89    @staticmethod