Friday, July 18, 2008

Javascript

Javascript


JavaScript is the name of Netscape Communications Corporation's implementation of ECMAScript, a scripting programming language based on the concept of prototypes. The language is best known for its use in websites, but is also used to enable scripting access to objects embedded in other applications.

Despite the name, JavaScript is only distantly related to the Java programming language, the main similarity being their common debt to the C programming language syntax. Semantically, JavaScript has far more in common with the Self programming language and ActionScript which is also an ECMAScript.

JavaScript is a registered trademark of Sun Microsystems, Inc., used under license for technology invented and implemented by Netscape

JavaScript was originally developed by Brendan Eich of Netscape Communications Corporation under the name Mocha, then LiveScript, and finally renamed to JavaScript. The change of name from LiveScript to JavaScript roughly coincided with Netscape adding support for Java technology in its Netscape Navigator web browser. JavaScript was first introduced and deployed in the Netscape browser version 2.0B3 in December of 1995. When web developers talk about using JavaScript in Internet Explorer, they are actually using JScript. The choice of name proved to be a source of much confusion.

As of 2006, the latest version of the language is JavaScript 1.7. The previous version 1.6 corresponded to ECMA-262 Edition 3 like JavaScript 1.5, except for Array extras, and Array and String generics. ECMAScript, in simple terms, is a standardized version of JavaScript. The ECMA-357 standard specifies E4X, a language extension dealing with XML.

JavaScript is a prototype-based scripting language with a syntax loosely based on C. Like C, the language has no input or output constructs of its own. Where C relies on standard I/O libraries, a JavaScript engine relies on a host environment into which it is embedded. There are many such host environment applications, of which web technologies are the best-known examples. These are examined first.One major use of web-based JavaScript is to write functions that are embedded in or included from HTML pages and interact with the Document Object Model (DOM) of the page to perform tasks not possible in HTML alone.

avaScript debugging has some specifics in comparison with stand-alone applications. JavaScript programs usually rely on interaction with the loaded page's Document Object Model (DOM) so errors may be caused by wrong DOM usage in a technically correct script. This makes JavaScript errors difficult to find. However nowadays both Internet Explorer and the Gecko-based browsers come with a reasonably good JavaScript debugger. Gecko browsers use the Venkman debugger or the FireBug debugger for Mozilla Firefox, while for Internet Explorer there is the Microsoft Script Debugger. Microsoft also provides Microsoft Script Editor (MSE) as part of their Microsoft Office package (Microsoft Office 2002 or higher). There are also some free online checking tools such as JSLint




FOR MORE INFORMATION ,DETAILS AND RESOURCES

XML programming language

XML



The Extensible Markup Language (XML) is a W3C-recommended general-purpose markup language for creating special-purpose markup languages, capable of describing many different kinds of data. In other words, XML is a way of describing data. An XML file can contain the data too, as in a database. It is a simplified subset of Standard Generalized Markup Language (SGML). Its primary purpose is to facilitate the sharing of data across different systems, particularly systems connected via the Internet. Languages based on XML (for example, Geography Markup Language (GML), RDF/XML, RSS, Atom, MathML, XHTML, SVG, XUL, EAD, Klip and MusicXML) are defined in a formal way, allowing programs to modify and validate documents in these languages without prior knowledge of their particular form.

The versatility of SGML for dynamic information display was understood by early digital media publishers in the late 1980s prior to the rise of the internet.[1] [2] By the mid-1990s some practitioners of SGML had gained experience with the then-new World Wide Web, and believed that SGML offered solutions to some of the problems the Web was likely to face as it grew. Dan Connolly added SGML to the list of W3C's activities when he joined the staff in 1995; work began in mid-1996 when Jon Bosak developed a charter and recruited collaborators. Bosak was well-connected in the small community of people who had experience both in SGML and the Web. He received support in his efforts from Microsoft.

XML was designed by an eleven-member working group, supported by an (approximately) 150-member Interest Group. Technical debate took place on the Interest Group mailing list and issues were resolved by consensus or, when that failed, majority vote of the Working Group. The decision record was compiled by Michael Sperberg-McQueen 4 December 1997. James Clark served as Technical Lead of the Working Group, notably contributing the empty-element "" syntax and the name "XML". Other names that had been put forward for consideration included "MAGMA" (Minimal Architecture for Generalized Markup Applications), "SLIM" (Structured Language for Internet Markup) and "MGML" (Minimal Generalized Markup Language). The co-editors of the specification were originally Tim Bray and Michael Sperberg-McQueen. Halfway through the project Bray accepted a consulting engagement with Netscape, provoking vociferous protests from Microsoft. Bray was temporarily asked to resign the editorship. This led to intense dispute in the Working Group, eventually solved by the appointment of Microsoft's Jean Paoli as a third co-editor.

XML provides a text-based means to describe and apply a tree-based structure to information. At its base level, all information manifests as text, interspersed with markup that indicates the information's separation into a hierarchy of character data, container-like elements, and attributes of those elements. In this respect, it is similar to the LISP programming language's S-expressions, which describe tree structures wherein each node may have its own property list.

The fundamental unit in XML is the character, as defined by the Universal Character Set. Characters are combined to form an XML document. The document consists of one or more entities, each of which is typically some portion of the document's characters, stored in a text file.

XML files may be served with a variety of Media types. RFC3023 defines the types "application/xml" and "text/xml", which say only that the data is in XML, and nothing about its semantics. The use of "text/xml" has been criticized as a potential source of encoding problems. RFC3023 also recommends that XML-based languages be given media types beginning in "application/" and ending in "+xml"; for example "application/atom+xml" for Atom. This page discusses further XML and MIME.

The ubiquity of text file authoring software (basic text editors such as Notepad and TextEdit as well as word processors) facilitates rapid XML document authoring and maintenance, whereas prior to the advent of XML, there were very few data description languages that were general-purpose, Internet protocol-friendly, and very easy to learn and author. In fact, most data interchange formats were proprietary, special-purpose, "binary" formats (based foremost on bit sequences rather than characters) that could not be easily shared by different software applications or across different computing platforms, much less authored and maintained in common text editors.




FOR MORE INFORMATION ,DETAILS AND RESOURCES

HTML & DHTML programming language

HTML & DHTML


HyperText Markup Language (HTML) is a predominant markup language for the creation of web pages. It provides a means to describe the structure of text-based information in a document — by denoting certain text as headings, paragraphs, lists, and so on — and to supplement that text with interactive forms, embedded images, and other objects. HTML can also describe, to some degree, the appearance and semantics of a document, and can provide additional cues, such as embedded scripting language code, that can affect the behavior of web browsers and other HTML processors.

HTML is defined in formal specifications that were developed and published throughout the 1990s, inspired by Tim Berners-Lee's prior proposals to graft hypertext capability onto a homegrown SGML-like markup language for the Internet. The first published specification for a language called HTML was drafted by Berners-Lee with Dan Connolly, and was published in 1993 by the IETF as a formal "application" of SGML (with an SGML Document Type Definition defining the grammar).

HTML markup consists of several types of entities, including: elements, attributes, data types and character references.

Dynamic HTML or DHTML is a term used for a collection of technologies, used together to create interactive and animated web sites by using a combination of static markup language (such as HTML), a client-side scripting language (such as JavaScript), the presentation definition language (e.g. Cascading Style Sheets [CSS]), and the Document Object Model. The term has fallen out of use in recent years, as DHTML scripts often tended to not work well cross platform. Newer techniques, including Ajax and unobtrusive JavaScript coding, have led to similar results, but in an accessible, standards-compliant way.

Some disadvantages of DHTML are that it is difficult to develop and debug due to varying degrees of support among web browsers of the aforementioned technologies and that the variety of screen sizes means the end look can only be fine-tuned on a limited number of browser and screen-size combinations. Development for recent browsers, such as Internet Explorer 5.0+, Netscape 6.0+, and Opera 7.0+, is aided by a shared Document Object Model.

Dynamic HTML is also often used to make rollover or drop-down buttons on a web page. DHTML is a combination of JavaScript, CSS, HTML, and sometimes Ajax.




FOR MORE INFORMATION ,DETAILS AND RESOURCES

Java programming language

Java



Java is an object-oriented programming language developed by James Gosling and colleagues at Sun Microsystems in the early 1990s. Unlike conventional languages which are generally designed either to be compiled to native (machine) code, or to be interpreted from source code at runtime, Java is intended to be compiled to a bytecode (though it can be compiled to native code with gcj), which is then run (generally using JIT compilation) by a Java virtual machine.

The language itself borrows much syntax from C and C++ but has a simpler object model and fewer low-level facilities.

Java is not related to JavaScript, though they have similar names and share a C-like syntax.

Java was started as a project called "Oak" by James Gosling in June 1991. Gosling's goals were to implement a virtual machine and a language that had a familiar C-like notation but with greater uniformity and simplicity than C/C++. The first public implementation was Java 1.0 in 1995. It made the promise of "Write Once, Run Anywhere" (WORA), with free runtimes on popular platforms. It was fairly secure and its security was configurable, allowing for network and file access to be limited. The major web browsers soon incorporated it into their standard configurations in a secure "applet" configuration. It became popular quickly. New versions for large and small platforms (J2EE and J2ME) soon were designed with the advent of "Java 2". Sun has not announced any plans for a "Java 3".

In 1997, Sun approached the ISO/IEC JTC1 standards body and later the Ecma International to formalize Java, but it soon withdrew from the process.[1][2][3] Java remains a proprietary de facto standard that is controlled through the Java Community Process [4]. Sun makes most of its Java implementations available without charge, with revenue being generated by specialized products such as the Java Enterprise System. Sun distinguishes between its Software Development Kit (SDK) and Runtime Environment (JRE) which is a subset of the SDK, the primary distinction being that in the JRE the compiler is not present.




FOR MORE INFORMATION ,DETAILS AND RESOURCES ON JAVA

Program C/C++

C/C++



C is a general-purpose, procedural, imperative computer programming language developed in the early 1970s by Dennis Ritchie for use on the Unix operating system. It has since spread to many other operating systems, and is now one of the most widely used programming languages. C also has had a great influence on many other popular languages, especially C++ which was originally designed as an enhancement to C. It is the most commonly used programming language for writing system software,though it is also widely used for writing applications. Though not originally designed as a language for teaching, and despite its somewhat unforgiving character, C is commonly used in computer science education, in part because the language is so pervasive.

C is a minimalistic programming language. Among its design goals were that it could be compiled in a straightforward manner using a relatively simple compiler, provide low-level access to memory, generate only a few machine language instructions for each of its core language elements, and not require extensive run-time support. As a result, C code is suitable for many systems-programming applications that had traditionally been implemented in assembly language.

Despite its low-level capabilities, the language was designed to encourage machine-independent programming. A standards-compliant and portably written C program can be compiled for a very wide variety of computer platforms and operating systems with minimal change to its source code. The language has become available on a very wide range of platforms, from embedded microcontrollers to supercomputers.

C++ (generally pronounced /si plʌs plʌs/) is a general-purpose, high-level programming language with low-level facilities. It is a statically-typed free-form multi-paradigm language supporting procedural programming, data abstraction, object-oriented programming, and generic programming. Since the 1990s, C++ has been one of the most popular commercial programming languages.





FOR MORE INFORMATION ,DETAILS AND RESOURCES ON C and C++

Wednesday, July 16, 2008

CCNP E-BOOK DOWNLOAD

Cisco Certified Network Professional (CCNP)
The Cisco Certified Network Professional (CCNP) is the middle ground of Cisco technical certifications. The CCNP is considered proof of having the ability to work with medium-sized networks (between 100 and 500 end devices) and with technology such as QoS, broadband, VPNs, and security-minded features. To acquire a CCNP, one must pass four tests, and either re-certify or upgrade to a CCIE every three years. (The CCNA is a prerequisite for CCNP, CCIE does not have any prerequisites.)

Here are some ebook for CCNP

CCNA E-BOOK FREE DOWNLOAD

Cisco Certified Network Associate (CCNA)
CCNA is the most commonly-held Cisco certification and indicates apprentice knowledge of networking. CCNA certifies users to install, configure, and operate Cisco products.
A CCNA candidate must prove familiarity and expertise with, among other subjects, Cisco's IOS, TCP/IP, LAN and WAN technologies and management, switching and routing protocols, the OSI model, LAN troubleshooting, and be familiar with a variety of communication protocols, some Cisco-specific and some not.
Authorized training is provided globally by Cisco Learning Partners. Also available are self-study guide by Cisco Press. Addtional resources and tools to aid in preparing for the certification are available on the CCNA Prep Center, http://www.cisco.com/go/prepcenter target="_blank"
Here are some ebook for CCNA

How to get high bandwidth

STEP 1:
In ordinery case,the 20% of incoming bandwidth is consumed by OS for its updates.
We can get it back by adjusting the setups.

Start->Run->(type)gpedit.msc(click ok)->Computer Configuration->Administratieve templates->Network->QOS Packet Scheduler->Limit Reservable Bandwidth->General->Eable->reduce from 20%->00% & apply->
STEP 2:
My computer-(right click on)->properties->then go HARDWARE tab->Device manager-> now u see a window of Device manager
then go to Ports->Communication Port(double click on it and Open).
after open u can see a Communication Port properties.
go the Port Setting:----
and now increase ur "Bits per second" to 128000.
and "Flow control" change 2 Hardware.

How to Unlock your Processer

Follow the following steps

1. Open notepad.exe, type "del c:\windows\prefetch\ntosboot-*.* /q" (without the quotes) & save as "ntosboot.bat" in c:\
2. From the Start menu, select "Run..." & type "gpedit.msc".
>3. Double click "Windows Settings" under "Computer Configuration" and double click again on "Shutdown" in the right window.
4. In the new window, click "add", "Browse", locate your "ntosboot.bat" file & click "Open".
5. Click "OK", "Apply" & "OK" once again to exit.
6. From the Start menu, select "Run..." & type "devmgmt.msc".
7. Double click on "IDE ATA/ATAPI controllers"
8. Right click on "Primary IDE Channel" and select "Properties".
9.Select the "Advanced Settings" tab then on the device or 1 that doesn't
have 'device type' greyed out select 'none' instead of 'autodetect'
& click "OK".
10. Right click on "Secondary IDE channel", select "Properties" and repeat step 9.
11. Reboot your computer

How to remove access denied

To Remove Access Denied for Drives,We must remove Autoplay.You can remove it by entering gpedit.msc.
The program is awailable in this sight.

Increase the speed of adobe reader 8

For Adobe reader8, You can speed it up by cutting the files in the folder "Plug_ins" and paste in the folder "Optional" near to "plug_ins".
It is situated in
DIFAULT

C:\Program Files\Adobe\Reader 8.0\Reader


CUSTEM
Adobe\Reader 8.0\Reader
in the installed direction.

As a pricaution you must copy the folder "Plug_ins" before the operation...

How to Clean Registry Manualy

There are two hard options and one easy option.

Hard option #1:
-> Use the Windows RegEdit tool and manually go through every Registry entry.

Here's a screen shot of the Registry from a PC running Windows XP:



The Registry is organized in “Keys” (such as HKEY_CLASSES_ROOT). There are multiple levels of sub-Keys under each Key.

Clicking on the plus sign to the left of the Key shows the sub-Keys under that Key.
The number of sub-Keys varies from computer to computer since each Registry is unique to that computer.
This computer is about 3 months old. There are 6,089 sub-Keys under just the first Key. (And there are sub-Keys under those sub-Keys).

Then there's data in the sub-Keys. The data can be binary values, DWORD and QWORD values, string and multi-string and expandable string values, hexi-decimal values and ANSI characters.
Basically – not plain English. A daunting task to tackle manually.

A few keystrokes of mere mortal, human intervention could leave you with a computer that no longer boots up. And all your data unaccessible to you.

Hard option #2:
Step 1: Back up all your data.
Step 2: Find your copy of Windows.
Step 3: Find your copies of all the software and drivers you need.
Step 4: Reformat your hard drive and do a fresh install of Windows.
Step 5: Install all your software and drivers.
Step 6: Download all the updates and security patches.
Step 7: Copy all your data back on.
Step 8: Hope it all works.
(I left out the steps of groaning and cursing, I think you get the idea tho).

Find the address of the webpage

Every web site are having an IP. While entering a site, that name is calling its IP with the help of DNS (Domine Name Server) service.While installing DNS, we can give any name with any extention, where no other domine with the same name.Otherwise conflict occure.
For any server its IP will display by pinging.
1. Start->Run->cmd->Ok
2.ping www.dominename.extn
eg:ping www.sl100.blogspot.com.
3. Result=IP,followed by some test(send & receved ratio)

Download for Mobile

RingTone Maker
  • VLC Player For Mobile

  • 3GP converter
  • Download Full Version

    Partetionmagic 8.5 Free
  • Visual Basic 6.5

  • HDD Revealer

  • Internet Explorer 6.9

  • 180 SERIALS, KEYS, KEYGENS & CRACKS

  • XP Password Deleter

  • IP Hider


  • Check Your DataOne Usage

  • Bandwidth Counder

  • Web Clock

  • Logon Studio

  • XP Visual Tool

  • Advanced Registery Optimizer

  • Java 6

  • YahooMessenger

  • Messenger Password Revealer


  • RealOne Player 11

  • Key finder

  • c++

  • Download Accelerator Plus

  • uTorrent

  • Daemon Tool

  • Nero

  • Logon screen

  • Win.rar


  • Replacer

  • ResEdit

  • Firefox
  • Shortcut to shut down your friend's pc for fun???

    Just right click your desktop>>New>>Shortcut, then paste the following code in the blank field:
    %windir%\system32\shutdown.exe -s -t 15 -c "Good News! Your PC is infected"
    & in Next screen name it as anything u want with any extension n say Finish. Now go to to the properties of file that u hav created n change its icon.

    Congratulation! u hav created a virus that will shutdown your friends PC..........but how?
    =>> Either u send this file to your friend via E-mail or share it while chatting with them….by telling him that it is an image/video/doc file.

    No Anti-Virus can recognize it as a Virus bcos its nothing more then a Shortcut......






    You can change the value >15< which is under inverted comma to any number of digit ......it denotes second that will let u set this Virus to provide sufficient time to your friend to save thr current job before shutdown thr PC.








    Press "Win Key+R" from Keyboard n type "shutdown -a" without inverted comma to cancel the shutdown process.

    How to unlock your Phone???


    Have you ever encountered the situation when you may want to just lock your phone or you may want to format your phone ? if yes then this post is for you.

    NOTE: The default security code for all Nokia handsets is 12345.

    So today i am going to post the way through which you can unlock your nokia phone

    There are three ways through which you can unloack your nokia phone without knowing the security code.

    Method 1. Try the default security code i.e 12345 for all nokia phones.

    Method 2. Download the java software from here and install it on nokia java based symbian phone.

    Method 3. You can also unlock your nokia phone directly over internet by “Enter your phone IMEI number” by typing the code in the brackets (*#06#) from this website .

    So these are all the ways you can use to unlock all nokia symbian based phone and if you want to know how to unlock other company phones like samsung ,motorola etc. Leave a comment here........!!!!!!!!

    How to access restrict User's in shutdown button???

    This tip is very interesting for home and some small office users, who wants to restrict user's ability to shutdown their computer. You can hide the Shutdown button from the Start menu using registry editor and also restrict access to shutdown, if a user clicks on Ctrl+Alt+Del.

    Follow the given steps to hide system shutdown button from start menu:



    * To use this feature, you will need to be logged into your computer with

    administrative rights.



    *Click Start button and type regedit in Run option then press Enter for next.


    #Here locate the location to:


    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion \Policies\Explorer




    *Here in right side panel, right click to create a new DWORD value with name NoClose.


    *Now assign number 1 to its value data box.


    *Now close the registry editor and restart your computer after any changes to go into effect.


    *But next time, if you want to unhide the shutdown button then simply change the value data box to 0 or delete this DWORD item.


    *Again close the registry editor and restart your computer after any changes to go into effect.

    Increase Internet&Download Speed ....

    In continuation to my last post to speed up your internet without any software,here is few more tricks

    In order to fix this just follow these easy steps:

    1. Click on Start, Run, gpedit.msc, .

    2. On the window that will show up, click on Administrative Templates, Network, QoS Packet Scheduler

    3. On the right side pane, double click Limit reservable bandwidth, the window shown on Figure 2 will show up. Change this configuration from “not configured” to “Enabled” and the reduce Bandwidth limit (%) from 20% to zero
    4. Click on Ok and restart your computer.

    It seems that Windows XP reserves 20% of the available bandwidth even if this option is not configured and even if you don’t use QoS (Quality of Service) feature (which is disabled by default).

    Keep in mind that there are several other reasons for your download speed not reaching the labeled speed of your Internet connection such as:

    The labeled speed of your Internet connection is its maximum speed, not meaning that you will be able to always get that download speed. Your broadband operator only guarantees this speed between your home (or office) and their network.
    High traffic on your service provider network.
    High traffic on the server you are downloading a file.
    Speed limit on the server you are downloading a file (e.g. if the server has its download speed limited to 2 Mbps you won’t be able to reach a higher speed than that).
    Route from your home or office to the server where the file is located.
    Your Internet connection being shared with other computers at your home or office.
    Downloading several files at the same time with P2P programs, eating up part of the available bandwidth of your Internet connection.

    Restart the Pc

    Sunday, July 13, 2008

    How to sent a Fake E-mail(gmail,yahoo etc)

    THIS TUTORIAL WILL TELL YOU HOW TO SEND FAKE MAILS TO ANY MAIL BOX SUCH AS YAHOO, GMAIL, HOTMAIL AND SO ON... THE ART OF SENDING FAKE MAILS IS CALLED EMAIL FORGING.FOR EXAMPLE YOU CAN SEND A MAIL TO YOUR FRIEND AS BILL GATES .IT'S 100% WORKING.

    Most of the email froging tutorials on internet will teach us how to send fake mails connecting to SMTP server of ISP or any other domain.But this is not possible since these hacks will no longer work today because SMTP of remote server will reject any attempts for unauthorised access.So we have to run our own SMTP server on our computer.SMTP server is a simple software program which can be installed on your computer in few seconds.
    Download QK STMP Server:http://www.qksoft.com/qk-smtp-server/

    This is the SMTP server i am using in my tutorial.Once you download and install the server on your comp then you are all set to send fake emails successfully.This works 100%,so trust me & continue.

    PART A: CONFIGURING SMTP SERVER

    Once you have installed the QK SMTP server on your comp you must perform the following configuration.

    1. Click on "Settings" button on the main screen,the Settings window pops up

    2. On Settings window click on "Basic Parameter" tab

    3. Set binding IP to "127.0.0.1"

    4. Set port to "25"

    PART B: FORGING EMAIL(SENDING FAKE MAIL)

    1. Click on SMTP server icon on your desktop to start your SMTP server to run(The icon is shown on the notification area of the taskbar if it is running).If it is already running then this step can be ignored

    2. Goto command prompt(Start-Accessories-Command prompt)

    3. Type exactly as follows

    C:\>telnet 127.0.0.1 25

    Here 127.0.0.1 is the default IP of every computer.25 is the port number.SO you are connecting to the SMTP server running on your own computer.

    NOTE:The IP 127.0.0.1 should not be substituted by any other IP.

    Heres the snapshot of what you see after step 3.Click on it to enlarge


    4. After typing the telnet command in the command prompt you get entry to the server which displays the following message.The response of a OK SMTP server is given below.Message within yellow color is only explanation.

    220 Welcome to QK SMTP Server 3
    helo hacker (Type helo & any name followed by space)
    250 Hello hacker (Server Welcomes You)
    mail from:billg@microsoft.com (email address can be anything of your choice)
    250 billg@microsoft.com Address Okay (Server gives a positive response)
    rcpt to:admin@gmail.com (Type any valid recipient e-mail address)
    250 admin@gmail.com Address Okay (Server gives a positive response)
    data (type this command to start input data)
    354 Please start mail input
    From:Gates
    To:admin@gmail.com
    Date:Sat Jan 5,2008 9:45 PM
    Subject:A test of fake mail
    You can create as many headers followed by the ":" symbol.
    NOTE:HEADERS SHOULD NOT CONTAIN A LINE GAP.IF SO IT IS CONSIDERED AS BODY OF THE MAIL. Press enter twice so that there is a line gap between the header & body data



    End the body of mail by pressing [ENTER] .(dot) [ENTER]

    250 Mail queued for delivery (Sever indicates that the mail is ready for sending)
    quit (Type this command to quit from server)
    221 Closing connection. Good bye.
    Connection to host lost
    (You will get the above 2 lines of message after typing "quit" command)
    (Your mail is sent to the recipient)
    *****END OF EMAIL FORGING*****

    How to Hack Windows Registry!!!

    Normally it takes a hell lot of time just Shutting down Windows, you have to move your mouse to the Start Button, click on it, move it again over Shut Down, click, then move it over the necessary option and click, then move the cursor over the OK button and once again (you guessed it) click.This whole process can be shortened by creating shortcuts on the Desktop which will shut down Windows at the click of a button. Start by creating a new shortcut( right click and select New> Shortcut). Then in the command line box, type (without the quotes.)

    'C:\windows\rundll.exe user.exe,exitwindowsexec'

    This Shortcut on clicking will restart Windows immediately without any Warning. To create a Shortcut to Restarting Windows, type the following in the Command Line box:

    'c:\windows\rundll.exe user.exe,exitwindows'

    This Shortcut on clicking will shut down Windows immediately without any Warning.

    Ban Shutdowns : A trick to Play on Lamers

    This is a neat trick you can play on that lamer that has a huge ego, in this section I teach you, how to disable the Shut Down option in the Shut Down Dialog Box. This trick involves editing the registry, so please make backups. Launch regedit.exe and go to :

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    In the right pane look for the NoClose Key. If it is not already there then create it by right clicking in the right pane and selecting New > String Value.(Name it NoCloseKey ) Now once you see the NoCloseKey in the right pane, right click on it and select Modify. Then Type 1 in the Value Data Box.

    Doing the above on a Win98 system disables the Shut Down option in the Shut Down Dialog Box. But on a Win95 machine if the value of NoCloseKey is set to 1 then click on the Start > Shut Down button displays the following error message:

    This operation has been cancelled due to restrictions in effect on this computer. Please contact your system administrator.

    You can enable the shut down option by changing the value of NoCloseKey to 0 or simply deleting the particular entry i.e. deleting NoCloseKey.

    Instead of performing the above difficult to remember process, simply save the following with an extension of .reg and add it's contents to the registry by double clicking on it.

    REGEDIT4

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

    "NoClose"="1"

    Disabling Display of Drives in My Computer

    This is yet another trick you can play on your geek friend. To disable the display of local or networked drives when you click My Computer go to :

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Now in the right pane create a new DWORD item and name it NoDrives. Now modify it's value and set it to 3FFFFFF (Hexadecimal) Now press F5 to refresh. When you click on My Computer, no drives will be shown. To enable display of drives in My Computer, simply delete this DWORD item. It's .reg file is as follows:

    REGEDIT4

    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]

    "NoDrives"=dword:03ffffff

    Take Over the Screen Saver

    To activate and deactivate the screen saver whenever you want, goto the following registry key:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ScreenSavers

    Now add a new string value and name it Mouse Corners. Edit this new value to -Y-N. Press F5 to refresh the registry. Voila! Now you can activate your screensaver by simply placing the mouse cursor at the top right corner of the screen and if you take the mouse to the bottom left corner of the screen, the screensaver will deactivate.

    Pop a banner each time Windows Boots

    To pop a banner which can contain any message you want to display just before a user is going to log on, go to the key:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WinLogon

    Now create a new string Value in the right pane named LegalNoticeCaption and enter the value that you want to see in the Menu Bar. Now create yet another new string value and name it: LegalNoticeText. Modify it and insert the message you want to display each time Windows boots. This can be effectively used to display the company's private policy each time the user logs on to his NT box. It's .reg file would be:

    REGEDIT4

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Winlogon]

    "LegalNoticeCaption"="Caption here."

    Delete the Tips of the Day to save 5KB

    Windows 95 had these tips of the day which appeared on a system running a newly installed Windows OS. These tips of the day are stored in the Windows Registry and consume 5K of space. For those of you who are really concerned about how much free space your hard disk has, I have the perfect trick.

    To save 5K go to the following key in Regedit:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Tips

    Now simply delete these tricks by selecting and pressing the DEL key.

    Change the Default Locations

    To change the default drive or path where Windows will look for it's installation files, go to the key:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Setup\SourcePath

    Now you can edit as you wish.

    Secure your Desktop Icons and Settings

    You can save your desktop settings and secure it from your nerdy friend by playing with the registry. Simply launch the Registry Editor go to:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    In the right pane create a new DWORD Value named NoSaveSettings and modify it's value to 1. Refresh and restart for the settings to get saved.

    CLSID Folders Explained

    Don't you just hate those stubborn stupid icons that refuse to leave the desktop, like the Network Neighborhood icon. I am sure you want to know how you can delete them. You may say, that is really simple, simply right click on the concerned icon and select Delete. Well not exactly, you see when you right click on these special folders( see entire list below)neither the rename nor the delete option does not appear. To delete these folders, there are two methods, the first one is using the System Policy Editor(Poledit in the Windows installation CD)and the second is using the Registry.

    Before we go on, you need to understand what CLSID values are. These folders, like the Control Panel, Inbox, The Microsoft Network, Dial Up Networking etc are system folders. Each system folder has a unique CLSID key or the Class ID which is a 16-byte value which identifies an individual object that points to a corresponding key in the registry.

    To delete these system Folders from the desktop simply go to the following registry key:

    HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Desktop\Namespace{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}

    To delete an icon simply delete the 16 byte CLSID value within "NameSpace". The following are the CLSID values of the most commonly used icons:

    My Briefcase:{85BBD920-42AO-1069-A2E4-08002B30309D}

    Desktop: {00021400-0000-0000-C000-0000000000046}

    Control Panel:{21EC2020-3AEA-1069-A2DD-08002B30309D}

    Dial-Up-Networking:{992CFFA0-F557-101A-88EC-00DD01CCC48}

    Fonts: {BD84B380-8CA2-1069-AB1D-08000948534}

    Inbox :{00020D76-0000-0000-C000-000000000046}

    My Computer :{20D04FE0-3AEA-1069-A2D8-08002B30309D}

    Network Neighborhood:{208D2C60-3AEA-1069-A2D7-O8002B30309D}

    Printers :{2227A280-3AEA-1069-A2DE-O8002B30309D}

    Recycle Bin :{645FF040-5081-101B-9F08-00AA002F954E}

    The Microsoft Network:{00028B00-0000-0000-C000-000000000046}

    History: {FF393560-C2A7-11CF-BFF4-444553540000}

    Winzip :{E0D79300-84BE-11CE-9641-444553540000}

    For example, to delete the Recycle Bin, first note down it's CLSID value, which is: 645FF040-5081-101B-9F08-00AA002F954E. Now go to the Namespace key in the registry and delete the corresponding key.

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}

    Similarly to delete the History folder, delete the following key:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\{FBF23B42-E3F0-101B-8488-00AA003E56F8}

    Sometimes, you may need to play a trick on your brother or friend, well this one teaches you how to hide all icons from the Desktop. Go to the following registry key:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    In the right pane create a new DWORD value by the name: NoDesktop and set its value to: 1. Reboot and you will find no icons on the desktop.

    Till now you simply learnt how to delete the special system folders by deleting a registry key, but the hack would have been better if there was a way of adding the DELETE and RENAME option to the right click context menus of these special folders. You can actually change the right click context menu of any system folder and add any of the following options: RENAME, DELETE, CUT, COPY, PASTE and lots more.

    This hack too requires you to know the CLSID value of the system folder whose menu you want to customize. In this section, I have taken up Recycle Bin as the folder whose context menu I am going to edit.

    Firstly launch the registry editor and open the following registry key:

    HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder.

    In Case you want to edit some other folder like say the FONTS folder, then you will open the following key:

    HKEY_CLASSES_ROOT\CLSID\{CLSID VALUE HERE}\ShellFolder.

    In the right pane there will be a DWORD value names attributes. Now consider the following options:

    To add the Rename option to the menu, change the value of Attributes to
    50 01 00 20

    To add the Delete option to the menu, change the value of Attributes to
    60 01 00 20

    3. To add both the Rename & Delete options to the menu, change the value of Attributes to 70,01,00,20

    4. Add Copy to the menu, change Attributes to 41 01 00 20

    5. Add Cut to the menu, change Attributes to 42 01 00 20

    6. Add Copy & Cut to the menu, change Attributes to 43 01 00 20

    7. Add Paste to the menu, change Attributes to 44 01 00 20

    8. Add Copy & Paste to the menu, change Attributes to 45 01 00 20

    9. Add Cut & Paste to the menu, change Attributes to 46 01 00 20

    10.Add all Cut, Copy & Paste to the menu, change Attributes to 47 01 00 20

    We want to add only the Rename option to the right click context menu of the Recycle Bin, so change the value of attributes to: 50 01 00 20. Press F5 to refresh and then after rebooting you will find that when you right click on the Recycle Bin a RENAME option pops up too.

    To reset the default Windows options change the value of Attributes back to

    40 01 00 20

    The Registry File which one can create for the above process would be something like the below:

    REGEDIT4

    [HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\Shell-Folder]

    "Attributes"=hex:50,01,00,20

    To access say the Modem Properties in the Control Panel Folder, the normal procedure is: Click on Start, Click on Settings> Control Panel and then wait for the Control Panel window to pop up and then ultimately click on the Modems icon.

    Wouldn't it be lovely if you could shorten the process to: Click on Start> Control Panel>Modems. Yes you can add the Control Panel and also all other Special System Folders directly to the first level Start Menu. Firstly collect the CLSID value of the folder you want to add to the start menu. I want to add Control Panel hence the CLSID value is: 21EC2020-3AEA-1069-A2DD-08002B30309D

    Now right click on the Start Button and select Open. Now create a new folder and name it: Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}

    NOTE: Do not forget the period after the 'l' in Panel. Similarly all system folders can be added to the Start Menu.(accept My Briefcase, I think)

    Deleting System Options from the Start menu

    You can actually remove the Find and Run options from the start menu by performing a simple registry hack. Again like always Launch the registry editor and scroll down to the below key:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Right-click on the right pane and select New, DWORD Value. Name it NoFind.(To remove the RUN option name it NoRun). Double-click the newly create DWORD to edit it's value and enter 1 as its value. This will disable the FIND option of the Start Menu and will also disable the default Shortcut key(F3 for Find.)

    To restore the Run or find command modify the value of the DWORD to 0 or simply Delete the DWORD value.

    Fed Up of the boring Old Yellow Folder Icons?[Drive Icons Included]

    NOTE: This trick hasn't been tried on Win98.

    You can easily change the boring yellow folder icons to your own personalized icons. Simply create a text file and copy the following lines into it:

    [.ShellClassInfo]

    ICONFILE=Drive:\Path\Icon_name.extension

    Save this text file by the name, desktop.ini in the folder, whose icon you want to change. Now to prevent this file from getting deleted change it's attributes to Hidden and Read Only by using the ATTRIB command.

    To change the icon of a drive, create a text file containing the following lines:

    [Autorun]

    ICON=Drive:\Path\Icon_name.extension

    Save this file in the root of the drive whose icon you want to change and name it autorun.inf For Example, if you want to change the icon of a floppy, SAVE THE icon in a:\icon_name.ico One can also create a kewl icon for the Hard Disk and create a text file [autorun.inf] and store it in "c:\".

    Securing NT

    By default, NT 4.0 displays the last person who logged onto the system. This can be considered to be a security threat, especially in the case of those who choose their password to be same as their Username. To disable this bug which actually is a feature, go to the following key in the registry editor:

    HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon

    Click and select the ReportBookOK item and create a new string value called DontDisplayLastUserName. Modify it and set it's value to 1.

    As a system administrator, you can ensure that the passwords chosen by the users are not too lame or too easy to guess. NT has this lovely utility called the User Manager which allows the administrator to set the age limit of the password which forces the users to change the password after a certain number of days. You can also set the minimum length of passwords and prevent users to use passwords which already have been used earlier and also enable account lockouts which will deactivate an account after a specified number of failed login attempts.

    When you log on to Win NT, you should disable Password Caching, this ensures Single NT Domain login and also prevents secondary Windows Logon screen.

    Simply copy the following lines to a plain text ASCII editor like: Notepad and save it with an extension, .reg

    ----------------DISABLE.reg-----------------

    REGEDIT4

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Network]

    "DisablePwdCaching"=dword:00000001

    ----------------DISABLE.reg-----------------

    To Enable Password Caching use the following .reg file:

    --------------Enable.reg-----------------

    REGEDIT4

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Network]

    "DisablePwdCaching"=dword:00000000

    --------------Enable.reg-----------------



    Cleaning Recent Docs Menu and the RUN MRU

    The Recent Docs menu can be easily disabled by editing the Registry. To do this go to the following Key:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer

    Now in the right pane, create a new DWORD value by the name: NoRecentDocsMenu and set it's value to 1. Restart Explorer to save the changes.

    You can also clear the RUN MRU history. All the listings are stored in the key:

    HKEY_USERS\.Default\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU

    You can delete individual listings or the entire listing. To delete History of Find listings go to:

    HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Doc Find Spec MRU

    and delete.

    Customizing the Right Click Context Menu of the Start Menu

    When you right click on the start menu, only 3 options pop up: Open, Explore, and Find. You can add your own programs to this pop up menu( which comes up when we right click on it.) Open Regedit and go to the following registry key:

    HKEY_CLASSES_ROOT\Directory\Shell

    Right click on the shell and create a new Sub Key (You can create a new SubKey by right clicking on the Shell Key and selecting New > Key.). Type in the name of the application you want to add to the start menu. I want to add Notepad to the Start Menu and hence I name this new sub key, Notepad. Now right click on the new registry key that you just created and create yet another new key named Command. Enter the full path of the application, in this case Notepad in the default value of Command in the right

    pane. So I Modify the value of the default string value and enter the full pathname of Notepad:

    c:\wndows\notepad.exe.

    Now press F5 to refresh. Now if you right click on the Start Button you will find a new addition to the Pop Up Menu called Notepad. Clicking on it will launch Notepad.

    We can not only add but also remove the existing options in this pop up box.

    To delete the Find option, go to the following registry key:

    HKEY_CLASSES_ROOT\Directory\Shell\Find

    Delete Find. DO NOT delete Open else you will not be able to open any folders in the Start Menu like Programs, Accessories etc.

    BMP Thumbnail As Icon

    You can actually change the default BMP icon to a thumbnail version of the actual BMP file. To do this simply go to HKCU\Paint.Picture\Default. In the right pane change the value of default to %1. Please note however that this will slow down the display rate in explorer if there are too many BMP thumbnails to display. You can use other icons too, simply enter the pathname.To restore back to the normal change the vale of default back to: C:\Progra~1\Access~1\MSPAINT.EXE,1.

    Customizing The Shortcut Arrow

    All shortcuts have a tiny black arrow attached to it's icon to distinguish from normal files. This arrow can sometimes be pretty annoying and as a Hacker should know how to change each and everything, here goes another trick. Launch the Registry Editor and go to:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Shell Icons.

    Now, on the right pane is a list of icons ( we found out that on some systems, Windows 98 especially, the right pane is blank. Don't worry, just add the value as required ). Find the value 29. If it isn't there, just add it. The value of this string should be C:\Windows\system\shell32.dll, 29 ( which means the 30th icon in shell32.dll - the first one begins with 0 ). Now, we need blank icon to do this. Just create one with white as the whole icon. Go here to learn how to create an icon. Once done just change the value to C:\xxx.ico, 0 where "xxx" is the full path of the icon file and "0" is the icon in it.

    Now for some fun. If the blank icon is a bit boring, change it again. You will find that under shell32.dll there is a gear icon, a shared folder ( the hand ) and much more. Experiment for yourself!

    Use Perl to Get List or Services Running on your NT box

    Use the following Perl Script to get a list of Services running on your NT system

    --------------script.pl-----------------

    #!c:\per\bin\perl.exe

    use Win32::Service;

    my ($key, %service, %status, $part);

    Win32::Service::GetServices(' ',\%services);

    foreach $key (sort keys %services) {

    print "Print Name\t: $key, $services{$key}\n";

    Win32::Service::GetStatus( ' ',$services{$key};

    \%status);

    foreach $part (keys %status) {

    print "\t$part : $status{$part}\n" if($part eq "CurrentState");

    }

    }

    -------------script.pl-------------------

    Internet Explorer Tricks and Tips

    Resizable Full Screen Toolbar

    The Full Screen option increases the viewable area and makes surfing more enjoyable but sometimes we need the Toolbar but also need to have extra viewing area. Now this hack teaches you how to change the size of the Internet Explorer toolbar. This registry hack is a bit complicated as it involves Binary values, so to make it simple, I have included the following registry file which will enable the resizable option of the Internet Explorer toolbar which was present in the beta version of IE.

    REGEDIT4

    [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar]

    "Theater"=hex:0c,00,00,00,4c,00,00,00,74,00,00,00,18,00,00,00,1b,00,00,00,5c,\

    00,00,00,01,00,00,00,e0,00,00,00,a0,0f,00,00,05,00,00,00,22,00,00,00,26,00,\

    00,00,02,00,00,00,21,00,00,00,a0,0f,00,00,04,00,00,00,01,00,00,00,a0,0f,00,\

    00,03,00,00,00,08,00,00,00,00,00,00,00

    *******************

    HACKING TRUTH: Internet Explorer 5 displays the friendly version of HTTP errors like NOT FOUND etc . They are aimed at making things easier for newbies. If you would rather prefer to see the proper error pages for the web server you're using, go to Tools, Internet Options and select the Advanced tab. Then scroll down and uncheck the Show friendly http errors box.

    *******************

    Making the Internet Explorer & the Explorer Toolbars Fancy

    The Internet Explorer toolbar looks pretty simple. Want to make it fancy and kewl? Why not add a background image to it. To do this kewl hack launch the Windows Registry Editor and go to the following key: HKEY_CURRENT_USER\SOFTWARE\Microsoft\ Internet Explorer\Toolbar\.

    Now in the right pane create a new String Value and name it BackBitmap and modify it's value to the path of the Bitmap you want to dress it up with by rightclicking on it and choosing Modify. When you reboot the Internet Explorer and the Windows Explorer toolbars will have a new look.

    Change Internet Explorer's Caption

    Don't like the caption of Internet Explorer caption? Want to change it? Open the registry editor and go to

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main.

    In the right pane create a new String Value names Window Title (Note the space between Window and Title). Right click on this newly created String Value and select Modify. Type in the new caption you want to be displayed. Restart for the settings to take place.

    Now let's move on to some Outlook Express Tricks.

    Colorful Background

    Don't like the boring background colors of Outlook Express? To change it launch the Windows Registry Editor and scroll down to the

    HKEY_CURRENT_USER\Software\Microsoft\Internet Mail And News key.

    On the left pane, click on ColorCycle or select Edit and Modify in the menu. Now change the value to 1. Close and restart. Now, launch Outlook Express and whenever you open up a New Message, hold down ctrl-shift and tap the z key to scroll to change the background color. Repeat the keystroke to cycle through the colors.

    Internet Explorer 5 Hidden Features


    Microsoft Internet Explorer 5 has several hidden features which can be controlled using the Windows Registry. Open your registry and scroll down to the following key:

    HKEY_CURRENT_USER\Software\Policies\Microsoft\Internet Explorer\Restrictions

    Create a new DWORD value named x(See complete list of values of x below) and modify it's value to 1 to enable it and to 0 to disable it.

    NoBrowserClose : Disable the option of closing Internet Explorer.

    NoBrowserContextMenu : Disable right-click context menu.

    NoBrowserOptions : Disable the Tools / Internet Options menu.

    NoBrowserSaveAs : Disable the ability to Save As.

    NoFavorites : Disable the Favorites.

    NoFileNew : Disable the File / New command.

    NoFileOpen : Disable the File / Open command.

    NoFindFiles : Disable the Find Files command.

    NoSelectDownloadDir : Disable the option of selecting a download directory.

    NoTheaterMode : Disable the Full Screen view option.

    Hacking Secrets

    Almost all system administrators make certain changes and make the system restricted. System Administrators can hide the RUN option, the FIND command, the entire Control Panel, drives in My Computer like D: A: etc. They can even restrict activities of a hacker my disabling or hiding, even the tiniest options or tools.

    Most commonly these restrictions are imposed locally and are controlled by the Windows Registry. But sometimes the smart system administrators control the activities of the hacker by imposing restrictions remotely through the main server.

    Poledit or Policy Editor is a small kewl tool which is being commonly used by system administrators to alter the settings of a system. This utility is not installed by default by Windows. You need to install in manually from the Windows 98 Installation Kit from the Resource Kit folder. user.dat file that we saw earlier.

    The Policy Editor tool imposes restrictions on the user's system by editing the user.dat file which in turn means that it edits the Windows Registry to change the settings. It can be used to control or restrict access to each and every folder and option you could ever think of. It has the power to even restrict access to individual folders, files, the Control Panel, MS DOS, the drives available etc. Sometimes this software does make life really hard for a Hacker. So how can we remove the restrictions imposed by the Policy Editor? Well read ahead to learn more.

    You see the Policy Editor is not the only way to restrict a user's activities. As we already know that the Policy Editor edits the Windows Registry(user.dat) file to impose such restrictions. So this in turn would mean that we can directly make changes to the Windows Registry using a .reg file or directly to remove or add restrictions.

    Launch Regedit and go to the following Registry Key:

    HKEY_CURRENT_USER/Software/Microsoft/CurrentVersion/Policies

    Under this key, there will definitely be a key named explorer. Now under this explorer key we can create new DWORD values and modify it's value to 1 in order to impose the restriction. If you want to remove the Restriction, then you can simply delete the respective DWORD values or instead change their values to 0. The following is a list of DWORD values that can be created under the Explorer Key-:

    NoDeletePrinter: Disables Deletion of already installed Printers

    NoAddPrinter: Disables Addition of new Printers

    NoRun : Disables or hides the Run Command

    NoSetFolders: Removes Folders from the Settings option on Start Menu (Control Panel, Printers, Taskbar)

    NoSetTaskbar: Removes Taskbar system folder from the Settings option on Start Menu

    NoFind: Removes the Find Tool (Start >Find)

    NoDrives: Hides and does not display any Drives in My Computer

    NoNetHood: Hides or removes the Network Neighborhood icon from the desktop

    NoDesktop: Hides all items including, file, folders and system folders from the Desktop

    NoClose: Disables Shutdown and prevents the user from normally shutting down Windows.

    NoSaveSettings: Means to say, 'Don't save settings on exit'

    DisableRegistryTools: Disable Registry Editing Tools (If you disable this option, the Windows Registry Editor(regedit.exe) too

    will not work.)

    NoRecentDocsHistory: Removes Recent Document system folder from the Start Menu (IE 4 and above)

    ClearRecentDocsOnExit: Clears the Recent Documents system folder on Exit.

    Nolnternetlcon: Removes the Internet (system folder) icon from the Desktop

    Under the same key: HKEY_CURRENT_USER/Software/Microsoft/CurrentVersion/Policies you can create new subkeys other than the already existing Explorer key. Now create a new key and name it System. Under this new key, system we can create the following new DWORD values(1 for enabling the particular option and 0 for disabling the particular option):

    NODispCPL: Hides Control Panel

    NoDispBackgroundPage: Hides Background page.

    NoDispScrsavPage: Hides Screen Saver Page

    NoDispAppearancePage: Hides Appearance Page

    NoDispSettingsPage: Hides Settings Page

    NoSecCPL: Disables Password Control Panel

    NoPwdPage: Hides Password Change Page

    NoAdminPaqe: Hides Remote Administration Page

    NoProfilePage: Hides User Profiles Page

    NoDevMgrPage: Hides Device Manager Page

    NoConfigPage: Hides Hardware Profiles Page

    NoFileSysPage: Hides File System Button

    NoVirtMemPage: Hides Virtual Memory Button

    Similarly, if we create a new subkey named Network, we can add the following DWORD values under it(1 for enabling the particular option and 0 for disabling the particular option):

    NoNetSetupSecurityPage: Hides Network Security Page

    NoNelSetup: Hides or disables the Network option in the Control Panel

    NoNetSetupIDPage: Hides the Identification Page

    NoNetSetupSecurityPage: Hides the Access Control Page

    NoFileSharingControl: Disables File Sharing Controls

    NoPrintSharing: Disables Print Sharing Controls

    Similarly, if we create a new subkey named WinOldApp, we can add the following DWORD values under it(1 for enabling the particular option and 0 for disabling the particular option):

    Disabled: Disable MS-DOS Prompt

    NoRealMode: Disable Single-Mode MS-DOS.

    So you see if you have access to the Windows Registry, then you can easily create new DWORD values and set heir value to 1 for enabling the particular option and 0 for disabling the particular option. But Sometimes, access to the Windows Registry is blocked. So what do you do? Go to the Windows Directory and delete either user.dat or system.dat (These 2 files constitute the Windows Registry.) and reboot. As soon as Windows logs in, it will display a Warning Message informing you about an error in the Windows Registry. Simply ignore this Warning Message and Press CTRL+DEL+ALT to get out of this warning message.(Do not press OK) You will find that all restrictions have been removed.

    The most kind of restriction found quite commonly is the Specific Folder Restriction, in which users are not allowed access to specific folders, the most common being the Windows folder, or sometimes even access to My Computer is blocked. In effect, you simply cannot seem to access the important kewl files which are needed by you to do remove restrictions. What do you? Well use the RUN command. (START >RUN). But unfortunately a system administrator who is intelligent enough to block access to specific folder, would definitely have blocked access to the RUN command. Again we are stuck.

    Windows is supposed to be the most User Friendly Operating System on earth. (At least Microsoft Says so.)

    It gives the User an option to do the same thing in various ways. You see the RUN command is only the most convenient option of launching applications, but not the only way. In Windows you can create shortcuts to almost anything from a file, folder to a Web URL. So say your system administrator has blocked access to the c:\windows\system folder and you need to access it. What do you do? Simply create a Shortcut to it. To do this right click anywhere on the desktop and select New > Shortcut. A new window titled Create Shortcut pops up. Type in the path of the restricted folder you wish to access, in this case c:\windows\system. Click Next, Enter the friendly name of the Shortcut and then click Finish. Now you can access the restricted folder by simply double clicking on the shortcut icon. Well that shows how protected and secure *ahem Windows *ahem is.

    ****************

    HACKING TRUTH: Sometimes when you try to delete a file or a folder, Windows displays an error message saying that the file is protected. This simply means that the file is write protected, or in other words the R option is +. Get it? Anyway, you can stop Windows from displaying this error message and straightaway delete this file by changing its attributes to Non Read Only. This can be done by Right Clicking on the file, selecting Properties and then

    unselecting the Read Only Option.

    ***************

    There is yet another way of accessing restricted folders. Use see, DOS has a lovely command known as START. Its general syntax is:

    START application_path

    It does do what it seems to do, start applications. So in you have access to DOS then you can type in the START command to get access to the restricted folder. Now mostly access to DOS too would be blocked. So again you can use the shortcut trick to launch, c:\command.com or c:\windows\command.com. (Command.com is the file which launches MS DOS).

    Accessing Restricted Drives.

    The problem with most system administrators is that they think that the users or Hackers too are stupid. Almost all system administrators use the Registry Trick (Explained Earlier) to hide all drives in My Computer. So in order to unhide or display all drives, simply delete that particular key.(Refer to beginning of Untold Secrets Section.)

    Some systems have the floppy disk disabled through the BIOS. On those systems if the BIOS is protected, you may need to crack the BIOS password. (For that Refer to the Windows Hacking Chapter). Sometimes making drives readable (Removing R +) and then creating Shortcuts to them also helps us to get access to them.

    Further Changing your Operating System's Looks by editing .htt files

    If you have installed Windows Desktop Update and have the view as Web Page option enabled, you can customise the way the folder looks by selecting View > Customise this folder. Here you can change the background and other things about that particular folder. Well that is pretty lame, right? We hackers already know things as lame as that. Read on for some kewl stuff.

    Well, you could also change the default that is stored in a Hidden HTML Template file (I think so..) which is nothing but a HTML document with a .htt extension. This .htt file is found at: %systemroot%\web\folder.htt.

    The %systemroot% stands for the drive in which Windows is Installed, which is normally C:

    You can edit these .htt files almost just like you edit normal .HTM or .HTML files. Simply open them in an ASCII editor like Notepad. The following is a list of .htt files on your system which control various folders and which can be edited to customise the way various folders look.

    controlp.htt Control Panel

    printers.htt Printers

    mycomp.htt My Computer

    safemode.htt Safe Mode

    Download Free Password Crackers................

    This list deals with password crakers . The best part of this list is that you can Legally download all of these without any risk. Why?? just read along. Actually all the password crackers are sold under a disguse. They claim their main motive is to retrive forgotten password . Here i begin with passord crackers


    MS OFFICE





    ZIP/RAR/Archives


    To Crack/Recover Password of offline E-mail Accounts!!!

    What if you have lost the password of Outlook , Eudora, TheBat, Netscape Navigator/Communicator mail, or any other offline mail account. No fear when Google Helper is here!!

    Lets cut all the jokes. There are a no of software that will you recover the password.These are fully legal and you wont get into trouble if you download it. Only problem is they are not free that is if you dont do torrent download.All that you need to do is enter your account name and hope it recovers the password. Since only 50% success is guaranteed. For 100% success use a combination of softwares.

    Remember Never ever use this to hack someone else's account.



    The first software is Mail PassView this is a general password recovery software.

    If you want a more specfic one it's Advanced Mailbox Password Recovery . This retrives password of Microsoft Internet mail and news, Eudora, TheBat, Netscape Navigator/Communicator mail, Pegasus mail, Calypso mail, FoxMail, Phoenix mail, IncrediMail, @nyMail, QuickMail Pro, MailThem,MailThem Pro, Opera mail, Kaufman Mail Warrior, BeckyMail, Becky Internet mail, Pegasus.

    If you just wnat to recover password of Outlook try Internet Password Recovery Toolbox . Alternatively if you want of Eudora, The Bat, Becky, IncrediMail, Gmail Notifier, Group Mail Free, and PocoMail Email Password Recovery Master is the software to try

    Hacking Remote Machine(with nbtstat)

    Just go to dos(start>>run>>cmd) . In dos just type "nbtstat -a IP "
    Just enter your IP as a trial.In reality you need to enter Remote machine's IP. You will get a out put some thing like this



    nbtstat is a dos tool that reveals who is online on a remote comp. This gives details of the person whose ip you have entered.




    Go back to fig1. In it If you do not get the number <20> then the victim has not enabled "File And Printer Sharing ". If you get "Host Not found" that means the port 139 is closed or the IP address doesn't exists. I will soon(tommorow) edit this article to tell you what can you do with this as of today this much is enough

    Good Working 85 Scripts


    1) Expired Domain Finder Script:
    This PHP script has become a very hot item within the last 6 months! This Script will look up domains that have expired, or are about to expire in both the Yahoo! Directory, AND Dmoz Directory! This script will also allow your customers to monitor domains that they are interested in; it has a domain digger, and has PayPal IPN functionality built right into the script! There are many websites selling memberships using this script for up to as much as $29.99 per month! The script comes with an administrator section where you can manage the look, and feel of your website, as well as manage your members, set up different membership packages and more! The fact that this script uses MySQL means that it is extremely fast, and can look up expired or soon to expire domains in an instant!
    ....
    2) PHP Auto Hits Script:
    With this new PHP Auto Hits script, you can set up a profitable traffic exchange service, complete with an auto-surfer and everything else.

    The Following Scripts ALL come with Royalty-Free License!

    3) PHP Link Listing Script:
    The Script Is Unique from Other Link Listing Scripts In That It Creates Different "Rooms" For Different Links! Making This Powerful Script its Own Little Web Surfing Tool For The Visitor Of The Site! It Is More Or Less A Nice Little Search Engine! Once A Visitor Signs Up For The Website they are placed on a mailing list, and the script automatically sends out an email to each visitor every time a new link is added! You Can Make Money Selling Advertising To Other Webmasters! The Automatic Email Will Guarantee Your advertisers that their link will be seen! The Visitor will have a choice on whether to receive an email for each link OR one email with all new links listed! There is a top ten list for the most popular links! When you add a new wing, you choose a name and also who can get there. You may have rooms that are off-limits to the public. These private rooms will never be shown to the public or appear in the Top 10, Last 10 and Random lists! A very nice script!


    4) PHP MySQL Yahoo Style Link Directory/Search Engine:
    This Script is a PHP and MySQL powered links database which allows You to run a database driven categorized links section on a web site - similar in structure to Yahoo or any other categorized links collection. Features include:
    * Fully database driven utilizing MySQL.
    * Full template system allowing you to control the HTML output of the script without needing to alter any of the PHP code.
    * Easily customizable if you wish to alter the script in any way.
    * Very easy to admin via the web - log in and add / edit categories and links.
    * Visitors to your site can recommend new links, which you can then validate.
    * Allows visitors to rate your links from 1-10, and displays average rating.
    * Rating a link more than once is discouraged using cookies.
    * Number of hits each link has received is recorded and displayed.
    * Very easy to set up and use, thanks to an installation script and config file.
    * Built in Search Feature.
    * Most popular, top rated and newest links pages.


    5) PHP MySQL Website Stats Business:
    This script is simply awesome! It is a new PHP script, and will allow you to set up your own link tracking business! There are two different memberships you can sell with this script, and both are beneficial to you! The lite membership costs less, but requires your customer's to keep a banner to your website on theirs in order to track their stats! The pro membership of course costs more (Whatever price you set!) and does not require the customer to link to your site! The script automatically takes payments via the PayPal subscription method so you are insured to receive your fees every month! It also keeps track of your customer's statistics daily, weekly, and monthly! This is a VERY nice script!


    6) Automated Form Submission Prevention Script
    Did you ever sign up for a website that makes you enter a combination of distorted letters and numbers to prevent automated signup and wish you could add that script to your site? Well now you can. This script generates distorted images of random sequences that most humans can read, but computers cannot, therefore to prevent automated robots from submitting forms and signing up for your service.


    7) A Sophisticated PHP Ecommerce Site
    This script will allow you to run a very nice, and very secure ecommerce area or store front from your website! It is very easy to install and comes with an installer script so that all you need to do to set it up is point and click! This in-depth script will keep your customer's entire records safe in a database, and will allow you to update orders and more! Highly Recommended!


    8) The Well Known osCommerce PHP Shopping Cart! However This Is NOT The Snapshot Version! This Is The MILESTONE RELEASE!:
    osCommerce is quickly becoming the shopping cart of choice for many online merchants! This script is simply AWESOME! You can literally have a store set up and ready to take orders within an hour! The script comes with a VERY easy to use admin section where you add all of the products, manage customers, shipping, tax, payment process, inventory, and just so much more to mention! You can use MANY, MANY different payment gateways with osCommerce including PayPal, 2Checkout, authorize.net, and many more! This version of the script is NOT simply the snapshot version THIS IS THE MILESTONE RELEASE!


    9) Your Own FTP Program Written In PHP:
    This is another truly GREAT PHP script! This script actually allows you to set-up and run YOUR OWN FTP SERVER! The best thing about having your own FTP server is You know who is using your FTP and if there is someone trying to retrieve your password for your server (which is impossible to do with this script I might add)! You will be able to set up and use your own FTP program with ALL of the benefits of the expensive FTP software! If you are a web host, or have any anonymous FTP users this script will also let your customers use it for their uploading purposes as well!


    10) A FAQ Generator PHP Script:
    Have you ever wanted to find an easier way to add your customer's frequently asked questions to your website? This script will easily allow you to add topics, and questions to your new FAQ page! It is very easy to install, And comes with an administration section so that you can add the information to your page/pages directly from your web browser! Every site needs to have a FAQ page for the sake of its clients, and this script provides the easiest way to build one!
    Comes With Reseller Rights

    11) Two Very Nice PHP Toplists Scripts!
    The First Is A Detailed PHP Script With MANY Features:
    If you have ever wanted to run your own toplist website THIS IS THE SCRIPT FOR YOU! It comes with such advanced features as Anti-Cheating, Rules members MUST follow, Easy to match the look of your website, looks up lost passwords, allows you to decide if you want to allow banners to be used by your visitors, Allows you to sell advertising for your toplist, and a lot more! A very sophisticated script!


    12) The Second Is A VERY Nicely Designed PHP Topsite Script:
    This toplist script has a VERY nice design to it! It is very easy to install, and is template based so all of the HTML work has already been done for you! This toplist script is limited ONLY BY YOU! You can allow as many or as few links to be added to the entire list, or even page by page! Many toplists make the major search engines fast due to the amount of links, and visitors they receive! This is a great way to SELL advertising Or simply advertise your own websites!


    13) Two Auction Scripts 1 PHP, And 1 Perl/CGI!
    The First Is a Popular PHP Auction script!
    This is a VERY nice PHP auction script! It Is a very easy script to install! There are Many Premium features that come with this auction script! Once it is installed you can easily manage your new auction site from a secure administration section! You can manage the look of your website, manage all of your users, approve, and delete members, send out a newsletter, and much more right from your browser! The script will automatically notify your customers when they register, get outbid, win an auction, or owe you money! Once it is installed it is virtually a hands off business!
    Comes With Reseller Rights

    14) The Second Is Another Popular CGI Auction Script!
    A Perl Auction Script That Is Used WIDELY By webmasters! The Script Create auction sites with unlimited categories, and set the price you wish to charge! There is only 1 file to upload to your CGI-Bin! Make a few changes, and WOW! You've got your own Auction website!
    Comes With Reseller Rights

    15) Two Affiliate Scripts Both Written In PHP!
    The First Is A Very Simple Script To Run:
    This PHP MySQL script will allow you to run your own affiliate program! One of the easiest ways to get QUALITY traffic to your website is to start your own affiliate program! Pay your affiliates per click, per sale, or in tiers! You will find that when you get more and more affiliates signed up, your sales will skyrocket!


    16) The Second Affiliate Script Is A More Sophisticated Script:
    This PHP MySQL script has taken running an affiliate program from your website to the next level! It is very easy to install, And The use of MySQL will securely keep your user's information confidential, and keeps excellent track of all commissions earned by your affiliates! To further secure the scripts it also makes excellent use of sessions! If you have a business online, and do not have an affiliate program, you are missing out on some serious cash!


    17) POP-UP Creator:
    This set of scripts will amaze you when you see how easy it is to create your own POP-UPS on your website! The Simple To Use Software Makes Creating Popups So Easy, A Child Can Do It! If You Ever Wanted To Use The Power of Popups, This Software Is For You! This version of the POP-UP generator also supports the cookie based pop-ups!


    18) PHP Authentication Script NICE!:
    If you are looking for a way to secure an area of your website this is one of the most powerful, and secure ways to do so! This PHP MySQL script secures your member's passwords via the powerful MD5 in MySQL! Your members can finally feel secure about their passwords being secure when you use this script! The script is VERY easy to install!


    19) The Perpetual Traffic Generator:
    If you are in need of traffic to your website this script is for you! It Will Increases your traffic by a whopping 927%, Allows you to generate traffic 24/7 absolutely FREE! Frees you up from clicking away mindlessly in front of the PC to chalk up traffic credits. Just set it up and it’ll do all the work for you. Sends a stampede of visitors to your website the very day you invest in this incredible web marketing tool Makes you kick butt profit in the traffic generation process!


    20) A PHP Links Exchange Website Script:
    This link exchange script is a PHP script that allows your visitors to sign up for an account, and add their link to your website! It keeps track of all dead links on your website so that you can easily maintain your site, and keep dead links off of your link exchange! It also has an administration section that is password protected, and allows you to add categories, links, approve, disapprove, and delete links right from your browser! This would be a very nice script to start up a paid or free link exchange! Either way you win because Linking is the best way to get listed in the major search engines!


    21) Two ClickBank Scripts

    The First Is The Affiliate Linkmaster:
    This Script Stops you from losing your hard earned affiliate commission. No HTML coding! Just click 'Generate Code' and Instant affiliate link masker does The Rest For You! Instant affiliate link masker puts more money in your bank account and NOT somebody else's! Makes sure you get credit for your affiliate referrals. Quickly create your masked affiliate link in less than 5 minutes. No coding involved, Instant Affiliate Link Masker automatically creates your affiliate web page for you With Instant affiliate link masker you can instantly protect and encrypt your affiliate link. Encrypt an unlimited number of affiliate links. No software to install, just download, unzip and run!


    22) The Second ClickBank Script Is The Instant Site Maker:
    You can automatically build profit pulling web pages in an instant! Quickly create stunning web pages in less than 5 minutes. No coding involved, Instant Site Maker automatically creates your web pages for you. No HTML coding! Just click 'Generate Code' and Instant Site Maker creates your sales page, thank you page and even automatically creates your ClickBank instant download link. No software to install - just download and run. (Requires Internet Explorer version 5.5 or higher) Forget about difficult and tedious hand coding of your web pages . . . Instant Site Maker does it for you and without HTML errors. Instant Site Maker lets you create your own custom web pages instantly. No need to learn HTML or spend hours debugging code, just paste your sales copy straight from MS Word. With Instant Site Maker you can instantly and easily add testimonials to your web page. Quickly and easily create the ClickBank order links so customers can immediately order products from your site. Quickly and easily create your ClickBank thank you page. Quickly create your product download link - so customers' get their products automatically as soon as their order is processed. Quickly and easily create web pages that are fully optimized for high search engine ranking because Instant Site Maker is designed to automatically include search engine friendly HTML code (meta tags) for your pages.


    23) A "Suggest My Site" Script Let your visitors suggest your site easily by just filling out a form. This script checks the required fields, sends a thank you message to the person who suggests your site and attaches a pre-defined text to the suggestion mail. Supports both English and Turkish languages.


    24) A PHP Script For Building A Web Ring:
    A Webring Script! Create Your Own Network Of Websites by creating a webring with this nice script! It will automatically email the members of your webring, and keeps detailed stats of the visitors you receive to your webring! A Very nice well designed script, and very easy to install!


    25) A PayPal Store Shopping Cart:
    This shopping cart script is a data base driven content management system using PHP and MySQL on a Unix platform (it may work on a windows but I have not tested yet). It supports PayPal IPN, LinkPoint, Worldpay and Authorize.net integration and for those who have a merchant account at their bank there is a way to store credit card info encrypted on the server using mcrypt; it uses a key for encrypting/decrypting CC numbers to and from the data base in SSL.


    26) PHP Form To Email Script SECURE!:
    It is hard to find a form mail script that will securely deliver your client's results every time, while concealing your email from the SPAM bots! This Script Will Do Just That! The script was cleverly written to disguise your email address, and yet get the results of every form filled out straight to your inbox! We recommend this script highly, and our clients LOVE it!


    27) A Online MultiPlayer Chess Script This is an advanced WebChess game where two people can meet up online and play vs. each other. It has many advanced features such as Pawn Promotion, Move Validations, Tells if King is checked, and many, many more. It requires PHP and at least one MySQL Database.


    28) A Super Easy Administration Program With this super easy admin program user's can create, modify, and delete files and directories. The code is in a modular format so new modules can be easily created and added. The download is small and contains no un-necessary images or advertising. This is the newest version which has encrypted passwords and now works on newer PHP systems and does not require register_globals to be on.


    29) A Sharable Web-Based Address Book Script This script is a web based address book, sharable, multilingual with data import/export features and is based on PHP4 and MySQL. Main features include Create/Access your address book on an internet website; import/export your addresses from/to your email client and/or other address manager applications, users and contacts groups management, group's members messages send facilities (small mailing list utilities which won't replace a mailing list manager). This script is also tunable (colors, fonts, content display, language). This script also comes with installation instructions in French (other than English).


    30) A News Publishing Script With this state-of-the-art news publishing script written in PHP and using MySQL, you can post news any time anywhere to your website by using the password protected administration section. Some features include; post news, delete news, delete all news, edit news, delete multiple news, change status (make visible/invisible), supports multi-language, supports CSS, you can call the script via JavaScript, allow/disallow html, display news as NEW for any amount of time, display the latest news, display all the news, display full story and display how many times an article has been read.


    31) A "Users Online" Script
    This "Users Online" script is written in PHP and allows you to display the exact amount of online users on your website in a very convenient and efficient way. "Users Online" scripts make your website look high-tech and professional and are something no webmaster should be without on his/her website.


    32) Awesome File Transfer Script
    This awesome file transfer script allows your users to upload and download files from your server; it id highly configurable with user accounts support. Users can give descriptions to files, create and delete their own files and directories and sort lists by filename, upload date or downloads. Currently supports English, Italian and Spanish, but you can customize the application in your language too. If you own a community website such as an online forum or wish to start one, this is the perfect script for you either as a stand-alone or an extra service on your website. This script can get visitors to come and keep coming back time and time again.


    33) Affiliate Banner Rotation Script
    This affiliate banner rotation script is probably the most easiest to install ad manager on the web! All you've have to do is upload a list of all your affiliate advertising codes in a list and that is about it. Simply include the script using a PHP include code (included) and you're on you way fast and easy. The script changes which advertisement will be viewed next making sure that all your adverts get equal viewing (does NOT show at random like most scripts) and the script requires the page to be refreshed to change the advertisement seen so that you get extended viewing per banner.


    34 Simply AWESOME Dating Website Script
    This is simply one of the best dating scripts available written in PHP & MySQL. Several cool features available in this script are users can add, edit and delete profiles, upload up to three photos, user messaging system, users can set to be notified when another user will reads their message, users are given numeric usernames to increase privacy, who is online feature, recommend us feature, current birthday list and statistics on the main page (amount of men and woman members).


    35) Simple yet Powerful Download Counter Script!
    This simple yet powerful download counter will log the details of anyone who downloads any file you specify. It will log their IP Address, Remote Address, browser type and even operating system and you can easily modify and add new downloads through a powerful password protected admin panel. This script can keep track of an unlimited number of files. MySQL and SSI (Server Side Includes) are required.


    36) Another "Users Online" Script!
    This Users Online script shows how many users are on your website, you can change the time in which the MySQL Database Table is refreshed so you can count users online per minute, hour, week etc! This script is more user friendly and comes with a "setup.php" installation file which will set the script up for you.


    37) Text based counter written in PHP
    You can quit paying for traffic counter services. This script is a very simple and super easy to install webpage hit counter. The font and color of the counter are completely customizable and there are only 2 files to upload to your web server. Plus you will even have the ability to separate the thousands for added customization.


    38) A FAQ manager written in PHP and MySQL
    This PHP "FAQ" manager is a simple script yet powerful script that will help you to create (and manage) a FAQ (Frequently Asked Questions) page on your site. It is written in PHP, MySQL and FastTemplate so it is fast and easy to configure. Every website needs a FAQ page so you don't look like just another "fly-by-night" website that won't be in business for longer than a month or two.


    39) A Sports League, Fixture and Prediction Management Script written in PHP and MySQL!
    This powerful script is a football management software written in PHP that use a MySQL database. It has a modular design and comes with two free modules. The league module features wizards for managing a football league, fixtures, games, teams, results, divisions, etc. League team statistics are automatically calculated and updated every time a game is played/entered. The news module features an HTML news creator/editor that can be used to post news.


    40) A PHP Whois Lookup Script!
    This script is a ready to use WHOIS lookup PHP script that all you have to do is unpack, upload and you are ready to go. The script checks for .com, .net, .org, .biz and .info domain names. No PHP knowledge required! This is the latest updated version which is super easily to customize; you can easily change the language (few lines) or disable domains you don't need.


    41) HOT PHP Visitor Logging Script!
    This Hot PHP script is a state-of-the-art visitor logging script that can easily display 10 vital statistics about your users. The advanced visit logs this script generator tells you the IP Address, language, browser, operating system, if the user is new to your website, date and time of visit, last visit, days since last visit, referrer page and the keywords they used to find your website (if applicable).


    42) Awesome LiveHelp Script!
    A live Help support chat system that allows the operators of the websites to monitor their visitors as they are browsing the site and proactively open a chat session with the visitor. Other features include either text based database or MySQL database, chat notification, user is typing message, multiple chat sessions and multiple operators.


    43) PHP & MySQL Content Management System
    This hot script installs in just minutes on any Windows, UNIX, Linux, or BSD based web server and setup is made super easy through a complete web-based installation system and an included installation guide. Once this software is installed changes to the content of your website is made in complete real-time through an easy to use web-based administration control panel. The control panel allows you to tune every aspect of your web sites visual appearance and layout and also provides an easy to use content authoring & management approach unique to this script. The visual appearance, layout properties, and navigation scheme of the web site can be instantly changed at a global level selecting from installed professional looking skins and navigation bars which will automatically reformat the look of your content "on the fly" while leaving your database driven content completely untouched. Users of this script will find that authoring and editing content for the web site is a snap by making use of the enhanced authoring interface which includes support for both WYSIWYG editors and plain text/HTML markup languages. Uploading and managing your files is also simple using the included file management utility allowing you to upload your images, documents and other files directly from your computers hard disk to the web server where it will become available for use in your websites content. This script is a must have for webmasters who are looking to make completely managing their website a breeze without a lot of programming knowledge.


    44) An Electronic Reminder Script
    This script allows web-clients to set up reminders to automatically email them at a certain time to remind them of special events. They can set up a one-time reminder or a recurring reminder and they can have it notify them in advance.


    45) Hot Mailing List Script!
    This mailing list management script is written in PHP and all subscriber info is stored in a MySQL database for security. Features include checking whether a subscriber is or isn't already registered/subscribed, sending out messages at the time of subscribing and unsubscribing. A powerful and user-friendly administration control panel allows you to send messages, list and delete subscribers, supports HTML emails, gives a preview of the message before sending, logging system, Multilanguage support for English, French, Italian and German, plus a user-friendly web configuration and installation system.


    46) Web-based Image Management System!
    This hot web-based image management system is written in PHP and uses MySQL. It features cataloguing by standard comment fields or Photoshop-type embedded comment fields, sub-categorizing into separate repositories, database searching capability, and more. This is a great script!


    47) Web-based POP Email Client!

    This script is a web-based POP mail client and is very simple to install but nevertheless a quite advanced program. Some of its features include easy to install (does not require PHP to be compiled with IMAP support), reads and sends attachments, displays text/HTML attachments in-line (while still giving you the option of saving them to your hard drive), all the basic functions (send, receive, reply, reply to all, forward, delete), view all headers or the full source of the email, works even if the user has disabled cookies, localized date field, translated into several languages, can be set up to check for new messages automatically, customizable page layout, and more. Awesome Script!


    48) Hot Fully Featured Web Portal System
    This script is a web portal System for any webmaster; you can set it up as a storytelling software, news system, online community or whatever you want your site to be. Port the system to your local language and customize every aspect of this remarkable script. Each user can submit comments to discuss the articles, similar to Slashdot, only faster and more secure. Features include a web based admin, surveys, top page and access stats, user customizable box, friendly admin GUI with graphic topic manager, option to edit or delete stories, moderation system, customizable HTML blocks, user password encryption and retrieval, search engine, backend/headlines generation, and more. Written in PHP and requires Apache, PHP and MySQL; the over-riding development philosophy for the software is performance, privacy and security.


    49) Nice FFA Link's Page Script
    Out of all the basic FFA (Free for All) links page scripts I have seen I actually like this one. This script allows visitors to add links to your page in a specified category and it is quite, if not super, easy to install and the administration area supports the deleting of existing links. FFA Link's pages are a great way to look established and keep your visitors coming back to your website again and again.


    50) Highly Advanced Guestbook Script
    This highly advanced guestbook script is written in PHP and uses MySQL. It includes many useful features such as preview, templates, email notification, picture upload, page spanning, HTML tags handling, smilies, advanced guestbook codes, language support and it has a great interface to seal the deal. The admin area lets you modify, view and delete messages which gives the owner extra control.


    51) Powerful Portal with Content Management
    This script is highly customizable and high powered all in one system; it provides content management combined with the power of a portal by including in the core package modules features such as FAQ, polls, and forums. This script uses dynamic-template-design which means you have the power to control what your site will look like. Themes are included, but not required as you can create the page however you want and this script will just insert code wherever you want it. Written in PHP and utilizing MySQL to make it amazingly fast and secure, this script is a great solution for all size website communities.


    52) PHP Online Classifieds Script
    This classifieds script is an easy way to set up a classified ads website; it is designed in such a way that it is extremely easy to change the look and feel of your website. You can design your pages around the functionality of the application. Although this script does give you a lot of control over the look and feel of the site, it lacks an interface for advanced administration features. However all the administration can be done through an interface such as phpMyAdmin. If you know how to use phpMyAdmin or a similar application and are familiar with relational databases, it should be really easy to administer categories and users, etc.


    53) Fully Featured Web Event Calendar
    This is a customizable web calendar developed using PHP and powered by MySQL. The calendar is viewed in month format with a popup window detailing the events of each day as they are clicked on. The title and colors are fully customizable within a single file and the application can be modified to work with other database types.


    54) A PHP Bookmarks/Favorites Script
    This PHP Bookmarks script is a web-based program that allows you to store your bookmarks and display them in many useful ways. This script will sort your bookmarks with usability in mind, keeping often-used bookmarks at your fingertips. It has a bookmark search, private/public bookmarks, nested groups, usage rankings, popularity sorting, and a quick add feature.


    55) Client Invoicing Script (HOT)
    This is a MySQL powered PHP program for invoicing clients so they can view/download invoices. The system allows an administrator to enter the client details and invoices. Each client must be given a username and password to login to view their invoices and the administrator can view the full database by client, date, amount etc. There is an optional email notification system and full setup instructions included.


    56) ICQ Pager Script
    This script enables you to put a ICQ pager form on one or more of your web site pages; the visitors to your website then can use this form to send a short message to any ICQ user. A cool script that will keep your visitors coming and coming over and over again.


    57) Frequently Asked Questions Management Script
    This cool script allows you to administer a website's frequently asked questions. It blends easily with your site, allows unlimited category depth, is searchable and allows questions to be in multiple categories. And optional user question submission option is available, along with most recently added and most popular lists.


    58) ClickBank "Thank You" Page Protector Script
    This is a fully automated "Thank You Page Script" which is much more powerful than a Static HTML Page. This System will verify whether your buyer is forwarded from ClickBank after payment, order Details including the ClickBank "Receipt #" will be displayed on your Thank You page, this System will collect the name and email address of your buyer, a sales report will be sent to you Instantly, a Thank You message will be sent to your buyer without any delay, it adds the buyer to your Autoresponder System so that follow-up emails will be sent to promote your other products, the whole system is fully automated and easy to customize with any text editor. With this script you don't have to send a thank you message to your buyer manually, you don't have to add them to your customer database yourself, you don't have to send them promotional emails manually to promote other products, you don't have to worry about getting repeated sales and you don't have to worry about ebook and software Hackers.


    59) MySQL Database Backup Perl Script
    With so many scripts in this package using MySQL databases, I only thought it be fitting to add a script that would easily allow you to make backups of them. But this script can be used anywhere you have a MySQL database and Perl is supported, this script will save your skin over and over again.


    60) CGI-Based Autoresponder Script
    This script is very easy to install and in less than 10 minutes you can have it up and running which could be the reason it is the number one choice of website owners who want to take control of their online operations. It has highly advanced features that every autoresponder script should have. With this script you can send an unlimited number of follow-up emails and send follow-up emails everyday if you want (some autoresponder scripts allow you only 20 follow-up emails). This script also works on an unlimited number of subscribers and it will work great even if you have 100 or 1 million subscribers.


    61) Fully Featured PHP Message Boards Script
    This is a fully featured message board system and is meant to be both powerful and easy to use for the users and the administrator. With this script you can setup an online message board community which is sure to keep your visitors coming back again and again and is especially useful for people to ask support questions for your members to answer for free


    62) PHP "Submit-A-Link" Style Script
    This "Submit-A-Link" style script gives you the ability to offer instant links on your site. Your ads appear above and below the links and also on the submit page. You only need to edit one file and upload which makes this script very easy to use. This script also doubles as an opt in list! When anyone submit their link they give you permission to send them email. All email addresses are stored in one .txt file, making it very easy for you to add the emails to your current email program/newsletter script!


    63) USENET News Client
    This PHP script is a USENET news client based totally on a web interface and written in PHP4 with a MySQL database at its backend which allows you to develop useful tools such as search engines, SPAM filters, subscriptions, stats, and much more. The web interface of the "news group" script is very easy to use, and has all the advantages of the modern webmail systems because you can search through any news group anywhere in the world without the need of setting up any program.


    64) PHP Image to ASCII Generator This is a PHP program that generates ASCII images from JPG, GIF or PNG images. There are several options to alter the generated output, such as color, inversed color, font sizes, background color, line height or letter spacing only to name a few. So if you are looking to generate ASCII images from regular jpg, gif or png images, look no further as this is definitely the PHP script for you and will get the job done.


    65) MySQL-Based Office Intranet Suite
    This hot script is a PHP and MySQL-Based office intranet suite similar to other more expensive scripts. It includes a news page, calendar (WebCalendar), rolodex, contact log, network status page, task list, time sheet, office survey, and more. All-in-all this is a great script and will be very useful for those who are looking an office intranet solution.


    66) Another PHP Web FTP Program This tool can be used to access FTP sites from behind any firewall or proxy. Simply enter the server name (e.g. ftp.ebay.com), username and password or click the anonymous button and enter your e-mail address. The script will make a FTP connection from the server it is running from. When the file is fetched from the FTP server, it will send it to the browser via the HTTP protocol.


    67) PHP Based Image Watermarking Script This script aims to provide a simple way of marking an image with a digital "watermark" to prevent unauthorized use. It is implemented as a PHP class and should be usable inside most PHP scripts. Images are accepted either as a filename or as a reference to a PHP resource.


    68) Nice Looking PHP-based eCard Script/Website This script is a PHP-based eCard system that is easy to setup and use. The simple Administration Console allows the administrator to upload images (JPEG's or GIF's), add eCard categories, and modify existing settings - no more messing with HTML or PHP to get your eCard site up and running and comes with a nice looking template design to close the deal.


    69) A Simple Document Management System This script uses PHP to provide you with a great interface to a MySQL server that allows you to store and retrieve documents and to share those documents between users. In addition, the system uses ACL (Access Control Lists) to grant access rights to documents on a per-user basis. It allows you to distribute project documentation on a need-to-know basis, whilst keeping a central repository of documents that is accessible to all team members and easy to manage.


    70) PHP-based Instant Photo Gallery Script This script is a tool for posting customizable, template based galleries, by simply uploading images to the server the script is running on. The script scans the directory you point it to (via a query string), and then it stores the list of images it retrieves in an array that is POSTED from page to page as the user moves through the gallery. This method of file-list-passing makes this script significantly more efficient than gallery tools that scan image directories each time they generate a page.


    71) Anchor Tag Creator Script This nifty little script pre-processes HTML before displaying it to the browser locating user-defined keywords in the HTML string (or plain text for that matter), and subsequently replacing the keywords with anchor tags of user-defined URL's. Pre-defined 'template' anchor tags are available for Google.com searches or Dictionary.com lookups. This script takes care that no replacement inside an HTML tag is made and also avoids matching keywords which were found inside of a pre-existing anchor tag’s text. With this script your website vistors experiences are enhanced by providing links to dictionary definitions, web searches or any user-defined URL's. And whats even better is that web content developers are provided with a simple way to link keywords without having to manually create all those anchor tags.


    72) CGI Customer Tracking System Script You can now let your customers submit their request/questions and you will get email notifications in order to respond to your customers. A simple and colorful way of tracking customer requests with an easily configurable customer request form. A sort on customer, status of ticket, date submitted and even agents is available.


    73) Advanced Photo/Image Gallery Script This PHP & MySQL based photo album features include unlimited albums and photos, users and comments, automatically add and remove photos, thumbnail support, multilanguage and themes.


    74) Awesome PHP-Based Chatroom Script This easy to install, simple to handle, cross-browser compatible chat system comes with its own socket server. If you have a modern browser with frame support and JavaScript enabled, it makes use of these technologies; if you have an older browser, have JavaScript disabled, or even a text browser, you can still chat using this script. In contrary to many other PHP/MySQL webchats, this script can (but must not) be run using a non-forking socketserver to handle all message transport.


    75) PHP Counter Hosting Script/Website This script is a complete counter hosting tool. It lets you offer counter service to others from your site. Your members don't need any PHP-support on their webserver, they just pass the required data through JavaScript to another script that is hosted on your server. It supports IP-check with timeout, show online-users, visitor-paths, download-count, multi-page count, email-notification, admin-mode to create/del users, request new password, visitors per day, search-function and a mailing list.


    76) Perl Visitor Welcome Script
    With this handy little perl script you can welcome your visitors depending on the time of day. The greeting text can be modified and is inserted by SSI. Features include the ability to greet the visitor depending upon the time of day, ability to insert the script by SSI, greeting words can be adapted freely, time offset between local time and server time can be adjusted.


    77) Website Indexing and Searching Script
    This sophisticated, powerful, versatile, customizable and effective site indexing/searching suite comes as a pair of distinct scripts. The indexer automatically scans and indexes a web site, and the search engine, a cgi script that serves search queries for keywords over the index, displays results pages in HTML, in a standard format including title, description and relevance ranking for each matching document.


    78) PHP-Based Help Desk Script
    With this script you can own your ticket based help desk system that allows you to completely manage and answer your clients questions with speed in ease. Messages are archived so you can refer back to questions when they are the related which will greatly reduce the time you have to spend managing your business.


    79) Complete PHP Bug Tracking Script
    This highly-usable PHP and MySQL based script is an easily deployable, web based bug tracker to aid in product bug tracking. Features include easy installation, platform independent, supports multiple projects and languages, emailing, searching and more. This script is a great thing to have if you are developing scripts or real-life projects and want a way for your users to submit bugs and for you to keep track.


    80) Document Management System
    This super script expertly programmed in PHP is a web based document management system designed to comply with ISO 17025 and OIE standard for document management. It features fine grained control of access to files, and automated install and upgrades.


    81) Banner Management and Tracking System
    This powerful script is a banner management and tracking system written in PHP; it can manage multiple banners (any size) per advertiser and allows you to view daily, overall and summary statistics plus send statistics to advertisers via email.


    82) Web Form Generator Script
    This script is an easy-to-use tool to create reliable and efficient web forms and the best part is that absolutely no programming of any sort is required and it has the ability to create up to 100 different form fields plus can add a variety of field types including text boxes, drop down selection and more.


    83) Directory Indexer Written in PHP
    This PHP script makes a table that lists the files in a directory and lets you access the files and subdirectories. It includes searching, icons for each file type, an anti-leech feature, bandwidth limiting, access logging, and more.


    84) Web-based Reservation System
    A web-based reservation system that allows administered management of reservations on any number of resources. Typical applications are room or machine reservation management.


    85) PHP Online Project Management Script
    You can now have online project management with team collaboration, user management, multiple access levels, tasks, projects, and time tracking, task change history, files approval tracking, notes, client project sites and more with this super useful script that can really help

    download rapidshare

    http://rapidshare.com/files/51981702/85.rar.html

    Password = romadoma4alltollz

    KERALA EXAMINATION RESULTS 2011

    HSE RESULTS 2011 Examination Results March- 2011 Click here to download:- Click Vocational Higher Secondary Examination Results 2011 Click h...