Guest User

Untitled

a guest
Apr 22nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | None | 0 0
  1. #!/usr/bin/python
  2. import socket
  3.  
  4.  
  5. passFile = open("semtex0_32","rb");
  6. data = passFile.read();
  7. passFile.close();
  8.  
  9. i=0;
  10. realData="";
  11. for bt in data:
  12.     if i%2==0:
  13.         realData +=bt;
  14.     i+=1;
  15.  
  16. print realData;
Add Comment
Please, Sign In to add comment