Advertisement
opexxx

createstringsfromvmwarelog.py

Jul 10th, 2014
341
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.05 KB | None | 0 0
  1. #!/usr/bin/env python
  2. #
  3. # This program takes a VMWare USB log, and parses the
  4. # data sent by a specific endpoint
  5. #
  6. #
  7.  
  8. '''
  9. Useful one liners:
  10.  
  11. grep -B 6 "42 ad 00 4a" ~/navigo/vmware_omnikey_navigo_successauth.log | sed -e '/Up/d' -e '/Down/d' -e 's/^.*USBIO: //' -e 's/^[0-9]\{3\}: //' -e 's/\(.\)\{17\}$//g' | tr -d '\n' | sed -e 's/--/\n/g' | tr 'a-z' 'A-Z' | sort
  12.  
  13. grep -A 6 "00 4a 00" ~/navigo/vmware_omnikey_navigo_successauth.log | sed -e 's/^.*USBIO: //' -e /2013/d -e 's/^[0-9]\{3\}: //' -e 's/\(.\)\{17\}$//g' | tr -d '\n' | sed -e 's/--/\n/g'
  14.  
  15. '''
  16.  
  17.  
  18.  
  19. import re;
  20. import sys;
  21. import getopt;
  22.  
  23.  
  24.  
  25. def parseLine(line,responseList):
  26.     #print line
  27.     matchObj = re.match(r'.*\d{3}: ((?:(?:[0-9a-f]{2}) ){1,}).{1,}', line, re.M);
  28.     if matchObj:
  29.         bytes = str(matchObj.group(1)).split(" ");
  30.         for byte in bytes:
  31.             if byte != "":
  32.                 responseList.append(byte)
  33.  
  34. def printVar(master):
  35.     count = 0;
  36.     strCount = 0;
  37.     for responseList in master:
  38.         print "respStr_%04d\t= [\t"%(strCount),;
  39.         for i in responseList[:-1]:
  40.             if count == 7:
  41.                 print "0x%s,"%i;
  42.                 print "\t\t\t",
  43.                 count = 0;
  44.             else:
  45.                 print "0x%s, "%(i),;
  46.                 count += 1;
  47.         print "0x%s"%responseList[-1];
  48.         print "\n\t\t\t];\n";
  49.         count=0;
  50.         strCount += 1;
  51.  
  52. def printLine(master):
  53.     for responseList in master:
  54.         for i in responseList[:-1]:
  55.             print " %s"%i,;
  56.         print " %s"%responseList[-1];
  57.  
  58. def findDups(master):
  59.     checked = [];
  60.     for e in master:
  61.         if e not in checked:
  62.             checked.append(e);
  63.     return checked;
  64.  
  65.  
  66. def usage():
  67.     print "\nSet the following settings within the .vmx file associated with your VM:"
  68.     print " \t#";
  69.     print " \t# START USB Debugging Options";
  70.     print " \t# as per http://vusb-analyzer.sourceforge.net/tutorial.html";
  71.     print " \t#";
  72.     print " \t.encoding = \"windows-1252\"";
  73.     print " \t";
  74.     print " \tmonitor = \"debug\"";
  75.     print " \tusb.analyzer.enable = TRUE";
  76.     print " \tusb.analyzer.maxLine = 8192";
  77.     print " \tmouse.vusb.enable = FALSE";
  78.     print " \t";
  79.     print " \t#";
  80.     print " \t# END USB Debugging Options";
  81.     print " \t#";
  82.     print " \t#";
  83.     print "\nUsage:"
  84.     print "\t-f [file]\t VMWare Log File (USBIO)";
  85.     print "\t-e [EP ADDR]\t Endpoint 1 (Host - Implies USBIO Down - No work)";
  86.     print "\t-p [EP ADDR]\t Endpoint 2 (Device)";
  87.     print "\t-i \t Output python importable variables";
  88.     print "\t-s \t Output hex strings";
  89.     print "\t-r \t Remove duplicates";
  90.     print "Example:"
  91.     print "\t" + sys.argv[0] + " 84 vmware.log";
  92.     print "\n";
  93.     sys.exit(-1);
  94.  
  95. '''
  96. main
  97. '''
  98.  
  99. endPoint1 = endPoint2 = output = remDups = 0;
  100. vmLogFile = None;
  101.  
  102.  
  103. print "VMWare USBIO Log Parser"
  104. print "Creates importable Python strings"
  105. print "------------------------------------------"
  106.  
  107. try:
  108.     opts,args = getopt.getopt(sys.argv[1:], "hf:e:p:rsi", []);
  109. except getopt.GetoptError:
  110.     usage(sys.argv[0]);
  111.  
  112. for o,a in opts:
  113.     if o == "-h":
  114.         usage();
  115.     if o == "-f":
  116.         vmLogFile = a;
  117.     if o == "-e":
  118.         endPoint1 = a;
  119.     if o == "-p":
  120.         endPoint2 = a;
  121.     if o == "-i":
  122.         output = 0; # Python Output
  123.     if o == "-s":
  124.         output = 1; # Hex output
  125.     if o == "-r":
  126.         remDups = 1;
  127.        
  128.  
  129. if vmLogFile == None or ( endPoint2 == 0 and endPoint1 == 0):
  130.     usage();
  131.  
  132. numLinesAfter = 0;
  133. #strCount = 0;
  134. getState = 0;
  135.  
  136. #ep1RespList = []; # Usually the host
  137. #ep2RespList = []; # Usually the device
  138.  
  139. epRespList = [];
  140. responseListMaster = [];
  141. responseListFinal = [];
  142.  
  143. epSearchStr=None;
  144.  
  145. if endPoint1 != 0:
  146.     print "[+] Search for Endpoint1 [" + endPoint1 + "] within " + vmLogFile;
  147.     ep1SearchStr = "USBIO: Down.*endpt="+endPoint1+".* datalen=([0-9]{1,}) .*";
  148.     epSearchStr = ep1SearchStr;
  149. elif endPoint2 != 0:
  150.     print "[+] Search for Endpoint2 [" + endPoint2 + "] within " + vmLogFile;
  151.     ep2SearchStr = "USBIO: Up.*endpt="+endPoint2+".* datalen=([0-9]{1,}) .*";
  152.     epSearchStr = ep2SearchStr;
  153.  
  154.  
  155.  
  156. inputFile = open(vmLogFile, 'r');
  157.  
  158. for line in inputFile:
  159.     if numLinesAfter == 0:
  160.         matchObj = re.search(r''+epSearchStr+'', line, re.M);
  161.         if matchObj:
  162.             packetLen = int(matchObj.group(1));
  163.             if packetLen%16 == 0:
  164.                 numLinesAfter = packetLen/16;
  165.             else:
  166.                 numLinesAfter = (packetLen/16)+1;
  167.     elif numLinesAfter > 0:
  168.         parseLine(line,epRespList);
  169.         numLinesAfter -= 1;
  170.         if numLinesAfter == 0:
  171.             responseListMaster.append(epRespList[:]);
  172.             epRespList[:] = []; # Clears
  173.  
  174. inputFile.close();
  175.  
  176. if remDups:
  177.    responseListFinal = findDups(responseListMaster);
  178. else:
  179.    responseListFinal = responseListMaster;
  180.  
  181. if output == 0:
  182.     printVar(responseListFinal);
  183. elif output == 1:
  184.     printLine(responseListFinal);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement