
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.
Defangs and refangs malicious URLs
As a script: use the defang
command to defang or "refang"
content, supporting
both stdin/stdout streams as well as to/from files on disk::
$ echo http://evil.example.com/malicious.php | defang
hXXp://evil.example[.]com/malicious.php
As a library::
>>> from defang import defang
>>> url = "http://evil.example.com/malicious.php"
>>> defang(url)
'hXXp://evil.example[.]com/malicious.php'
We've added a few new keyword argument options::
>>> defang(url, colon=True)
'hXXp[:]//evil.example[.]com/malicious.php'
>>> defang(url, all_dots=True)
'hXXp://evil[.]example[.]com/malicious.php'
>>> defang(url, zero_width_replace=True)
'h\u200bt\u200bt\u200bp\u200b:\u200b/\u200b/\u200be\u200bv\u200bi\u200bl\u200b.\u200be\u200bx\u200ba\u200bm\u200bp\u200bl\u200be\u200b.\u200bc\u200bo\u200bm\u200b/\u200bm\u200ba\u200bl\u200bi\u200bc\u200bi\u200bo\u200bu\u200bs\u200b.\u200bp\u200bh\u200bp'
# printed as 'http://evil.example.com/malicious.php'
0.5.3:
all_dots=True
will turn all dots into [.] and not just the one before the TLDcolon=True
will translate http:// into http[:]// as well as other protocols
0.4.0:FAQs
Defangs and refangs malicious URLs
We found that defang 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.