How To Install changeme on Debian 10
Introduction
In this tutorial we learn how to install changeme
on Debian 10.
What is changeme
changeme is:
This package contains a default credential scanner. Commercial vulnerability scanners miss common default credentials. Getting default credentials added to commercial scanners is often difficult and slow. changeme is designed to be simple to add new credentials without having to write any code or modules.
changeme keeps credential data separate from code. All credentials are stored in yaml files so they can be both easily read by humans and processed by changeme. Credential files can be created by using the ./changeme.py –mkcred tool and answering a few questions.
changeme supports the http/https, MSSQL, MySQL, Postgres, ssh and ssh w/key protocols. Use ./changeme.py –dump to output all of the currently available credentials.
There are three methods to install changeme
on Debian 10. We can use apt-get
, apt
and aptitude
. In the following sections we will describe each method. You can choose one of them.
Install changeme Using apt-get
Update apt database with apt-get
using the following command.
sudo apt-get update
After updating apt database, We can install changeme
using apt-get
by running the following command:
sudo apt-get -y install changeme
Install changeme Using apt
Update apt database with apt
using the following command.
sudo apt update
After updating apt database, We can install changeme
using apt
by running the following command:
sudo apt -y install changeme
Install changeme Using aptitude
If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude
using the following command.
sudo aptitude update
After updating apt database, We can install changeme
using aptitude
by running the following command:
sudo aptitude -y install changeme
How To Uninstall changeme on Debian 10
To uninstall only the changeme
package we can use the following command:
sudo apt-get remove changeme
Uninstall changeme And Its Dependencies
To uninstall changeme
and its dependencies that are no longer needed by Debian 10, we can use the command below:
sudo apt-get -y autoremove changeme
Remove changeme Configurations and Data
To remove changeme
configuration and data from Debian 10 we can use the following command:
sudo apt-get -y purge changeme
Remove changeme configuration, data, and all of its dependencies
We can use the following command to remove changeme
configurations, data and all of its dependencies, we can use the following command:
sudo apt-get -y autoremove --purge changeme
Dependencies
changeme have the following dependencies:
- python3-cerberus
- python3-jinja2
- python3-libnmap
- python3-logutils
- python3-lxml
- python3-memcache
- python3-netaddr
- python3-nose
- python3-paramiko
- python3-psycopg2
- python3-pymongo
- python3-pyodbc
- python3-pysnmp4
- python3-redis
- python3-requests
- python3-selenium
- python3-shodan
- python3-sqlalchemy
- python3-tabulate
- python3-yaml
- python3
References
Summary
In this tutorial we learn how to install changeme
package on Debian 10 using different package management tools: apt
, apt-get
and aptitude
.