Notorious hacker Marc Maiffre said in an interview with CNet.com that OS X is less secure than Windows. The reason why Windows is more attacked anyway is Windows’ market penetration.
Read more on CNet.com…
Notorious hacker Marc Maiffre said in an interview with CNet.com that OS X is less secure than Windows. The reason why Windows is more attacked anyway is Windows’ market penetration.
Read more on CNet.com…
The open source encryption program TrueCrypt 6.1 has been released. It now features:
I. Abstract
All of us know, there are lots of bad guys out there just trying to brute force our ssh ports. The following article provides information about the first steps to be performed when setting up a new webserver running Debian Etch.
For security reasons we recommend applying these how to’s before proceeding
The following howto will show you how to enable SSH login without a server based password (passwordless login) and how to disable password login in general on your server.
II. Generate SSH public- private-key pair
client$ mkdir ~/.ssh
client$ chmod 700 ~/.ssh
client$ cd .ssh
client$ ssh-keygen -q -f id_rsa -t rsa
.ssh
you will then find those two files:id_rsa
> contains private-key (encrypted with your passphrase)id_rsa.pub
> contains public-key (to be put on your Etch Webserver)III. Upload public-key to server
client$ cat id_rsa.pub | ssh root@yourdomain.net cat “>“ id_rsa.remote
IV. Activate public- private-key authentication
client$ ssh root@yourdomain.net (provide your password)
server$ apt-get install nano
server$ nano /etc/ssh/sshd_config
sshd_config
)AuthorizedKeysFile %h/.ssh/authorized_keys
sshd_config
)# Change to no to disable tunnelled clear text passwords
PasswordAuthentication no
server$ /etc/init.d/ssh restart
server$ cd
server$ mkdir .ssh
server$ cp id_rsa.remote .ssh/authorized_keys
V. Test your configuration
client2$ ssh root@yourdomain.net
VI. Kindly Sponsored by
VII. Further steps
If you didn’t already do it. For further improving your server’s security you probably want to change ssh port address from 22 to anything else? Read here, how to do that…