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.
| |Tests| |Version| |License|
In today's data-driven world, more and more researchers and data scientists use machine learning to create better models or more innovative solutions for a better future.
These models often tend to handle sensitive or personal data, which can cause privacy issues. For example, some AI models can memorize details about the data they've been trained on and could potentially leak these details later on.
To help measure sensitive data leakage and reduce the possibility of it happening, there is a mathematical framework called differential privacy.
In 2020, OpenMined created a Python wrapper for Google's Differential Privacy <https://github.com/google/differential-privacy>
_ project
called PyDP. The library provides a set of ε-differentially private algorithms,
which can be used to produce aggregate statistics over numeric data sets containing
private or sensitive information. Therefore, with PyDP you can control the
privacy guarantee and accuracy of your model written in Python.
Things to remember about PyDP:
::rocket: Features differentially private algorithms including: BoundedMean, BoundedSum, Max, Count Above, Percentile, Min, Median, etc.
All the computation methods mentioned above use Laplace noise only (other noise mechanisms will be added soon! :smiley:).
::fire: Currently supports Linux and macOS (Windows support coming soon :smiley:)
::star: Use Python 3.6+. Support for Python 3.5 and below is deprecated.
To install PyDP, use the PiPy <https://pip.pypa.io/en/stable/>
__
package manager:
.. code:: bash
pip install python-dp
(If you have pip3
separately for Python 3.x, use pip3 install python-dp
.)
Refer to the curated list <https://github.com/OpenMined/PyDP/tree/dev/examples>
__ of tutorials and sample code to learn more about the PyDP library.
You can also get started with an introduction to PyDP <https://github.com/OpenMined/PyDP/blob/dev/examples/Tutorial_1-carrots_demo/carrots_demo.ipynb>
__ (a Jupyter notebook) and the carrots demo <https://github.com/OpenMined/PyDP/blob/dev/examples/Tutorial_1-carrots_demo/carrots.py>
__ (a Python file).
Example: calculate the Bounded Mean
.. code:: python
# Import PyDP
import pydp as dp
# Import the Bounded Mean algorithm
from pydp.algorithms.laplacian import BoundedMean
# Calculate the Bounded Mean
# Basic Structure: `BoundedMean(epsilon: float, lower_bound: Union[int, float, None], upper_bound: Union[int, float, None])`
# `epsilon`: a Double, between 0 and 1, denoting the privacy threshold,
# measures the acceptable loss of privacy (with 0 meaning no loss is acceptable)
x = BoundedMean(epsilon=0.6, lower_bound=1, upper_bound=10)
# If the lower and upper bounds are not specified,
# PyDP automatically calculates these bounds
# x = BoundedMean(epsilon: float)
x = BoundedMean(0.6)
# Calculate the result
# Currently supported data types are integers and floats
# Future versions will support additional data types
# (Refer to https://github.com/OpenMined/PyDP/blob/dev/examples/carrots.py)
x.quick_result(input_data: list)
Go to resources <https://github.com/OpenMined/PyDP/blob/dev/resources.md>
__ to learn more about differential privacy.
If you have questions about the PyDP library, join OpenMined's Slack <https://slack.openmined.org>
__ and check the #lib_pydp channel. To follow the code source changes, join #code_dp_python.
To contribute to the PyDP project, read the guidelines <https://github.com/OpenMined/PyDP/blob/dev/contributing.md>
__.
Pull requests are welcome. If you want to introduce major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
Apache License 2.0 <https://choosealicense.com/licenses/apache-2.0/>
__
.. |Tests| image:: https://img.shields.io/github/workflow/status/OpenMined/PyDP/Tests .. |Version| image:: https://img.shields.io/github/v/tag/OpenMined/PyDP?color=green&label=pypi .. |License| image:: https://img.shields.io/github/license/OpenMined/PyDP
FAQs
Python API for Google's Differential Privacy library
We found that python-dp 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.