Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djhohnstein/sharpweb
.NET 2.0 CLR project to retrieve saved browser credentials from Google Chrome, Mozilla Firefox and Microsoft Internet Explorer/Edge.
https://github.com/djhohnstein/sharpweb
Last synced: 11 days ago
JSON representation
.NET 2.0 CLR project to retrieve saved browser credentials from Google Chrome, Mozilla Firefox and Microsoft Internet Explorer/Edge.
- Host: GitHub
- URL: https://github.com/djhohnstein/sharpweb
- Owner: djhohnstein
- Created: 2018-08-13T21:55:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-05T01:39:45.000Z (almost 6 years ago)
- Last Synced: 2024-05-02T04:08:01.249Z (7 months ago)
- Language: C#
- Size: 961 KB
- Stars: 497
- Watchers: 16
- Forks: 109
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SharpWeb
## Introduction
SharpWeb is a .NET 2.0 CLR compliant project that can retrieve saved logins from Google Chrome, Firefox, Internet Explorer and Microsoft Edge. In the future, this project will be expanded upon to retrieve Cookies and History items from these browsers.
## Usage
```
Usage:
.\SharpWeb.exe arg0 [arg1 arg2 ...]Arguments:
all - Retrieve all Chrome, FireFox and IE/Edge credentials.
full - The same as 'all'
chrome - Fetch saved Chrome logins.
firefox - Fetch saved FireFox logins.
edge - Fetch saved Internet Explorer/Microsoft Edge logins.
```## Example: Retrieve Edge and Firefox Credentials
```
.\SharpWeb.exe edge firefox
```
![FireFox/Edge](Images/ff_edge.png)## Example: Retrieve All Saved Browser Credentials
```
.\SharpWeb.exe all
```## Standing on the Shoulders of Giants
This project uses the work of @plainprogrammer and his work on a compliant .NET 2.0 CLR compliant SQLite parser, which can be found [here](https://github.com/plainprogrammer/csharp-sqlite). In addition, @gourk created a wonderful ASN parser and cryptography helpers for decrypting and parsing the FireFox login files. It uses a revised version of his work (found [here](https://github.com/gourk/FirePwd.Net)) to parse these logins out. Without their work this project would not have come together nearly as quickly as it did.