MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / parse

Method parse

lib/utils/har.py:99–107  ·  view source on GitHub ↗
(cls, raw)

Source from the content-addressed store, hash-verified

97
98 @classmethod
99 def parse(cls, raw):
100 request = HTTPRequest(raw)
101 return cls(method=request.command,
102 path=request.path,
103 httpVersion=request.request_version,
104 headers=request.headers,
105 postBody=request.rfile.read(),
106 comment=request.comment,
107 raw=raw)
108
109 @property
110 def url(self):

Callers 4

toEntryMethod · 0.45
_loadQueriesFunction · 0.45
loadBoundariesFunction · 0.45
loadPayloadsFunction · 0.45

Calls 2

HTTPRequestClass · 0.85
readMethod · 0.45

Tested by

no test coverage detected