Step1 - Season1 : Episode4

Submitted by Mark on January 18, 2007 - 4:13pm.

-Network Tip- WiFi

Tools:
Kismet - Views non-broadcasted SSID's
Airsnort - Encryption key recovery tool



-Windows Tip- Super Start-up

PART 1
1. OPEN your start menu and CLICK run. (Windows Key + R)
2. TYPE [CONTROL USERPASSWORDS2] (leave brackets out) and then PRESS enter.
3. CLICK the user that you intend to use this with.
4. UNCHECK "Users must enter a username and password to use this computer." Then CLICK "Apply"
5. If you don’t want to use a password CLICK "Ok"

PART 2
1. RIGHT CLICK on the start menu and CLICK "Explore"(or open) then navigate to the start up folder for the user you picked earlier.
2. RIGHT CLICK within the window and CLICK "New" Then "Shortcut"
3. COPY [rundll32.exe user32.dll, LockWorkStation] and PASTE into the nice little white box then CLICK "Next >"
4. Name the shortcut [Example: mybabydaddy] then CLICK "finish"
5. REBOOT the computer and watch the magic



-Programs That Cost < a ¢- Office

Office Program Replacments:
Open Office 2.0 - Small download yet a large package of office programs. A must have for anyone that is not willing to drop 400 bucks on MS Office.
77MBs

Abiword - Decent replacement for Microsoft Word. Good program for people who do mainly word editing (e.g. gust0208's grandmother)
5MBs

Fox-it PDF Reader - Great light-weight PDF reader. No install needed, can be run from a flash drive
1.2MBs

Nvu - A great free HTML editor available for all major platforms... Doesn’t have all that FrontPage from MS has.
6.5MBs

Dia - A program that is very similar to MS Visio, it can draw entity relationship diagrams, UML diagrams, flowcharts, network diagrams, and simple circuits
.5MBs

PDFCreator - Easily creates PDF from any Windows program. Use it like a printer (shows up as a printer and then "prints" to a PDF file)
.5MBs



-SQL- Injections, Why they work
2.0

Not much more to explain this time except some definitions:
information_schema.tables - Holds information on all the tables in your database
information_schema.columns - Holds information on all the columns in your database
not in() - function used to narrow down your search results, skips over whatever is included in the parentheses.

Numeric Values:
Sometimes a value you want, won't return an error. That's because the error is caused by trying to convert a character to an integer. But when you try to convert an integer to an integer something odd happens... IT WORKS! So what you need to do is append the integer to add some characters. To do this you'll use the convert() function.
Ex: convert(int, password+ 'hoodajaba')
so if the password was 12345, it will now show the error message:
"...can not convert the varchar value '12345hoodajaba' to a column of data type int"