
Security News
Inside Lodash’s Security Reset and Maintenance Reboot
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.
@secretlint/secretlint-rule-database-connection-string
Advanced tools
A secretlint rule for database-connection-string
A Secretlint rule to detect hardcoded passwords in database connection strings for MongoDB, MySQL, and PostgreSQL.
This rule detects URI format database connection strings that contain hardcoded credentials for MongoDB, MySQL, and PostgreSQL.
Install with npm:
npm install @secretlint/secretlint-rule-database-connection-string
Report when hardcoded credentials are found in MongoDB connection strings.
Detects:
mongodb://user:password@host:port/databasemongodb+srv://user:password@cluster.mongodb.net/databaseGood:
const uri = "mongodb://localhost:27017/mydb";
const uri = "mongodb://username:${PASSWORD}@host:27017/mydb";
const uri = "mongodb://username:REPLACE_WITH_PASSWORD@localhost:27017/mydb"; // placeholder
const uri = "mongodb+srv://user:{password}@cluster.mongodb.net/test";
Bad:
const uri = "mongodb://user:s3cr3tP4ss@cluster.mongodb.net/mydb";
MONGO_URI="mongodb://admin:realP@ssw0rd@cluster.mongodb.net/production";
mongodb+srv://app:c0mpl3xPwd@cluster0.mongodb.net/mydb?retryWrites=true;
Report when hardcoded credentials are found in MySQL connection strings.
Detects:
mysql://user:password@host:port/databasejdbc:mysql://user:password@host:port/databasemysqlx://user:password@host:port/databaseGood:
const uri = "mysql://localhost:3306/mydb";
const uri = "mysql://user:${PASSWORD}@host:3306/mydb";
const uri = "mysql://user:REPLACE_WITH_PASSWORD@localhost:3306/mydb"; // placeholder
Bad:
const uri = "mysql://user:hardcodedpass@db.example.com:3306/mydb";
const jdbc = "jdbc:mysql://admin:s3cr3tPwd@db.company.com:3306/app";
Report when hardcoded credentials are found in PostgreSQL connection strings.
Detects:
postgresql://user:password@host:port/databasepostgres://user:password@host:port/databaseGood:
const uri = "postgresql://localhost:5432/mydb";
const uri = "postgres://user:${PASSWORD}@host:5432/mydb";
const uri = "postgres://user:REPLACE_WITH_PASSWORD@localhost:5432/mydb"; // placeholder
Bad:
const uri = "postgres://user:secretpass@db.example.com:5432/mydb";
create_engine('postgresql://postgres:c0mpl3xPwd@host:5432/mydb')
allows: string[]
This rule includes several mechanisms to prevent false positives:
${PASSWORD}, {password}, {{username}}password, username, YOUR_PASSWORD, etc.Example patterns that are ignored:
mongodb://username:password@localhost:27017/database
mysql://user:${PASSWORD}@host:3306/db
postgresql://{username}:{password}@host:5432/db
See Releases page.
No Test to avoid Dependency cycles.
Pull requests and stars are always welcome.
For bugs and feature requests, please create an issue.
git checkout -b my-new-featuregit commit -am 'Add some feature'git push origin my-new-featureMIT © azu
FAQs
A secretlint rule for database-connection-string
The npm package @secretlint/secretlint-rule-database-connection-string receives a total of 483 weekly downloads. As such, @secretlint/secretlint-rule-database-connection-string popularity was classified as not popular.
We found that @secretlint/secretlint-rule-database-connection-string demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 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.

Security News
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.