프로그래밍 도서관/Python 리버싱 프로그래밍 스터디

sulley

0x00 2022. 12. 23. 13:24

from sulley import*

s_initialize("HTTP BASIC")
s_group("HTTP BASIC")
s_group("vervs", values=["GET", "HEAD", "POST", "TRACE"])


if s_block_start("body", group="verbs"):
    s_delim(" ")
    s_delim("/")
    s_string("index.html")
    s_delim(" ")
    s_string("HTTP")
    s_delim("/")
    s_string("1")
    s_delim(".")
    s_string("1")

    s_static("\r\r\r\r")
s_block_end("body")


'프로그래밍 도서관 > Python 리버싱 프로그래밍 스터디' 카테고리의 다른 글

IOCTL_DUMP + IOCTL_FUZZING(END)  (1) 2023.01.03
IOCTL fuzzer  (0) 2022.12.31
file_fuzzer(end)  (0) 2022.11.27
File_fuzzing (2)  (1) 2022.11.27
file_fuzzer interface(1)  (0) 2022.11.23