Luigi Auriemma

aluigi.org (ARCHIVE-ONLY FORUM!)
It is currently 19 Jul 2012 16:43

All times are UTC [ DST ]





Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 
Author Message
 Post subject: new feature? or ? multircon
PostPosted: 15 Apr 2008 19:27 

Joined: 14 Mar 2008 23:10
Posts: 7
ok , i want to ask you if there is a way to modifie the brute force function of multircon in that way so there is another parameter , like -b defining the max length , -other parameter that defins the minimum lenght.
I find this usefull if you know that the password is like 10 characters , in my case.

If you cand do the modification yourself i would be grateful, but you could also tell me what to modifie in the source code, and i think i would manage to change it myself


Top
 Profile  
 
 
 Post subject:
PostPosted: 15 Apr 2008 20:13 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
it's enough to modify the source code of multircon.c.
The instruction which reads the passwords from the wordlist is that one at line 358 so if you want to set a minimum of 3 chars and a maximum of 8 it's enough to add the following instruction at line 359:
Code:
               if((strlen(bpwd) < 3) || (strlen(bpwd) > 8)) continue;

so that part of the code will looks like
Code:
            while(mybrute_word(brutex, fd) && !bfound) {
               if((strlen(bpwd) < 3) || (strlen(bpwd) > 8)) continue;
                rconbrute(sd, buff, bpwd);
                printf("%-79s\r", bpwd);
                usleep(bdelay);
            }


you could also place an automatic limitation of the passwords just in the tool, so for example if you have a password of 100 chars it will be truncated to how much you desire (truncated instead of being skipped).
It's enough to substituite the 64 at line 334 with the number you desire (like 8 and so on).


Top
 Profile  
 
 Post subject:
PostPosted: 16 Apr 2008 14:24 

Joined: 14 Mar 2008 23:10
Posts: 7
thenx for that , i will try it as soon as posible.
Also , how long do you think it will take for 10 characters?


Top
 Profile  
 
 Post subject:
PostPosted: 16 Apr 2008 14:31 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
i dont know about this one, but ive cracked md5 hashes (which is thousands of times faster, like 4-5 million pass per sec) and 10 char lower_alpha_numeric charset would take years on my 3.3ghz cpu.


Top
 Profile  
 
 Post subject:
PostPosted: 16 Apr 2008 16:05 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
considering 62 chars for alphanumeric charset (26 * 2 + 10) and max 10 chars you have:

62 power 10 = 839299365868340224 tries

can someone check if this number is correct? 8-)
then 839299365868340224 * half second leads to a total time of 116569356370602 hours


Top
 Profile  
 
 Post subject:
PostPosted: 17 Apr 2008 15:27 

Joined: 24 Sep 2007 02:12
Posts: 1114
Location: http://sethioz.co.uk
hehe i was right about my calculation (about md5 hashes), but it would take .. thousands of years for this tool.

well if you have fast connection and fast PC..and/or lots of friends then you can do the following:
get passpro
calculate the start and stop points for like 100-..ppl
then run that many instances and increase cracking process by that many times.

basically passpro is designed for that. so it calculates the start and end points for this process. so you can use 1-infinite pcs to crack and never use dublicated passwords.

ofcourse its always best to use wordlists to crack .. i just dont know if this tool allows to use wordlist.


Top
 Profile  
 
 Post subject:
PostPosted: 17 Apr 2008 16:51 

Joined: 13 Aug 2007 21:44
Posts: 4068
Location: http://aluigi.org
Oh I forgot something, due to the usage of the UDP protocol and the absence of a return value from the server in case of error (if the password is wrong you will receive nothing) any number we have pasted becomes just useless since is senseless to spend years with a password if when you catch it the UDP packet goes lost 8-)


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 7 posts ] 

All times are UTC [ DST ]


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 post attachments in this forum

Search for:
cron