
Security News
Critical Security Vulnerability in React Server Components
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.
@openhps/fingerprinting
Advanced tools

This component provides nodes and services for positioning using fingerprinting. The following algorithms are supported:
If you have npm installed, start using @openhps/fingerprinting with the following command.
npm install @openhps/fingerprinting --save
Offline fingerprinting works by storing a data objects relative positions. These relative positions can be
RSSI levels to Wireless Access Points, BLE beacons or even geometric information stored as RelativeValue.
The fingerprinting service will pre process these fingerprints (merging, filling in missing values, ...) so they can be used by online fingerprinting nodes. Fingerprinting services can be extended to perform more pre processing, such as inter or extrapolation.
Depending on the fingerprinting algorithm, an online fingerprinting node such as the KNNFingerprintingNode will use the
stored and preprocessed fingerprints to reverse an objects relative positions to an absolute position.
import { ModelBuilder, GraphBuilder } from '@openhps/core';
import {
FingerprintService, // Pre processes fingerprints
FingerprintingNode, // Stores fingerprints
KNNFingerprintingNode, // Reverse fingerprinting
WeightFunction,
DistanceFunction
} from '@openhps/fingerprinting';
ModelBuilder.create()
// Add a service with memory storage
.addService(new FingerprintService(new MemoryDataService(Fingerprint), {
defaultValue: -95, // Default RSSI value
autoUpdate: true // Automatically preprocess fingerprints
}))
.addShape(GraphBuilder.create() // Offline stage
.from(/* ... */)
.via(new FingerprintingNode())
.to(/* ... */))
.addShape(GraphBuilder.create() // Online stage
.from(/* ... */)
.via(new KNNFingerprintingNode({
k: 3,
weighted: true,
weightFunction: WeightFunction.SQUARE,
similarityFunction: DistanceFunction.EUCLIDEAN
}))
.to(/* ... */)) // Output frame with applied position
.build();
It is possible to store custom properties in the fingerprint data object. This can be useful for creating features that contain non-relative features such as sensor values or other data.
The framework is open source and is mainly developed by PhD Student Maxim Van de Wynckel as part of his research towards Hybrid Positioning and Implicit Human-Computer Interaction under the supervision of Prof. Dr. Beat Signer.
Use of OpenHPS, contributions and feedback is highly appreciated. Please read our contributing guidelines for more information.
Copyright (C) 2019-2024 Maxim Van de Wynckel & Vrije Universiteit Brussel
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
FAQs
Open Hybrid Positioning System
The npm package @openhps/fingerprinting receives a total of 5 weekly downloads. As such, @openhps/fingerprinting popularity was classified as not popular.
We found that @openhps/fingerprinting demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
React disclosed a CVSS 10.0 RCE in React Server Components and is advising users to upgrade affected packages and frameworks to patched versions now.

Research
/Security News
We spotted a wave of auto-generated “elf-*” npm packages published every two minutes from new accounts, with simple malware variants and early takedowns underway.

Research
/Security News
Malicious Rust crate evm-units disguised as an EVM version helper downloads and silently executes OS-specific payloads likely aimed at crypto theft.