mirror of
https://github.com/sonertari/SSLproxy
synced 2024-11-08 07:10:26 +00:00
8eab8d1da8
Remove docker
96 lines
2.1 KiB
JSON
96 lines
2.1 KiB
JSON
{
|
|
"comment": "Tests for HTTP POST method validation",
|
|
"configs": {
|
|
"1": {
|
|
"proto": {
|
|
"proto": "tcp"
|
|
},
|
|
"client": {
|
|
"ip": "127.0.0.1",
|
|
"port": "8185"
|
|
},
|
|
"server": {
|
|
"ip": "127.0.0.1",
|
|
"port": "9185"
|
|
}
|
|
},
|
|
"2": {
|
|
"proto": {
|
|
"proto": "ssl"
|
|
},
|
|
"client": {
|
|
"ip": "127.0.0.1",
|
|
"port": "8445"
|
|
},
|
|
"server": {
|
|
"ip": "127.0.0.1",
|
|
"port": "9445",
|
|
"crt": "server.crt",
|
|
"key": "server.key"
|
|
}
|
|
}
|
|
},
|
|
"tests": {
|
|
"1": {
|
|
"comment": "Validates POST",
|
|
"states": {
|
|
"1": {
|
|
"testend": "client",
|
|
"cmd": "send",
|
|
"payload": "POST / HTTP/1.1\r\nHost: comixwall.org\r\n\r\n"
|
|
},
|
|
"2": {
|
|
"testend": "server",
|
|
"cmd": "recv",
|
|
"payload": "POST / HTTP/1.1\r\nHost: comixwall.org\r\nConnection: close\r\n\r\n"
|
|
}
|
|
}
|
|
},
|
|
"2": {
|
|
"comment": "Does not validate POS as a method",
|
|
"states": {
|
|
"1": {
|
|
"testend": "client",
|
|
"cmd": "send",
|
|
"payload": "POS / HTTP/1.1\r\nHost: comixwall.org\r\n\r\n"
|
|
},
|
|
"2": {
|
|
"testend": "server",
|
|
"cmd": "recv",
|
|
"payload": "",
|
|
"comment": "SSLproxy should not validate method POS, so should not send any data"
|
|
}
|
|
}
|
|
},
|
|
"3": {
|
|
"comment": "Does not validate POS1 as a method",
|
|
"states": {
|
|
"1": {
|
|
"testend": "client",
|
|
"cmd": "send",
|
|
"payload": "POS1 / HTTP/1.1\r\nHost: comixwall.org\r\n\r\n"
|
|
},
|
|
"2": {
|
|
"testend": "server",
|
|
"cmd": "recv",
|
|
"payload": ""
|
|
}
|
|
}
|
|
},
|
|
"4": {
|
|
"comment": "Does not validate POST1 as a method",
|
|
"states": {
|
|
"1": {
|
|
"testend": "client",
|
|
"cmd": "send",
|
|
"payload": "POST1 / HTTP/1.1\r\nHost: comixwall.org\r\n\r\n"
|
|
},
|
|
"2": {
|
|
"testend": "server",
|
|
"cmd": "recv",
|
|
"payload": ""
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |