Download SQL script
cracker.sql
-- -----------------------------------------------------------------------------
-- WWW.PETEFINNIGAN.COM LIMITED
-- -----------------------------------------------------------------------------
-- Script Name : cracker.sql
-- Author : Pete Finnigan
-- Date : January 2008
-- -----------------------------------------------------------------------------
-- Description : Use this script to generate the files for woraauthbf
-- -----------------------------------------------------------------------------
-- Maintainer : Pete Finnigan (www.petefinnigan.com)
-- Copyright : Copyright (C) 2008, 2009 PeteFinnigan.com Limited. All rights
-- reserved. All registered trademarks are the property of their
-- respective owners and are hereby acknowledged.
-- -----------------------------------------------------------------------------
-- License : This software is free software BUT it is not in the public
-- domain. This means that you can use it for personal or
-- commercial work but you cannot remove this notice or copyright
-- notices or the banner output by the program or edit them in any
-- way at all. You also cannot host/distribute/copy or in anyway
-- make this script available through any means either in original
-- form or any derivitive work based on it. The script is
-- only available from its own webpage
-- /cracker.sql or any other page that
-- PeteFinnigan.com Limited hosts it from.
-- This script cannot be incorporated into any other free or
-- commercial tools without permission from PeteFinnigan.com
-- Limited.
--
-- In simple terms use it for free but dont make it available in
-- any way or build it into any other tools.
-- -----------------------------------------------------------------------------
-- Version History
-- ===============
--
-- Who version Date Description
-- === ======= ====== ======================
-- P.Finnigan 1.0 Jan 2008 First Issue.
-- -----------------------------------------------------------------------------
--whenever sqlerror exit rollback
set feed off
set head off
set arraysize 1
set space 1
set verify off
set pages 0
set lines 80
set termout on
set trimspool on
set serveroutput on size 1000000
spool cracker.lis
select name||':'||password||':A:A:'
from sys.user$
where password not in ('GLOBAL','EXTERNAL')
and length(password)=16
/
spool off
whenever sqlerror continue
set pages 25
set head on
set feed on
set verify on
set trimspool off