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.
@another_works/namelint
Advanced tools
namelint is a tool that creates rules for code and file naming conventions and automatically detects them. The mission of this tool is to free you from the hassle of checking naming conventions in code reviews.
namelint is a tool that creates rules for code and file naming conventions and automatically detects them. The mission of this tool is to free you from the hassle of checking naming conventions in code reviews.
$ npm install namelint --save-dev
Place a file named namelint.json in the root folder
$ touch namelint.json
$ ./node_modules/.bin/namelint
{
"rules": [
{
"dir": "src/consts",
"test": [
{
"type": "namespace",
"regex": ".+Consts$"
},
{
"type": "filename",
"regex": ".+Consts.ts$"
},
{
"type": "filenameInCode"
}
]
}
]
}
"dir"
is target directory"test"
is Inspection Items"type"
is filename
or classname
or namespace
or functionname
or filenameInCode
"regex"
is regular expression textCheck if the filename matches the regex.
Check if the classname matches the regex.
Check if the namespace matches the regex.
Check if the functionname matches the regex.
Whether the file name is used in the code or not case-insensitive
FAQs
namelint is a tool that creates rules for code and file naming conventions and automatically detects them. The mission of this tool is to free you from the hassle of checking naming conventions in code reviews.
The npm package @another_works/namelint receives a total of 37 weekly downloads. As such, @another_works/namelint popularity was classified as not popular.
We found that @another_works/namelint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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’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.