
Research
/Security News
Bitwarden CLI Compromised in Ongoing Checkmarx Supply Chain Campaign
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.
ftp-brute-force-tool
Advanced tools
ftp_brute_force is a tool designed for performing FTP brute force attacks.
You can install it via pip:
pip install ftp_brute_force
You can import and use the tool as follows:
from ftp_brute_force import FtpBruteForce
ftp_brute(server_address, user_dict_path, password_dict_path, [server_port])
from ftp_brute_force import FtpBruteForce
if __name__ == '__main__':
server_address = "192.168.1.1"
user_dict = r"user.dic"
password_dict = r"password.dic"
fbf = FtpBruteForce(server_address, user_dict, password_dict)
user_tuple, password_tuple = fbf.load_dict()
fbf.connection()
fbf.brute(user_tuple, password_tuple)
server_address: The IP address of the target FTP server.user_dict: Path to the user dictionary for brute forcing.password_dict: Path to the password dictionary for brute forcing.ftplib (built-in Python module)socket (built-in Python module)time (built-in Python module)os (built-in Python module)Let me know if you'd like to make any changes!
For details, see the CHANGELOG.
FAQs
A FTP brute force tool
We found that ftp-brute-force-tool 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
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.

Research
/Security News
Docker and Socket have uncovered malicious Checkmarx KICS images and suspicious code extension releases in a broader supply chain compromise.

Product
Stay on top of alert changes with filtered subscriptions, batched summaries, and notification routing built for triage.