Blogs
Submitted by sandip on Sat, 05/15/2004 - 20:32
Submitted by sandip on Sat, 05/15/2004 - 11:04
INSERT is a complete, bootable linux system. It comes with a graphical user interface running the fluxbox window manager while still being sufficiently small to fit on a credit card-sized CD-ROM.
INSERT contains a multitude of useful tools to be at your hand in a variety of situations:
-
full read-write support for NTFS-partitions using captive
-
support for various file system types: EXT2,EXT3,MINIX,REISERFS,JFS,XFS,NTFS,FAT,MSDOS,NFS,SMBFS,NCPFS,UDF,UFS,HFS,HFS+
-
support for linux software RAID and LVM
-
network analysis (e.g. nmap, tcpdump)
-
disaster recovery (e.g. gpart, partimage, testdisk)
-
virus scanning (Clam Antivirus)
-
computer forensics (e.g. chkrootkit)
-
surf the internet (e.g. links-hacked, AxY FTP)
Submitted by sandip on Thu, 05/13/2004 - 10:12
AntiExploit is a small Perl script that scans for well known exploit files. It currently recognizes over 1700 suspicious files, and the database is updated weekly.
Submitted by sandip on Wed, 05/12/2004 - 07:33
Annuaire (Directory) Postnuke Blocks - Annuaire (Directory) is a tool that offers families, associations, or other groups a way to manage a private directory on the Internet. Addresses, e-mails, phone numbers, and a photograph of each member is stored in a MySQL database. Data is created and updated from a web browser.
Submitted by sandip on Mon, 05/10/2004 - 15:30
For people that want to add a blog to their phpBB forum, phpBB Blog is here... It is implemented with just 2 PHP files. One file displays a phpBB forum as blog entries. The other file displays the same forum as an RSS feed.
There are couple other interesting projects and offsite readings by Anthony Boyd.
Submitted by sandip on Sat, 05/08/2004 - 00:40
An excellent free ebook which imparts knowledge on how the Web technically works and how to write software that is more flexible, dynamic, and powerful than the typical web browser using perl and perl tk. The goal is to give you the ability to retrieve, manipulate, and redistribute web-based information in an automated fashion.
Submitted by sandip on Fri, 05/07/2004 - 23:01
Tips and Techniques for Everyday Use by Michael Stutz. This free book presents "recipes" for preparing or accomplishing a particular, specific thing. The author has selected what he considers to be the easiest and most effective methods for accomplishing particular tasks, and have arranged these recipes in general sections according to subject matter.
The layout is very simple and the book is an excellent resource for daily linux use.
Submitted by sandip on Mon, 05/03/2004 - 10:37
The Unix shell is the main scripting environment of every Linux, Mac OS X and Unix system, whether a rescued laptop or a million-dollar mainframe. This cookbook of useful, customizable, and fun scripts gives you the tools to solve common Linux, Mac OS X and Unix problems and personalize your computing environment. Among the more than 100 scripts included are an interactive calculator, a spell checker, a disk backup utility, a weather tracker, and a web logfile analysis tool. The book also teaches you how to write your own sophisticated shell scripts by explaining the syntax and techniques used to build each example scripts. Examples are written in Bourne Shell (sh) syntax.
Submitted by sandip on Sat, 05/01/2004 - 22:01
Author: Peter Lavin
This article gives a great insight into developing a small website that incorporates your own shopping cart or a third-party cart in conjunction with PayPal.
Finding a secure method of payment can be a problem for small businesses without merchant credit card accounts or access to a secure server. This article concerns creating an e-commerce site using your own shopping cart or a third-party cart in conjunction with PayPal. This solution will maximise the business benefits and minimise the inconvenience to the customer. A database and server-side scripting will be implemented using MySQL and PHP. Some knowledge of these technologies and of HTML is assumed.
Submitted by sandip on Fri, 04/30/2004 - 23:59
You can redirect browser to use SSL secure port using .htaccess file with Rewrite Rules.
Create a .htaccess file with the below Rewrite rule.
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteRule ^ https://secure.yourdomain.com%{REQUEST_URI} [NS,R,L]
|