Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Peakoscope is a python package for hierarchical analysis of peak and valley regions in numeric data.
Compute the tree of nested peak regions in a data set:
>>> import peakoscope
>>> data = [10, 30, 40, 30, 10, 50, 70, 70, 50, 80]
>>> print(peakoscope.tree(data))
0:10
├─5:10
│ ├─9:10
│ └─6:8
└─1:4
└─2:3
From the tree, select default peak regions and print their subarrays of data:
>>> for peak in peakoscope.tree(data).size_filter():
... print(peak.subarray(data))
...
[80]
[70, 70]
[30, 40, 30]
The github repo contains tutorials and a glossary:
Copyright (C) 2021-2024 Eivind Tøstesen. This software is licensed under GPLv3
Citation can include one or more of:
Peakoscope + version
Github URL: https://github.com/eivindtostesen/hierarchical_peak_finding
PyPI URL: https://pypi.org/project/peakoscope/
The open-access article:
Tøstesen, E. A stitch in time: Efficient computation of genomic DNA melting bubbles. Algorithms for Molecular Biology, 3, 10 (2008). DOI: 10.1186/1748-7188-3-10
FAQs
Data analysis of peak and valley regions
We found that peakoscope 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.