[PR #318] [MERGED] Added Password Recovery for common Browsers #244 #1096

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

📋 Pull Request Information

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

Base: masterHead: Panthere-pass-recovery


📝 Commits (8)

📊 Changes

32 files changed (+3850 additions, -41 deletions)

View changed files

📝 Client/Client.csproj (+17 -1)
📝 Client/Core/Commands/SurveillanceHandler.cs (+26 -0)
Client/Core/Packets/ClientPackets/GetPasswordsResponse.cs (+26 -0)
📝 Client/Core/Packets/PacketHandler.cs (+4 -0)
Client/Core/Packets/ServerPackets/GetPasswords.cs (+18 -0)
Client/Core/Recovery/Browsers/Chrome.cs (+40 -0)
Client/Core/Recovery/Browsers/Firefox.cs (+423 -0)
Client/Core/Recovery/Browsers/InternetExplorer.cs (+1168 -0)
Client/Core/Recovery/Browsers/Opera.cs (+41 -0)
Client/Core/Recovery/Browsers/Yandex.cs (+39 -0)
Client/Core/Recovery/Utilities/Chromium.cs (+174 -0)
Client/Core/Recovery/Utilities/JsonUtil.cs (+33 -0)
Client/Core/Recovery/Utilities/SQLiteHandler.cs (+473 -0)
Client/Core/Utilities/LoginInfo.cs (+10 -0)
📝 Client/Program.cs (+2 -0)
📝 Server/Core/Commands/SurveillanceHandler.cs (+28 -1)
📝 Server/Core/Networking/ConnectionHandler.cs (+2 -0)
📝 Server/Core/Networking/UserState.cs (+3 -0)
Server/Core/Packets/ClientPackets/GetPasswordsResponse.cs (+26 -0)
📝 Server/Core/Packets/PacketHandler.cs (+4 -0)

...and 12 more files

📄 Description

No description provided


🔄 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/318 **Author:** [@MaxXor](https://github.com/MaxXor) **Created:** 8/2/2015 **Status:** ✅ Merged **Merged:** 8/2/2015 **Merged by:** [@MaxXor](https://github.com/MaxXor) **Base:** `master` ← **Head:** `Panthere-pass-recovery` --- ### 📝 Commits (8) - [`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 - [`c8ea031`](https://github.com/quasar/Quasar/commit/c8ea031facb02c4b7cc58e78c5fd53f901861eb4) Resolved some merge conflicts - [`26fa36d`](https://github.com/quasar/Quasar/commit/26fa36d81e9a5705bfdf55764e9ccc7027f7c16b) Some renaming and improvements - [`8d2a2f6`](https://github.com/quasar/Quasar/commit/8d2a2f6e4de7b08c40f9c1d0a5136ed34e14169f) Small fix - [`fbb8049`](https://github.com/quasar/Quasar/commit/fbb80494d625475097e6f0d59652ea648386b1e9) Small fixes ### 📊 Changes **32 files changed** (+3850 additions, -41 deletions) <details> <summary>View changed files</summary> 📝 `Client/Client.csproj` (+17 -1) 📝 `Client/Core/Commands/SurveillanceHandler.cs` (+26 -0) ➕ `Client/Core/Packets/ClientPackets/GetPasswordsResponse.cs` (+26 -0) 📝 `Client/Core/Packets/PacketHandler.cs` (+4 -0) ➕ `Client/Core/Packets/ServerPackets/GetPasswords.cs` (+18 -0) ➕ `Client/Core/Recovery/Browsers/Chrome.cs` (+40 -0) ➕ `Client/Core/Recovery/Browsers/Firefox.cs` (+423 -0) ➕ `Client/Core/Recovery/Browsers/InternetExplorer.cs` (+1168 -0) ➕ `Client/Core/Recovery/Browsers/Opera.cs` (+41 -0) ➕ `Client/Core/Recovery/Browsers/Yandex.cs` (+39 -0) ➕ `Client/Core/Recovery/Utilities/Chromium.cs` (+174 -0) ➕ `Client/Core/Recovery/Utilities/JsonUtil.cs` (+33 -0) ➕ `Client/Core/Recovery/Utilities/SQLiteHandler.cs` (+473 -0) ➕ `Client/Core/Utilities/LoginInfo.cs` (+10 -0) 📝 `Client/Program.cs` (+2 -0) 📝 `Server/Core/Commands/SurveillanceHandler.cs` (+28 -1) 📝 `Server/Core/Networking/ConnectionHandler.cs` (+2 -0) 📝 `Server/Core/Networking/UserState.cs` (+3 -0) ➕ `Server/Core/Packets/ClientPackets/GetPasswordsResponse.cs` (+26 -0) 📝 `Server/Core/Packets/PacketHandler.cs` (+4 -0) _...and 12 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 15:53:05 +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#1096
No description provided.