Re: [A51] A51 Digest, Vol 15, Issue 6

2010-08-11 Thread moongaboonga moongaboonga
Where can I find hashes for tables?
39GB per table is a lot and should be checked after download.

Thank you!




On Tue, Aug 10, 2010 at 12:00 PM, a51-requ...@lists.reflextor.com wrote:

 Send A51 mailing list submissions to
a51@lists.reflextor.com

 To subscribe or unsubscribe via the World Wide Web, visit
http://lists.lists.reflextor.com/cgi-bin/mailman/listinfo/a51
 or, via email, send a message with subject or body 'help' to
a51-requ...@lists.reflextor.com

 You can reach the person managing the list at
a51-ow...@lists.reflextor.com

 When replying, please edit your Subject line so it is more specific
 than Re: Contents of A51 digest...


 Today's Topics:

   1. Just question (Milinko Isakovic)


 --

 Message: 1
 Date: Mon, 9 Aug 2010 17:01:34 +0200
 From: Milinko Isakovic milin...@gmail.com
 Subject: [A51] Just question
 To: a51@lists.reflextor.com
 Message-ID:
aanlktino_6wjsovlz_mfmylpsrtzlfp2_zpjcbc-c...@mail.gmail.com
 Content-Type: text/plain; charset=iso-8859-1

 If I get USRP2,  how many daughter boards, and which ones I need?

 Regards
 Milinko
 -- next part --
 An HTML attachment was scrubbed...
 URL:
 http://lists.lists.reflextor.com/pipermail/a51/attachments/20100809/907f96fd/attachment.html

 --

 ___
 A51 mailing list
 A51@lists.reflextor.com
 http://lists.lists.reflextor.com/cgi-bin/mailman/listinfo/a51


 End of A51 Digest, Vol 15, Issue 6
 **

___
A51 mailing list
A51@lists.reflextor.com
http://lists.lists.reflextor.com/cgi-bin/mailman/listinfo/a51


Re: [A51] A51 Digest, Vol 15, Issue 6

2010-08-11 Thread Frank A. Stevenson
On Wed, 2010-08-11 at 15:48 +0200, moongaboonga moongaboonga wrote:
  
 Where can I find hashes for tables?
 39GB per table is a lot and should be checked after download.
  
 Thank you!
  

MD5 sums have been posted here:

http://lists.lists.reflextor.com/pipermail/a51/2010-June/000675.html

284 is missing from this list, so it would be nice to have a checksum
for the sake of completeness. (I don't have this table, can someone who
does please post it.)

Frank


___
A51 mailing list
A51@lists.reflextor.com
http://lists.lists.reflextor.com/cgi-bin/mailman/listinfo/a51


[A51] Some small updates.

2010-08-11 Thread Frank A. Stevenson

For those who haven't noticed, Kraken code has found a new home in git,
and the latest version can be gotten by:

  git clone git://git.srlabs.de/kraken.git

The latest version can handle multiple requests simultaneously, and
these are identified by a unique job number.

I have written some sample glue code in python that shows how it is
possible to interface with Kraken over the server socket. The relevant
snippets look like this:

Simple function to read from socket:

def ReadLine(s):
r = 
c = s.recv(1)
while c!='\n':
r = r + c
c = s.recv(1)
return r


And the code for processing a batch of known plaintext looks something
like this

#Open server connection
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((127.0.0.1, 9100))

found = False
for crk in cracks:
pos = crk.find(crack)
skip = False
if pos0:
cmd = crk[pos:]
s.send(cmd+\n)
while True:
r = ReadLine(s)
print r
if (len(r)  5) and r[:6]==crack :
break
if (len(r)  5) and r[:6]==Found :
find = r.split( )
key = find[1]
keypos = find[3]
#Another frame will have to be found from this group
framenum1 = ???
framenum2 = ???
burst2 = ???
pipe = os.popen(./find_kc %s %s %s %s %s%
(key,keypos,framenum1,framenum2,burst2))
result = pipe.read();
print result
rv = result.split(\n)
for r in rv:
if r.find(MATCH)0:
print r
key = r.split( )[1:9]
keystring = string.join(key, )
# This is your key
print keystring
found = True
break
if found:
break

#close connection
s.close()


I hope this can prove useful.

Frank

___
A51 mailing list
A51@lists.reflextor.com
http://lists.lists.reflextor.com/cgi-bin/mailman/listinfo/a51