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

Function _parse_qsl

thirdparty/bottle/bottle.py:3439–3448  ·  view source on GitHub ↗
(qs)

Source from the content-addressed store, hash-verified

3437
3438
3439def _parse_qsl(qs):
3440 r = []
3441 for pair in qs.split('&'):
3442 if not pair: continue
3443 nv = pair.split('=', 1)
3444 if len(nv) != 2: nv.append('')
3445 key = urlunquote(nv[0].replace('+', ' '))
3446 value = urlunquote(nv[1].replace('+', ' '))
3447 r.append((key, value))
3448 return r
3449
3450
3451def _lscmp(a, b):

Callers 2

queryMethod · 0.85
POSTMethod · 0.85

Calls 2

appendMethod · 0.45
replaceMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…