Advertisement
RokiAdhytama

Gretongers Payload

Apr 11th, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. Sedikit berbagi pengetahuan tentang payload..by admin boy rahman
  2.  
  3. Perintah yang didukung pada Payload
  4.  
  5. [netData] = CONNECT [host_port] [protokol]
  6.  
  7. [raw] = CONNECT [host_port] [protokol]
  8.  
  9. [real_raw] = CONNECT [host_port] [protokol] [crlf] [crlf]
  10.  
  11. [host] = Host tujuan
  12.  
  13. [port] = Port tujuan
  14.  
  15. [host_port] = Host tujuan dan port, dipisahkan oleh titik dua:
  16.  
  17. [ssh] = sama dengan [host_port]
  18.  
  19. [protokol] = versi protokol HTTP
  20.  
  21. [metode] = set standar adalah CONNECT
  22.  
  23. [cr] = Pengembalian Carriage, U + 000D
  24.  
  25. [lf] = Umpan Baris, U + 000A
  26.  
  27. \ r = sama dengan CR
  28.  
  29. \ n = sama dengan LF
  30.  
  31. # 13 = sama dengan CR
  32.  
  33. # 10 = sama dengan LF
  34.  
  35. [crlf] = CR (U + 000D) diikuti oleh LF (U + 000A)
  36.  
  37. [lfcr] = LF (U + 000A) diikuti oleh CR (U + 000D)
  38.  
  39. [crlf * 1] = [crlf]
  40.  
  41. [crlf * 2] = [crlf] [crlf] (sampai crlf * 4)
  42.  
  43. [ua] = Agen Pengguna
  44.  
  45. [instant_split] = request 1 -> request 2
  46.  
  47. [split] = permintaan 1 -> penundaan -> permintaan 2
  48.  
  49. [delay_split] = permintaan 1 -> lebih banyak penundaan -> permintaan 2
  50.  
  51. [repeat_split] = request 1 + request 1 -> request 2
  52.  
  53. [reverse_split] = request 1 + request 2 -> request 2
  54.  
  55. [split-x] = request 1 + request 2 -> delay -> request 2
  56.  
  57. [x-split] = permintaan 1 + permintaan 2 -> permintaan 2
  58.  
  59. Metode Payload
  60.  
  61. Normal = CONNECT [host_port] [protokol] [crlf] Host: domain.com [crlf] [crlf]
  62.  
  63. Suntikan Depan = DAPATKAN http://domain.com/ HTTP / 1.1 [crlf] Host: domain.com [crlf] [crlf] CONNECT [host_port] [protokol] [crlf] [crlf]
  64.  
  65. Suntikan Kembali = HUBUNGKAN [host_port] HTTP / 1.1 [crlf] [crlf] DAPATKAN http://domain.com/ [protokol] [crlf] Host: domain.com [crlf] [crlf]
  66.  
  67. Front Query = CONNECT domain.com @ [host_port] [crlf] DAPATKAN http://domain.com/ [protokol] [crlf] Host: domain.com [crlf] [crlf]
  68.  
  69. Permintaan Kembali = CONNECT [host_port] @ domain.com [crlf] DAPATKAN http://domain.com/ [protokol] [crlf] Host: domain.com [crlf] [crlf]
  70.  
  71. silakan pelajari payload sendiri 🙂
  72. Berbagi itu indah....
  73. Semoga bermanfaat
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement