February 13, 2010 - 4:39 pm
Tags: c option, Compression, compression quality, connection, internet, slow internet connection, slow internet connections, ssh, ssh sessions, xtightvncviewer
Posted in Compression, quality, speed, ssh, xtightvncviewer | No comments
If you plan to forward X applications via ssh, and are using a very slow internet connection you should definitely use compression. The “-C” option will use compression and will substantially increase the data transfer rate in 100 Kb/s or less internet connections. Also with vnc connection, if you are using xtightvncviewer you can effectively [...]
February 6, 2010 - 9:42 am
Tags: automatic mechanisms, brute force, dictionary, force, legitimate user, login, ssh, timeout, timeouts, user
Posted in brute, force, login, ssh, timeout | 1 comment
SSH login timeouts are not very effective at preventing unauthorized login attempts. Most ssh attacks are scripted attached launched by automatic mechanisms. The scripts most likely will use dictionary based brute force attacks that insert the password very quickly. Setting the login timeout very low will most likely not prevent such scripted attacks, and will [...]
January 25, 2010 - 12:46 pm
Tags: active processes, attempt, linux machine, login, login attempts, machine, password, root, security breech, ssh access
Posted in access, backup, breech, detect, linux, login, root, security, ubuntu | 2 comments
Detecting a security breech is sometimes as easy as logging into the machine, using ssh, and viewing the last login attempt from a completely unrecognized ip address or domain. Subsequently check your auth.log file, in /var/log, for login attempts. If you see countless failed login attempts you have been the victim of a brute from [...]
January 24, 2010 - 4:15 pm
Tags: accessible system, ban, login, login attempts, rsa, rsa keys, ssh, ssh ftp, ssh server, System
Posted in Server, fail2ban, login, remote, rsa, security, ssh | No comments
Based on some recent experience do not ever allow password remote login. There are two things you chould apply to your ssh server. Implement a RSA key login, and implement fail2ban. Fail2ban will modify iptables (firewall) to block the ip address of offending attempts to connect. It will do so for your apache, ssh, ftp, [...]
January 23, 2010 - 4:58 pm
Tags: default location, file, key file, login, new id, password, rsa, security breach, ssh, ssh connection
Posted in key, remote, rsa, secure, ssh | No comments
If you are going to be providing technical support, to be professional you should implemented a secure ssh connection. There is no excuse to potentially give terminal access to a password snooper. Using ssh the terminal commands themselves are encrypted, so disabling password login truly minimized risks of a security breach. Using a RSA key [...]
November 29, 2009 - 9:18 am
Tags: email, external ip address, host accesses, incoming addresses, local ip address, mail, mail distribution, port, Sendmail, Server
Posted in ClamAV, Sendmail, spamassassin, virtual, virtusertable | No comments
I’ve gone over sendmail several times, but ultimately it comes down to a couple of factors. Unless you are setting up an enterprise level email server, and require some login settings, and potential relaying, sendmail is relatively simple. You start by installing it:
sudo apt-get install sendmail
Sendmail operates on port 25 because it is an SMTP [...]
November 22, 2009 - 8:42 am
Tags: computer, explorer, genuine stupidity, internet, internet explorer 8, internet explorer versions, ms windows products, old versions of internet explorer, virus, Windows
Posted in AVG, Microsoft, Windows, botnet, mode, safe, spam, spybot, ubuntu, virus | No comments
The problem with Internet security nowadays is largely in part because people do not know how to update their computers. I fix computers as a side job, and you’d be surprised that many people have told me they don’t click the Microsoft gold shield in their system tray because there is a virus going around. [...]
This is a standard requirement of any new Mysql installation. First login: mysql -u root -p Press enter, with no characters entered, when you are prompted for the root password. The password is nothing. Then enter the following into the mysql prompt. Replace temp with your desired password:
SET PASSWORD FOR root@localhost=PASSWORD(‘temp’);
Share this on del.icio.us
Stumble upon [...]
August 22, 2007 - 2:46 am
Tags: chmod 666, guest, guest os, GuestOS, host networking, os port, port, port 22, sudo, VBoxManage, virtual operating system, virtualbox
Posted in dhcp, network bridge, virtualbox | 9 comments
UPDATE: VirtualBox host networking is much easier now, and is completely automated on both Windows and Linux.
There are two ways to interact with your guest operating system. You can either forward a port on the host machine, or you can have the guest operating system utilize dhcp to retrieve an IP address from your router. [...]
August 17, 2007 - 6:09 am
Tags: alias, control x, file, file nano, login, root, root password, sudo command, superuser, user
Posted in debian, etch, sudo, sudoers | No comments
Debian is the root of many Linux distibutions. It is extremely clean, and it great for moderate to advanced Linuxed users. To start with a clean Debain install your going to have to add your user name, to the sudoers file, in order to have expected sudo passwordless superuser access. First to open the sudoers [...]