November 2009
M T W T F S S
« Oct   Dec »
 1
2345678
9101112131415
16171819202122
23242526272829
30  
  1. We welcome any feedback, questions or comments

Hacking – Internet explorer saved passwords

Here is some tricks to hack all the saved password on IE. I want to hack the email account password of of user in order to check the official emails which he/she has been saved on IE.

Method, 1. I have a portable Firefox installed on my USB storage drive. I asked his/her permission to [...]

Webmin – How to get root privillages

Recently one of the clients provides me a a webmin admin user accounts to host a website which subversion enabled on it.

Also I need to create a domain for hosting and email account. So I prefer to install ‘Virtualin’ on the server. My requirement is each of the sites must have using subversion. [...]

MSSQL – Transferring ownership of a table

Got another issue with the MSSQL migration.

I have restored the MSSQL 2005 database from one hosting company to another hosting. Then I modify the web.config to make the changes. But the site is not connecting even though all the access details are correct

[...]

Plesk – qmail sending the mails from localhost.localdomain

Yesterday I have issue with plesk mail. During the nagios setup on a pleask installed server, I noticed that all the mails which generated from the console showing the suffix localhost.localdomain. Hence it caught moved to spam mail.

My trails are,

1. First checking the mx records properly point to the server 2. Check the [...]

How do I install jre plugins for Firefox on Linux

1.Download and extract the binary file jre-6u6-linux-i586.bin from java.com

#sh jre-6u6-linux-i586.bin

2, Switch to Firefox installation folder or obeviously can can choose “.mozilla” from your home directory.

#cd /home/installation/Firefox2.0/firefox/plugins

3. Create a link to jre plug ins

#  [root@rc-149 ~]# <strong> ln -s /usr/java/jre1.6.0_14/plugin/i386/ns7/libjavaplugin_oji.so  /home/<user>/.mozilla/plugins/</strong>

4, Restart Firefox

# killall -9 firefox && firefox

5, [...]

PosgreSQL administration

Here are some posgresql administrative commands,

1, Connecting a database

#psql  -h localhost -p 5432 postgres "admin"

which connect the user ‘posgres’ with ‘admin’ as password. 2. Create a user from psql console

postgres=# CREATE USER luntbuild;

3. Change the password of the user

 postgres=# ALTER USER luntbuild PASSWORD ‘luntbuild

‘; 4, Create database [...]