[PR #2244] [MERGED] feat(fingerprint): store posture checks and fingerprint info #4850

Closed
opened 2026-04-20 09:08:29 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/2244
Author: @water-sucks
Created: 1/13/2026
Status: Merged
Merged: 1/15/2026
Merged by: @miloschwartz

Base: devHead: add-fingerprint-and-posture-check-info


📝 Commits (2)

  • fcee735 feat(fingerprints): receive fingerprints/postures from olm and add to db
  • e9e935d feat(fingerprint): add platform fingerprint hash

📊 Changes

4 files changed (+299 additions, -5 deletions)

View changed files

📝 server/db/pg/schema/schema.ts (+64 -0)
📝 server/db/sqlite/schema/schema.ts (+87 -1)
📝 server/routers/olm/handleOlmPingMessage.ts (+70 -2)
📝 server/routers/olm/handleOlmRegisterMessage.ts (+78 -2)

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description

This adds fingerprints and posture checks sent by olm in https://github.com/fosrl/olm/pull/76 and stores them in flat tables in the database.

How to test?

Fingerprints and posture checks should be received by olm's ping and register messages, and should be stored in the database accordingly; changes in fingerprints result in single-row updates, while posture checks are always appended in new rows.


🔄 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/fosrl/pangolin/pull/2244 **Author:** [@water-sucks](https://github.com/water-sucks) **Created:** 1/13/2026 **Status:** ✅ Merged **Merged:** 1/15/2026 **Merged by:** [@miloschwartz](https://github.com/miloschwartz) **Base:** `dev` ← **Head:** `add-fingerprint-and-posture-check-info` --- ### 📝 Commits (2) - [`fcee735`](https://github.com/fosrl/pangolin/commit/fcee735578ab0b073f770bcb84f0a0a5cdd40ba0) feat(fingerprints): receive fingerprints/postures from olm and add to db - [`e9e935d`](https://github.com/fosrl/pangolin/commit/e9e935d6c4d5e3dc512e2eed03bc6c01ca03d38f) feat(fingerprint): add platform fingerprint hash ### 📊 Changes **4 files changed** (+299 additions, -5 deletions) <details> <summary>View changed files</summary> 📝 `server/db/pg/schema/schema.ts` (+64 -0) 📝 `server/db/sqlite/schema/schema.ts` (+87 -1) 📝 `server/routers/olm/handleOlmPingMessage.ts` (+70 -2) 📝 `server/routers/olm/handleOlmRegisterMessage.ts` (+78 -2) </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description This adds fingerprints and posture checks sent by `olm` in https://github.com/fosrl/olm/pull/76 and stores them in flat tables in the database. ## How to test? Fingerprints and posture checks should be received by `olm`'s ping and register messages, and should be stored in the database accordingly; changes in fingerprints result in single-row updates, while posture checks are always appended in new rows. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 09:08:29 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#4850