Advertisement
Guest User

wh1sk3yj4ck

a guest
Sep 29th, 2010
1,348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 3.60 KB | None | 0 0
  1. #!/usr/bin/env python
  2.  
  3. # By William 'wh1sk3yj4ck' Soderberg
  4.  
  5. # This script will analyze your auth.log file for brute force attacks and print you a report.
  6.  
  7. sshdInfo = dict()
  8. ip = 0
  9. time = 0
  10. attempts = 0
  11. index = 12 # index in list where IP is stored
  12.  
  13. # debugging
  14. totalFailed = 0
  15.  
  16. def checkRatio():
  17.     # Checks success/failed ratio in order to remove false positives
  18.     tmpLst = []
  19.    
  20.     for k, v in sshdInfo.iteritems():
  21.         if v[4] > 0:
  22.             # Adjust tolerance here.
  23.             # Default tolerance is 1 success of 10
  24.             if (v[4]/float(v[2])) > float(0.1):
  25.                 tmpLst.append(k)
  26.                
  27.     # Removing keys with a good ratio
  28.     for keys in tmpLst:
  29.         del sshdInfo[keys]
  30.  
  31. def check(line):
  32.     # Function that will check for failed entries in the logfile
  33.     line = line.split()
  34.    
  35.     time = line[0] + ' ' + line[1] + ' ' + line[2]
  36.    
  37.     if 'Failed' in line:
  38.         if 'invalid' in line:
  39.             storeFailed(line, index, time)
  40.         else:
  41.             storeFailed(line, index - 2, time)     
  42.     elif 'Accepted' in line:
  43.         storeSuccessful(line, time)
  44.     else
  45.         recordSession(line, time)
  46.        
  47. def storeFailed(line, index, time):
  48.     attempts = 0
  49.     success = 0
  50.     ip = line[index]
  51.            
  52.     # IP-addr. resides at index 12
  53.     if ip not in sshdInfo:
  54.         # Adds initial values to IP key
  55.         sshdInfo[ip] = [time, time, attempts, [], success]
  56.  
  57.     # If IP key already exist, then renew end time and add one to attempts
  58.     sshdInfo[ip][1] = time
  59.     sshdInfo[ip][2] += 1       
  60.  
  61. def storeSuccessful(line, time):
  62.     ip = line[10]
  63.     user = line[8]
  64.  
  65.     if ip not in sshdInfo:
  66.         # We don't need to add successful attempts that's not considered
  67.         # a brute force attempt.
  68.         return
  69.        
  70.     sshdInfo[ip][3].append(time) # adds when the acc was compromised
  71.     sshdInfo[ip][3].append(user) # adds user
  72.  
  73.     sshdInfo[ip][1] = time # adds timestamp
  74.     sshdInfo[ip][4] += 1 # adds success
  75.    
  76. def recordSession():
  77.     # This function will record the session end time.
  78.     # If a session exists and this function gets called, it will
  79.     # then add the session end time to the stored information
  80.    
  81.     # NOTE: This could record wrong session time since several IP's can be logged on at the same time
  82.     if ip not in sshdInfo:
  83.         # We don't need to add logouts that's not apart of the attack
  84.         return
  85.    
  86. def writeReport(totalFailed):
  87.     # Writes a detailed report of the findings to a file
  88.    
  89.     successful = 0
  90.    
  91.     with open('sshd_analyzer_report', 'w') as f2:
  92.    
  93.         for k, v in sshdInfo.iteritems():
  94.             f2.write('\n\nAttacker IP: ' + k)
  95.             f2.write('\nStart time: ' + v[0])
  96.             f2.write('\nEnd time: ' + v[1])
  97.             f2.write('\nLogin attempts: ' + str(v[2]))
  98.            
  99.             if v[4] > 0:
  100.                 successful += 1
  101.                 f2.write('\nSuccessful attempts: ' + str(v[4]))
  102.                 f2.write('\nRatio: ' + str(v[4]/float(v[2])))
  103.                
  104.                 if len(v[3]) > 0:
  105.                     f2.write('\nCompromised account details:')
  106.                     count = 0
  107.                    
  108.                     while count < len(v[3]):
  109.                         f2.write('\n')
  110.                         f2.write(v[3][count] + ' : ' + v[3][count+1])
  111.                         count += 2
  112.                                            
  113.             totalFailed += v[2]
  114.            
  115.     print 'Total number of attackers: ' + str(len(sshdInfo))
  116.     print 'Total number of successful attackers: ' + str(successful)
  117.     print 'Total number of failed attackers: ' + str(len(sshdInfo) - successful)
  118.     print 'Number of failed login attempts: ' + str(totalFailed)
  119.    
  120. def main():
  121.     # Checks for failed and successful login attempts, rest is discarded
  122.     with open('sanitized_log/auth.log', 'r') as f:
  123.         for line in f:
  124.             if 'sshd' and 'Failed' in line:
  125.                 check(line)
  126.             elif 'sshd' and 'Accepted' in line:
  127.                 check(line)
  128.             elif 'session closed for user' in line:
  129.                 check(line)
  130.                                
  131. main()
  132. checkRatio()
  133. writeReport(totalFailed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement