the harder i think the more blury it gets to me, i seam to remember a ton of passwords i considerd but decided against as i didnt want any passwords that would link to me' im unsure why and now it seams incredibly stupid!
these scripts revalin has written run ok but just scramble the password and say "found it" after each scramble maybe some one who knows about multi-bit or script language could help to make it actualy work to remove the password
#!/usr/bin/ruby -w passphrase = "PASSWORDHERE" characters = " !\"\#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~" def test(phrase) print phrase, "\t" system("./multibit", "remove password", phrase, "20") case $?.exitstatus when 0 puts "Found it! #{phrase}" 0 when 127 puts "multibit not found in current dir" exit 1 end end # transpose adjacent chars (passphrase.length - 1).times do |i| testphrase = passphrase.dup testphrase = passphrase[i+1] testphrase[i+1] = passphrase test testphrase end # delete one char passphrase.length.times do |i| testphrase = passphrase.dup testphrase = testphrase[0,i] + testphrase[(i+1)..-1] test testphrase end # substitutute one char passphrase.length.times do |i| characters.chars.each do |c| testphrase = passphrase.dup testphrase = c test testphrase end end # insert one char (passphrase.length + 1).times do |i| characters.chars.each do |c| testphrase = passphrase.dup testphrase.insert(i, c) test testphrase end end puts "No luck." exit 1 |