コード例 #1
0
def analyzeDeleteRequest(flow, results):
    checkDeleteURL(flow, results)
    checkRequestHeaders(flow, flow.requestHeaders, results)
    AppDefault.checkRequestHeadersDefault(flow, flow.requestHeaders, results)
    checkResponseHeaders(flow, flow.responseHeaders, results)
    AppDefault.checkResponseHeadersDefault(flow, flow.responseHeaders, results)
    AppDefault.analyzeDeleteRequestDefault(flow, results)
コード例 #2
0
def analyzePutRequest(flow, results):
    checkPutURL(flow, results)
    checkRequestHeaders(flow, flow.requestHeaders, results)
    AppDefault.checkRequestHeadersDefault(flow, flow.requestHeaders, results)
    checkResponseHeaders(flow, flow.responseHeaders, results)
    AppDefault.checkResponseHeadersDefault(flow, flow.responseHeaders, results)
    AppDefault.analyzePutRequestDefault(flow, results)