Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
blue-button-pim
Advanced tools
Patient Identification and Matching based on Blue Button data
Blocking phase - filter all patient population using blocker filter Candidates comparison phase - compare candidates with patient data one by one Scoring phase - Weight two records for potential match Match evaluation phase - Evaluate score result
PIM relies on Data Matching Algorithm use by the Oklahoma Department of Mental Health and Substance Abuse Services (ODHMSAS) which in turn was influenced by the article by Matthew A. Jaro published in the Statistics in Medicine Journal, Vol. 14, 491-198 (1995) titled ["Probabilistic Linkage of Large Public Health Data Files."] (http://www3.interscience.wiley.com/journal/114131327/abstract)
##Quick up and running quide
###Prerequisites
# you need Node.js and Grunt.js installed
#install dependencies and build
npm install
grunt
This function returns an object with the blocking traits for a given patient's demographic information. The purpose of this object is for targeted filtering in MongoDB queries. For exampe, we could use the following code to return a set of candidates for comparison:
var pim = calculateBlockers(data);
var query = model.find({
$or: [{
"pim.lnmpdob": pim.lnmpdob
}, {
"pim.lnmpfnpc": pim.lnmpfnpc
}, {
"pim.lnfn": pim.lnfn
}, {
"pim.smdlastname13": pim.smdlastname13
}]
});
query.exec(function (err, results) {
if (err) {
callback(err);
} else {
callback(null, results);
}
});
Within the callback we can compare candidates.
This function will take demographic data and a list of candidates and return a list of matches and flagged candidates.
Each object in the result array has a pat_key
and a flag match
. An ideal implementation of this module would result in
only one automatic
result at a time. In the case that there is a manual
result, a user should be presented with
all results flagged as manual
. An optional shim
can be passed for translating demographic data within a database
to match the schema detailed in blocker.js
.
Contributors are welcome. See issues https://github.com/amida-tech/blue-button-pim/issues
See release notes [here] (./RELEASENOTES.md)
Licensed under Apache 2.0
FAQs
Patient Identification and Matching
The npm package blue-button-pim receives a total of 1 weekly downloads. As such, blue-button-pim popularity was classified as not popular.
We found that blue-button-pim demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.