ranking Sort Sort   |   date Sort Sort   |   member Sort Sort
Syndication

-5
Date Submitted Sat. Apr. 15th, 2006 12:54 AM
Revision 1
Syntax Master dannyboy
Tags URLConnection | VBSCRIPT
Comments 0 comments
open internet explorer and navigate to a url
-5
Date Submitted Sat. Apr. 15th, 2006 2:56 AM
Revision 1
Syntax Master dannyboy
Tags connect | VBSCRIPT
Comments 0 comments
check server sessions
-4
Date Submitted Tue. Feb. 28th, 2006 7:18 AM
Revision 1
Syntax Master dannyboy
Tags VBSCRIPT
Comments 0 comments
This script shows you how a script can be self modifying, like viruses. It is a warning about the possibilities of new macro viruses
-4
Date Submitted Thu. Mar. 2nd, 2006 11:02 AM
Revision 1
Syntax Master dannyboy
Tags Password | VBSCRIPT
Comments 1 comments
Usage: cscript //nologo RandPass.vbs [password_length]|[?] [complexity] [uniqueness]

This script will generate a random password of X length. It will build the password from seed 'strings of increasing complexity.
1 - simple is the lower case alphabet, numbers 2-9 and !@#$%^&*() all randomly interspersed.
2 - complex is the same as the previous with the addition of UPPER case letters.
3 - insane is the same as the previous with the additional symbols of ,./?>;'[]}{\|~`:
The numbers 0 and 1 have been removed to avoid confusion with the letters O and L.

password_length should be a number between 4 and 127, although a limit of 14 is recommended for Win9x clients. Default is 7
complexity must be 1,2 or 3
uniqueness value of 0 will make each password character unique. A value of 1 [default] will allow repeated characters.

If you don't pass values at the command prompt, you will be prompted for each value.
-3
Date Submitted Tue. Feb. 28th, 2006 5:42 AM
Revision 1
Syntax Master dannyboy
Tags ASP | Convert | VBSCRIPT
Comments 0 comments
Converts Hex values to Decimal, useful for reading & converting values from the registry.
-2
Date Submitted Tue. Feb. 28th, 2006 5:34 AM
Revision 1
Syntax Master dannyboy
Tags ASP | Convert | VBSCRIPT
Comments 0 comments
A painfully simple method of viewing the contents of an ASP script via an ASP script.
-2
Date Submitted Thu. Mar. 2nd, 2006 5:03 AM
Revision 1
Syntax Master dannyboy
Tags exists | File | Folder | VBSCRIPT
Comments 0 comments

Checks to see if a file or folder exists
The fFile variable determines whether you're
looking for a File (True) or Folder(False)
The strName variable holds the fully qualified
path you're looking For
0
Date Submitted Thu. Mar. 2nd, 2006 10:11 AM
Revision 1
Syntax Master dannyboy
Tags Ping | VBSCRIPT
Comments 0 comments
check if host is pingable or not
2
Date Submitted Sun. Sep. 9th, 2007 12:15 PM
Revision 1
Beginner bala
Tags ASP | VBSCRIPT
Comments 0 comments

If you're using passwords of any type on your site, it is best to keep them random. That way they cannot be easily guessed at by intruders.

First, it's good to know a little about ASCII characters. Every character your keyboard can type is actually represented by a number. So the letter A is represented by 65. The letter Z is represented by 90. So all you need to do is generate a series of random numbers, each number between 65 and 90. That would give you a way to find the equivalent letters.

If you want to include numbers too, those are found between spots 48 and 57. I wouldn't use the spots between 57 and 65 - those are odd characters like colons.




So let's say you want to create a 7 character password that contains a random assortment of letters and numbers. You could do something like this:
2
Date Submitted Wed. Mar. 1st, 2006 3:51 AM
Revision 1
Syntax Master dannyboy
Tags ARGUMENTS | VBSCRIPT
Comments 0 comments
Arguments in vbscript