Waraxe IT Security Portal  
  Login or Register
::  Home  ::  Search  ::  Your Account  ::  Forums  ::   Waraxe Advisories  ::  Tools  ::
March 29, 2024
Menu
 Home
 Logout
 Discussions
 Forums
 Members List
 IRC chat
 Tools
 Base64 coder
 MD5 hash
 CRC32 checksum
 ROT13 coder
 SHA-1 hash
 URL-decoder
 Sql Char Encoder
 Affiliates
 y3dips ITsec
 Md5 Cracker
 User Manuals
 AlbumNow
 Content
 Content
 Sections
 FAQ
 Top
 Info
 Feedback
 Recommend Us
 Search
 Journal
 Your Account



User Info
Welcome, Anonymous
Nickname
Password
(Register)

Membership:
Latest: MichaelSnaRe
New Today: 0
New Yesterday: 0
Overall: 9145

People Online:
Visitors: 798
Members: 0
Total: 798
PacketStorm News
·301 Moved Permanently

read more...
Log in Register Forum FAQ Memberlist Search
IT Security and Insecurity Portal

www.waraxe.us Forum Index -> Assembler -> Dictionary Creation Tools
Post new topic  Reply to topic View previous topic :: View next topic 
Dictionary Creation Tools
PostPosted: Thu Apr 14, 2005 2:21 am Reply with quote
erg0t
Valuable expert
Valuable expert
 
Joined: Apr 08, 2005
Posts: 55
Location: Uruguay




; DCTl2u v0.1 (Dictionary Creation Tools) by erg0t
; -------------------------------------------------
;
; This program is one of many I have planed to do
; to facilitation of word dictionaries creation.
;
; With this program you can generate al Upercase
; and lowercase convinations of a word, starting
; from the lowercase word.
;
; Example:
; erg0t root # ./dic
; hola
; holA
; hoLa
; hOla
; Hola
; hoLA
; hOlA
; HolA
; hOLA
; HoLA
; HOLA
;
; NOTE: only works with lowercase alfabetic words!
; For any bug or suggesitions: ergot86@gmail.com

[bits 32]
[org 08048000h]

ehdr:
db 07Fh, "ELF", 1, 1, 1
times 9 db 0
dw 2
dw 3
dd 1
dd start
dd phdr - $$
dd 0
dd 0
dw ehdrsize
dw phdrsize
dw 1
dw 0
dw 0
dw 0

ehdrsize equ $ - ehdr

phdr:
dd 1
dd 0
dd $$
dd $$
dd filesize
dd filesize
dd 7
dd 01000h

phdrsize equ $ - phdr


buffer: resb 0FFh
size dd 0

start:

xor ebx,ebx
mov eax,3
mov ecx,buffer
mov edx,0FFh
int 80h
test eax,eax
je salir
not eax
test eax,eax
je start
not eax
lea edi,[eax-1]
lea esi,[buffer-1]
mov [size],eax
mov ecx,edi

general:

test edi,edi
je start

bucle:

cmp byte [esi+ecx],61h
jb sigue
sub byte [esi+ecx],20h
call print
add byte [esi+ecx],20h

sigue:

loop bucle
cmp byte [esi+edi],61h
jb sigue2
sub byte [esi+edi],20h

sigue2:

dec edi
mov ecx,edi
jmp general

salir:

xor eax,eax
inc eax
int 80h

print:

push ecx
xor ebx,ebx
inc ebx
mov eax,4
mov ecx,buffer
mov edx,[size]
int 80h
pop ecx
ret

filesize equ $ - $$

Edited PD: I found a mistake in the code but now I have to go to sleep, tomorow I?ll repair the code
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Thu Apr 14, 2005 3:58 pm Reply with quote
erg0t
Valuable expert
Valuable expert
 
Joined: Apr 08, 2005
Posts: 55
Location: Uruguay




I don?t know wtf is going on my brain, but now I can?t find the error!!!
Confused Confused Confused Confused Confused Confused Confused Confused Confused Confused Confused Confused Confused Confused
View user's profile Send private message Send e-mail Visit poster's website
PostPosted: Wed Jun 21, 2006 1:29 pm Reply with quote
colboy
Regular user
Regular user
 
Joined: Jun 21, 2006
Posts: 9




Would this be used for cracking passwords ?

_________________
- I Know Nothing...

crystal gemstones : sex toys : web site design : trade events
View user's profile Send private message Visit poster's website
PostPosted: Wed Jun 21, 2006 6:54 pm Reply with quote
ToXiC
Moderator
Moderator
 
Joined: Dec 01, 2004
Posts: 181
Location: Cyprus




hey man ... excelent assembly code ...but is like ..causing your self troubles.. there are a lot of tools free on the net
Quote:

Example:
; erg0t root # ./dic
; hola
; holA
; hoLa
; hOla
; Hola
; hoLA
; hOlA
; HolA
; hOLA
; HoLA
; HOLA


you can easily use that through cain .. there is a function for testing each word with all the combinations in UPPER lower case ...

now about creating wordlists ..

why dont you use .....raptor ?

Code:

Some info about raptor ..


To create, enrich and maintain such wordlists you need a tool like Raptor that offers top-features to make your wordlist unbeatable. Different protection schemes require different wordlists - a wordlist that works with one site fails on another one because its username-password combos don't match the characteristics of the site protection. You don't need to create a wordlist for each protection scheme - just use your existing wordlist and manipulate it using Raptor's advanced and easy to use features.

[b]Features[/b]

    * common text processing features
    * working with multiple files
    * option to manipulate file on disk rather than loading them in the editor
    * advanced list sorting: sorting alphabetically, by word length, by username or password
    * randomizing lists to obfuscate server log files
    * anagrams
    * splitting combo files in single lists and vice versa
    * fast duplicate remover allows to use reference lists and to save duplicates
    * powerful and customizable filters to remove unwanted words or combos
    * customizable wordlist manipulations to enrich and enlarge your wordlists
    * wordlist and URL converters
    * list generators for various AVS formats and a powerful and flexible ALS list generator
    * online and file password leecher
    * support for Windows? XP visual styles
    * and many more

 



Download : http://rapidshare.de/files/23714444/raptor3.zip

i am also uploading some wordlists now .. so be patient ..



ToX

_________________
who|grep -i blonde|talk; cd~;wine;talk;touch;unzip;touch; strip;gasp;finger;gasp;mount; fsck; more; yes; gasp; umount; make clean; sleep;wakeup;goto http://www.md5this.com
View user's profile Send private message Visit poster's website MSN Messenger
Dictionary Creation Tools
  www.waraxe.us Forum Index -> Assembler
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
All times are GMT  
Page 1 of 1  

  
  
 Post new topic  Reply to topic  




Powered by phpBB © 2001-2008 phpBB Group






Space Raider game for Android, free download - Space Raider gameplay video - Zone Raider mobile games
All logos and trademarks in this site are property of their respective owner. The comments and posts are property of their posters, all the rest (c) 2004-2020 Janek Vind "waraxe"
Page Generation: 0.155 Seconds