
Research
Security News
Malicious npm Packages Use Telegram to Exfiltrate BullX Credentials
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
babel-helper-regex
Advanced tools
The babel-helper-regex package is a utility module used by Babel plugins to help with the manipulation and optimization of regular expressions. It provides functions to modify regex patterns and flags, which is particularly useful when developing custom Babel transformations that involve regular expressions.
Optimize regex literals
This feature allows the optimization of regular expressions by collapsing redundant patterns and ensuring the most efficient regex is used. This can improve performance and reduce the size of the regex.
import { optimizeRegexLiteral } from 'babel-helper-regex';
const optimizedRegex = optimizeRegexLiteral(/foo|foo/g);
console.log(optimizedRegex); // Output might be optimized version of regex
regexp-tree is a toolkit for handling, parsing, and transforming regular expressions. It provides a more comprehensive set of tools compared to babel-helper-regex, including an AST for regex patterns, which allows for more complex manipulations and optimizations.
safe-regex is a package that checks if a regular expression is safe and not susceptible to ReDoS (Regular Expression Denial of Service) attacks. While babel-helper-regex focuses on optimization and modification, safe-regex provides security insights, which can be crucial for applications processing user-generated patterns.
TODO
FAQs
Helper function to check for literal RegEx
The npm package babel-helper-regex receives a total of 0 weekly downloads. As such, babel-helper-regex popularity was classified as not popular.
We found that babel-helper-regex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 5 open source maintainers 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 uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.
Security News
AI-generated slop reports are making bug bounty triage harder, wasting maintainer time, and straining trust in vulnerability disclosure programs.