Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

password

How to Disable IE/Firefox remember password ?
Tuesday, 20 December 2011 00:05
Sometimes, we need to disable remember password option in Firefox/Internet Explorer. At that time, just set autocomplete="off" for password textbox.
If you set autocomplete="off", remember password option will not display.

Example:



Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/kL_D0aKNhTk/14245

 
Windows 8 Is Going to Have Some Super Sweet Password Management Features [Windows 8]
Friday, 16 December 2011 11:52
Services like 1Password and LastPass are life changers, you sign in with one master password and the app logs you into everything. No need to remember how many symbols and alphanumeric codes you've used. No need to remember 312 different passwords. Well, Windows 8 is going to have the same awesome password management built in. More »


Read more: http://feeds.gawker.com/~r/gizmodo/full/~3/LVkX4WHjrV8/windows-8-is-going-to-have-some-super-sweet-password-management-features

 
Securing OpenVPN With A One Time Password (OTP) On Ubuntu
Monday, 11 July 2011 13:28

Securing OpenVPN With A One Time Password (OTP) On Ubuntu

So, you got yourself a nice OpenVPN box. People need to login with their certificates but... if their laptop is stolen anyone could login. Sure, you could add password login but thats a bit outdated. The solution for this is using a OTP (one time password).

Read more: http://howtoforge.com/securing-openvpn-with-a-one-time-password-otp-on-ubuntu

 
How To Set Up A Web-Based Enterprise Password Manager Protected By Two-Factor Authentication
Wednesday, 06 July 2011 12:28

How To Set Up A Web-Based Enterprise Password Manager Protected By Two-Factor Authentication

While it is great that more services such as Facebook and Google are offering two-factor authentication, there are still plenty of services that do not. What is the next best thing? Using a password manager and incredibly complex passwords. A password manager allows you to use different passwords at all the sites and services you visit, but it creates a 'keys-to-the-kingdom' problem. This tutorial will show you how to install the WebKeePass open-source web-based, enterprise password manager and how to protect it with two-factor authentication from WiKID Systems. Note that we have not evaluated the security of WebKeePass - this would certainly be worthwhile. Our primary selection criteria were: open-source, multi-user and allowed for external authentication, in this case via LDAP. Another option that looked promising was CorporateVault.

Read more: http://howtoforge.com/how-to-set-up-a-web-based-enterprise-password-manager-protected-by-two-factor-authentication

 
Reset MySQL Password on Ubuntu
Sunday, 19 June 2011 06:54
Check if MySQL is running. (display all sockets with TCP protocol, show program name for them)

netstat -tap | grep mysql


Stop MySQL:

sudo stop mysql

or

sudo /etc/init.d/mysql stop


Start MySQL server so that everyone could connect without a password and with all privileges (+ prevent remote clients from connecting for security reasons):

sudo mysqld --skip-grant-tables --skip-networking


In another shell tab connect to MySQL without password

mysql


Update passwords in the MySQL:

mysql> update mysql.user set password = password('your_new_password') where user = 'root';
mysql> flush privileges;


Stop the MySQL server:

sudo mysqladmin shutdown


Start normally:

sudo start mysql


Connect normally:

mysql -u root -p

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/Jn1--7Pghu4/13267

 


Taxonomy by Zaragoza Online