Jump to content

thebunnyman

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

242 profile views

thebunnyman's Achievements

Newbie

Newbie (1/14)

  1. in the case of tables this would leave you with multiple in which case you could script your attack and add one second per table. For a cluster you could output your numeric iteration the (third which iterates the second) to a file and reference it with your handler to know where to start, stop, or where you left off.
  2. you can nix the gpu and lack of understanding and get the basis of this done in a page of bash You need two main scripts. One to iterate permutations a-Z 0-9 or whole words even. The other iterates numerations of your desired line. Third script runs on into the other. for var do done. you can then easily pipe this into mario world. Sed your script while numerating a sequence of 1-however many lines your permutations yield. You also sequence your permutations against your numeric sequencer. This reads 1to1 but you could could omit aircrack here and make a fullblown connect script by sequencing a telnet 1 in every 3 or whatever you desire. This allows you to choose a starting point for your crack as well as distributing that starting point differently to different devices. Looks basically like this ./bin/bash/script1 list=`echo {0..9} {a..z} {A..Z}` for c1 in $list do for c2 in $list do for c3 in $list do echo $c1$c2$c3$ done done done /bin/bash/script2 for i in$(seq 1-100000000) do /bin/bash/script1 sed -n '$line'p done /bin/bash/script3 ti=$(bin/bash/script2) for var in "$ti" do /bin/bash/script2 done /bin/bash/aircrack-ng some code - | /bin/bash/script You would then make a master script presumably with netcat which would launch the same script on multiple devises. The only difference being what line you start on, your char set, or whatever vars you care to define. The output of each of these scripts probably needs a handler but that should be the easy part. That is the part you do know how to articulate... right? so this is a little rough but it should work for whatever you are capable of adapting it to. Not gpu based but simple enough for a noob I hope. plus you can run it on anything that supports a bash terminal. Like a android phone :-) if your not getting it or you want to see my full telnet script drop me a line bunny.test.y@gmail
×
×
  • Create New...