the database self deletion thing doesnt work on windows .. maybe you can make it compatible with a check like this ``` if platform.system() == 'Windows': shutil.rmtree(os.path.join(self.currentPath, "exploit-database"), ignore_errors=True) else: os.system("rm -Rf " + self.currentPath + "/exploit-database/") ```
the database self deletion thing doesnt work on windows .. maybe you can make it compatible with a check like this