
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@carisls/mysql-pull
Advanced tools
A CLI tool to pull all accounts from MySQL server and create separate files with user and their privileges.
A CLI tool to pull all accounts from MySQL server and create separate files with user and their privileges.
Tool allows a header wrapped in a multiline comment at the top
/*
Application: Application 1
Server: my-server.example.com
Owner: MyName@example.com
*/
npm i -g @carisls/mysql-pull
Example: Provide a connection string, a destination folder and an ignore pattern
dbPull -c 'mysql://username:password@db.server.com:3306/database' -f ./service-accounts -i '_123$'
In order to excute this CLI and be able to pull all user privileges, user needs to have those grants:
-- Replace 'your_user'@'your_host' with your user
GRANT SELECT ON mysql.* TO 'your_user'@'your_host';
GRANT SHOW DATABASES ON *.* TO 'your_user'@'your_host';
Usage: dbPull [options]
Options:
-V, --version output the version number
-c, --connectionString <string> Database connection string (alt DATABASE_CONN env var)
-f, --folder <string> Destination folder
-i, --ignore <string> Ignore account RegExp pattern
-h, --help display help for command
FAQs
A CLI tool to pull all accounts from MySQL server and create separate files with user and their privileges.
We found that @carisls/mysql-pull 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.