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.
━━━━━━━━ README ━━━━━━━━
Table of Contents ─────────────────
1 rer 2 Install 3 All in one simple function
1 rer ═════
Regular expression in regular expression.
2 Install ═════════
`pip install rer'
3 All in one simple function ════════════════════════════
┌────
│ import re
│
│ version = '1.1.2'
│ author = 'Meme Kagurazaka'
│ license = 'Public Domain'
│
│
│ def rer(re_string, re_group=0,
│ item_continuation=lambda _: _, list_continuation=lambda _: ,
│ re_continuation=None):
│ """rer atom
│
│ This function use regular expression string re_string' and the group │
re_group' (default 0) to match the data'. This will evaluates a list, │ a function
re_continuation' will apply to every match of the list,
│ a function list_continuation' will apply to the list.
list_continuation'
│ does nothing by default.
│
│ re_continuation' applies
item_continuation' to re_group' by default. │ │ Return value is a function which can be apply to the
data'.
│ Return value can also be used as a item_continuation' or │
list_continuation' of another rer recursively.
│ """
│
│ if re_continuation is None:
│ re_continuation = lambda : item_continuation(.group(re_group))
│
│ return lambda x: list_continuation(
│ [re_continuation() for _ in re.compile(re_string).finditer(x)])
└────
FAQs
Regular expression in regular expression
We found that rer 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.