How To Reset A Kloxo Or LxAdmin Password From SSH

How to Reset A Kloxo Or LxAdmin Password From SSH Kloxo is an another useful free control panel for web hosting management. When your VPS is installed by us with lxadmin the password will be the same as what you asked for on setup. If not try “admin” Note: if you reinstall yourself it will also be “admin” If you […]

» Read more

How to Reboot your cpanel/whm in ssh

  How to Reboot your cpanel/whm in ssh If you happen to mess up your ssh configuration some how you can reset the ssh config from Cpanel then restart your machine via ssh by using following command /etc/init.d/cpanel restart   Enjoy!!!                                       […]

» Read more

How to Configuring Self-Signed SSL / HTTPS Access

To Configuring Self-Signed SSL / HTTPS Access 1) To install OpenSSL on your VPS: apt-get -y install openssl   2) To generate a self-signed certificate that ZPanel will use to secure your connection by using following commands: openssl req -x509 -nodes -days 365 -newkey rsa:2048 -out /etc/pki/tls/certs/zpanel.crt -keyout /etc/pki/tls/certs/zpanel.key   3) To be configured to use the new certificate by using […]

» Read more

Simple way to protect SSH against or not protect against

SSH will protect against Seven important steps to Secure Shell protects against (again, from the README) Step 1) Eavesdropping of data transmitted over the network. Step 2) Manipulation of data at intermediate elements in the hosts. Step 3) IP address spoofing where an attack hosts pretends to be a trusted host by sending packets with the source address of the trusted […]

» Read more

SSH Connection Sequence

  The following series of events help protect the integrity of SSH communication. SSH Connection Sequence 1) A cryptographic handshake is made with the server 2) The connection between client and remote server is encrypted using symmetric cipher 3) Client authenticates itself 4) Client can now interact safely with remote server over encrypted connection    

» Read more