[PR #222] [MERGED] Password Recovery #1053

Closed
opened 2026-02-27 15:52:56 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/quasar/Quasar/pull/222
Author: @Panthere
Created: 5/27/2015
Status: Merged
Merged: 8/2/2015
Merged by: @MaxXor

Base: masterHead: pass-recovery


📝 Commits (4)

📊 Changes

32 files changed (+4002 additions, -188 deletions)

View changed files

📝 Client/Client.csproj (+16 -0)
📝 Client/Core/Client.cs (+1 -0)
📝 Client/Core/Commands/SurveillanceHandler.cs (+24 -0)
Client/Core/Packets/ClientPackets/RecoverPassResponse.cs (+27 -0)
Client/Core/Packets/ServerPackets/RecoverPassRequest.cs (+17 -0)
Client/Core/Recovery/Chrome.cs (+38 -0)
Client/Core/Recovery/Firefox.cs (+423 -0)
Client/Core/Recovery/Helper/Chromium.cs (+174 -0)
Client/Core/Recovery/Helper/JsonUtil.cs (+33 -0)
Client/Core/Recovery/Helper/LoginInfo.cs (+16 -0)
Client/Core/Recovery/Helper/SQLiteHandler.cs (+473 -0)
Client/Core/Recovery/InternetExplorer.cs (+1166 -0)
Client/Core/Recovery/Opera.cs (+39 -0)
Client/Core/Recovery/Yandex.cs (+38 -0)
📝 Client/Program.cs (+57 -52)
📝 Server/Core/Client.cs (+2 -0)
📝 Server/Core/Commands/SurveillanceHandler.cs (+27 -1)
Server/Core/Packets/ClientPackets/RecoverPassResponse.cs (+28 -0)
Server/Core/Packets/ServerPackets/RecoverPassRequest.cs (+17 -0)
Server/Core/Recovery/Helper/LoginInfo.cs (+16 -0)

...and 12 more files

📄 Description

Password recovery for popular browsers.
Firefox, IE, Chrome, Yandex and Opera.

Credits to: http://www.codeforge.com/article/249225 (IE and partial Firefox)

image

image


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/quasar/Quasar/pull/222 **Author:** [@Panthere](https://github.com/Panthere) **Created:** 5/27/2015 **Status:** ✅ Merged **Merged:** 8/2/2015 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `master` ← **Head:** `pass-recovery` --- ### 📝 Commits (4) - [`1d2b838`](https://github.com/quasar/Quasar/commit/1d2b838b788cdf49ee81f11a44a4d9b429e45902) Password Recovery Server Side - [`902bdb5`](https://github.com/quasar/Quasar/commit/902bdb5db34352759e9f7749e8e0e0d5c908afb1) Added Password Recovery - [`0d36c37`](https://github.com/quasar/Quasar/commit/0d36c37ed8defd40fd5325171064b2370829864b) Performance enhancement - [`1ced224`](https://github.com/quasar/Quasar/commit/1ced2244108f6170ca16d301435bf88c5c2fe6ac) Improved Code Layout ### 📊 Changes **32 files changed** (+4002 additions, -188 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+16 -0) 📝 `Client/Core/Client.cs` (+1 -0) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+24 -0) ➕ `Client/Core/Packets/ClientPackets/RecoverPassResponse.cs` (+27 -0) ➕ `Client/Core/Packets/ServerPackets/RecoverPassRequest.cs` (+17 -0) ➕ `Client/Core/Recovery/Chrome.cs` (+38 -0) ➕ `Client/Core/Recovery/Firefox.cs` (+423 -0) ➕ `Client/Core/Recovery/Helper/Chromium.cs` (+174 -0) ➕ `Client/Core/Recovery/Helper/JsonUtil.cs` (+33 -0) ➕ `Client/Core/Recovery/Helper/LoginInfo.cs` (+16 -0) ➕ `Client/Core/Recovery/Helper/SQLiteHandler.cs` (+473 -0) ➕ `Client/Core/Recovery/InternetExplorer.cs` (+1166 -0) ➕ `Client/Core/Recovery/Opera.cs` (+39 -0) ➕ `Client/Core/Recovery/Yandex.cs` (+38 -0) 📝 `Client/Program.cs` (+57 -52) 📝 `Server/Core/Client.cs` (+2 -0) 📝 `Server/Core/Commands/SurveillanceHandler.cs` (+27 -1) ➕ `Server/Core/Packets/ClientPackets/RecoverPassResponse.cs` (+28 -0) ➕ `Server/Core/Packets/ServerPackets/RecoverPassRequest.cs` (+17 -0) ➕ `Server/Core/Recovery/Helper/LoginInfo.cs` (+16 -0) _...and 12 more files_ </details> ### 📄 Description Password recovery for popular browsers. Firefox, IE, Chrome, Yandex and Opera. Credits to: http://www.codeforge.com/article/249225 (IE and partial Firefox) ![image](https://cloud.githubusercontent.com/assets/11871649/7838595/daef11ee-04cc-11e5-8c22-5c776a902d55.png) ![image](https://cloud.githubusercontent.com/assets/11871649/7838627/0e7a35ca-04cd-11e5-9bcc-f37e58a3e61c.png) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:52:56 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Quasar#1053
No description provided.