
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
The code is mostly derived from cx_bsdiff (written by Anthony Tuininga, http://cx-bsdiff.sourceforge.net/). The cx_bsdiff code in turn was derived from bsdiff, the standalone utility produced for BSD which can be found at http://www.daemonology.net/bsdiff. In addition to the two functions (diff and patch) cx_bsdiff provides, this package includes:
The bsdiff4 package defines the following high level functions:
diff(src_bytes, dst_bytes)
-> bytes
Return a BSDIFF4-format patch (from src_bytes
to dst_bytes
) as
bytes.
patch(src_bytes, patch_bytes)
-> bytes
Apply the BSDIFF4-format patch_bytes
to src_bytes
and return
the bytes.
file_diff(src_path, dst_path, patch_path)
Write a BSDIFF4-format patch (from the file src_path
to the
file dst_path
) to the file patch_path
.
file_patch(src_path, dst_path, patch_path)
Apply the BSDIFF4-format file patch_path
to the file src_path
and write the result to the file dst_path
.
file_patch_inplace(path, patch_path)
Apply the BSDIFF4-format file patch_path
to the file path
in place.
Example:
.. code-block:: python
import bsdiff4 a = 100000 * b'a' b = bytearray(a) b[100:106] = b' diff ' p = bsdiff4.diff(a, bytes(b)) len(p) 154 bsdiff4.patch(a, p) == b True
FAQs
binary diff and patch using the BSDIFF4-format
We found that bsdiff4 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.