Website vulnerability scanners

May 25, 2009 by  
Filed under Security and Vulnerabilities

Comments Off

http://groups.google.com/group/stopbadware/web/website-vulnerability-scanners

Tools to Scan for SQL Injection in PHP / MYSQL

May 25, 2009 by  
Filed under Security and Vulnerabilities

Comments Off

http://www.owasp.org/index.php/Category:OWASP_SQLiX_Project

Tool to scan for SQL Injection ASP.NET

May 25, 2009 by  
Filed under Security and Vulnerabilities

Comments Off

http://www.communities.hp.com/securitysoftware/blogs/spilabs/archive/2008/06/24/finding-sql-injection-with-scrawlr.aspx

Free Isapi Rewrite Filter

March 27, 2009 by  
Filed under Tools and Utilities, Windows Server - IIS

Comments Off

Ionic’s Isapi Rewrite Filter

Ionic’s Isapi Rewrite Filter, aka IIRF, is a small, cheap, easy to use, URL rewriting ISAPI filter that combines a good price (free!) with good features. It is fast and powerful. It works on IIS 5.0, 5.1, 6.0, and 7.0. If you use IIS, you can download IIRF and get started right now.

Micro SQL Admin for SQL 2008 and 2005

March 26, 2009 by  
Filed under Tools and Utilities

Comments Off

Micro SQL Admin is a tiny tool written in PHP intended for MS SQL Server 2008 and 2005 administration over the World Wide Web.

It is FREE!

DOWNLOAD HERE

How to install the Micro SQL Admin:

1. Install SQL Server 2005 Driver for PHP.

2. Place index.php to any folder of your website. Be sure there are correct permissions to run PHP. You can rename index.php if you wish.

Create addional FTP accounts using SSH in Plesk

March 10, 2009 by  
Filed under Plesk-Linux, Tools and Utilities

Comments Off

Login to the server as ‘root’ user and create a system user (for example USER_NAME) with home directory you need, for example:
# /usr/sbin/useradd -d $HTTPD_VHOSTS_D/your_domain/some/location -s /bin/false USER_NAME

Set the password for this user using ‘passwd’ command.

Add this user into ‘psacln’ group:
# /usr/sbin/usermod -G psacln USER_NAME

The user will be ‘chroot’-ed to his home because ‘psacln’ group is listed in /etc/ftpchroot. Set read/write permissions for this user on his home directory, for example:
# chmod 755 $HTTPD_VHOSTS_D/your_domain/some/location
# chown USER_NAME:psacln $HTTPD_VHOSTS_D/your_domain/some/location

And set execute permission on the domain’s httpdocs folder:

# chmod 751 $HTTPD_VHOSTS_D/your_domain/httpdocs

$HTTPD_VHOSTS_D – have to be replaced with the real path to the Plesk virtual hosts in the all examples above.

What is my ip address: Check your public ip

February 19, 2009 by  
Filed under Tools and Utilities

Comments Off

www.myipy.com

Country state city database

February 19, 2009 by  
Filed under Tools and Utilities

Comments Off

GeoWorldMap is a database that contains the cities of the world with their country, region, latitude, longitude and more.

http://www.geobytes.com/GeoWorldMap.zip

How to use VI Editor – Linux / Unix

February 18, 2009 by  
Filed under Linux Tutorials

Comments Off

To save the edits you have made, but leave vi running and your file open:

  1. Press <Esc>.
  2. Type :w
  3. Press <Return>.

To quit vi, and discard any changes your have made since last saving:

  1. Press <Esc>.
  2. Type :q!
  3. Press <Return>.

STARTING vi

     vi filename    edit a file named "filename"
     vi newfile     create a new file named "newfile"

ENTERING TEXT

     i            insert text left of cursor
     a            append text right of cursor

MOVING THE CURSOR

     h            left one space
     j            down one line
     k            up one line
     l            right one space

BASIC EDITING

     x         delete character
     nx        delete n characters
     X         delete character before cursor
     dw        delete word
     ndw       delete n words
     dd        delete line
     ndd       delete n lines
     D         delete characters from cursor to end of line
     r         replace character under cursor
     cw        replace a word
     ncw       replace n words
     C         change text from cursor to end of line
     o         insert blank line below cursor
                  (ready for insertion)
     O         insert blank line above cursor
                  (ready for insertion)
     J         join succeeding line to current cursor line
     nJ        join n succeeding lines to current cursor line
     u         undo last change
     U         restore current line

MOVING AROUND IN A FILE

     w            forward word by word
     b            backward word by word
     $            to end of line
     0 (zero)     to beginning of line
     H            to top line of screen
     M            to middle line of screen
     L            to last line of screen
     G            to last line of file
     1G           to first line of file
     <Control>f   scroll forward one screen
     <Control>b   scroll backward one screen
     <Control>d   scroll down one-half screen
     <Control>u   scroll up one-half screen
     n            repeat last search in same direction
     N            repeat last search in opposite direction

CLOSING AND SAVING A FILE

     ZZ            save file and then quit
     :w            save file
     :q!            discard changes and quit file

 

How to remove a mailing list?

February 18, 2009 by  
Filed under cPanel-WHM

Comments Off

1. Login to cPanel.

2. Click on “Mail”, then click on “Mailing Lists”

3. Locate the mailing list you want to remove and click on the “Delete” button next to it.

4. Click on the “Yes” button for the delete confirmation.

« Previous PageNext Page »