how to write BruteForce character set!!
#1
Hey Guys I want a Character set for my wpa handshake file

All I know about it is the Router is JioFiber which has Minimum of 8 character length,
now it can be from 8-12 character with or without numbers, with or without alphabets, with or without Special characters/symbols...........

That's all I know, so I was looking for a Characters Set/s that full-fill all above conditions.

Thank You
Reply
#2
https://hashcat.net/wiki/doku.php?id=mask_attack
Reply
#3
I still don't understand this problem, can you explain more?    
Reply
#4
that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow
Reply
#5
(06-10-2022, 02:28 PM)Snoopy Wrote: that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow


Think of it like I wanna bruteforce every possible password ever like the classic airmon-ng with crunch method, that generates and checks passwords on the way without making a dictionary.
Reply
#6
(06-10-2022, 05:31 PM)JackSparrow47 Wrote:
(06-10-2022, 02:28 PM)Snoopy Wrote: that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow


Think of it like I wanna bruteforce every possible password ever like the classic airmon-ng with crunch method, that generates and checks passwords on the way without making a dictionary.

What have you tried?
Reply
#7
(06-10-2022, 06:09 PM)pdo Wrote:
(06-10-2022, 05:31 PM)JackSparrow47 Wrote:
(06-10-2022, 02:28 PM)Snoopy Wrote: that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow


Think of it like I wanna bruteforce every possible password ever like the classic airmon-ng with crunch method, that generates and checks passwords on the way without making a dictionary.

What have you tried?


I didn't tried anything cause I don't know how to write a perfect character set!!
Reply
#8
(06-11-2022, 06:59 AM)JackSparrow47 Wrote:
(06-10-2022, 06:09 PM)pdo Wrote:
(06-10-2022, 05:31 PM)JackSparrow47 Wrote:
(06-10-2022, 02:28 PM)Snoopy Wrote: that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow


Think of it like I wanna bruteforce every possible password ever like the classic airmon-ng with crunch method, that generates and checks passwords on the way without making a dictionary.

What have you tried?

I didn't tried anything cause I don't know how to write a perfect character set!!

?a means all possible ascii chars, as long as the router doesnt accept things like cyrillic chars this should do the trick

?a = ?l?u?d?s and this means

  l | abcdefghijklmnopqrstuvwxyz [a-z]
  u | ABCDEFGHIJKLMNOPQRSTUVWXYZ [A-Z]
  d | 0123456789                [0-9]
  s |  !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~

but as i mentioned, cracking such a great keyspace will probably result in a bufferoverflow, depending on the length of your mask, 8-9 should be fine, i think with length 10 hashcat will tell you bufferoverflow
Reply
#9
(06-11-2022, 06:59 AM)JackSparrow47 Wrote:
(06-10-2022, 06:09 PM)pdo Wrote: What have you tried?


I didn't tried anything cause I don't know how to write a perfect character set!!

Perfect is the enemy of good. The journey of a thousand miles begins with a single step.
Reply
#10
(06-13-2022, 01:34 PM)Snoopy Wrote:
(06-11-2022, 06:59 AM)JackSparrow47 Wrote:
(06-10-2022, 06:09 PM)pdo Wrote:
(06-10-2022, 05:31 PM)JackSparrow47 Wrote:
(06-10-2022, 02:28 PM)Snoopy Wrote: that would be simple options

--increment --increment-min=8 and as mask ?a?a?a?a?a?a?a?a?a?a?a?a

but i think you will run into a buffer overflow


Think of it like I wanna bruteforce every possible password ever like the classic airmon-ng with crunch method, that generates and checks passwords on the way without making a dictionary.

What have you tried?

I didn't tried anything cause I don't know how to write a perfect character set!!

?a means all possible ascii chars, as long as the router doesnt accept things like cyrillic chars this should do the trick

?a = ?l?u?d?s and this means

  l | abcdefghijklmnopqrstuvwxyz [a-z]
  u | ABCDEFGHIJKLMNOPQRSTUVWXYZ [A-Z]
  d | 0123456789                [0-9]
  s |  !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~

but as i mentioned, cracking such a great keyspace will probably result in a bufferoverflow, depending on the length of your mask, 8-9 should be fine, i think with length 10 hashcat will tell you bufferoverflow

Yes the router has minimum 8 character of password to be set.
now how to write the character set with these l, u, d, s that you mentioned! but it should hit every possible 8 char long pass!
Reply