Deft_
Deft_
This PR fixes my mistake (see https://github.com/login-securite/DonPAPI/issues/95) by adding powershellhistory.py file back.
Heyo friends! This PR reworks the entire collectors engine, hope you'll like it! # Changes ## Collectors loading First of all, I removed COLLECTOR dict and all collectors manual imports...
As of now, DonPAPI isn't able to retrieve the default username used for autologon:  This is because in the secretdumps DonPAPIRemoteOperations, the getDefaultLoginAccount function was omitted. As such, I...
This PR fixes the following error:  (see https://github.com/login-securite/DonPAPI/issues/79) By adding the following line to core.py (line 267): ```python if hasattr(self.sam_dump, "items_found") and self.sam_dump.items_found is not None: self.logger.secret(f"Got {len(self.sam_dump.items_found)} accounts",...
It looks like DonPAPI doesn't scan hosts which don't expose the C$ share. So probably DonPAPI relies on this share to detect targets to scan but even if C$ isn't...
This PR adds a few new collectors: * CloudCredentials * IDEProjects * PasswordManagers * RecycleBin * SSHSecrets * VersionControlSystems Exemple:  Note: this PR will break until https://github.com/login-securite/DonPAPI/pull/100 is merged....
This PR adds the downloads directory in the user_directories list and remove the mask as it prevents us from downloading potentialy juicy files.
This PR fixes secretsdump printing an error log when it doesn't find any hash for an account in the SAM database:  This is because Windows uses default system accounts...
Hey! I realized that if the dump of the SAM database fails, donpapi can crash because of the following:  A potential patch would be to switch the try except...
For some reason, the SAM database of domain controllers is not showned in the GUI, probably not stored in the DB.  While domain controllers SAM are disabled, having the...