MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / cookie_is_encoded

Function cookie_is_encoded

thirdparty/bottle/bottle.py:3482–3486  ·  view source on GitHub ↗

Return True if the argument looks like a encoded cookie.

(data)

Source from the content-addressed store, hash-verified

3480
3481
3482def cookie_is_encoded(data):
3483 """ Return True if the argument looks like a encoded cookie."""
3484 depr(0, 13, "cookie_is_encoded() will be removed soon.",
3485 "Do not use this API directly.")
3486 return bool(data.startswith(tob('!')) and tob('?') in data)
3487
3488
3489def html_escape(string):

Callers 1

cookie_decodeFunction · 0.85

Calls 2

deprFunction · 0.85
tobFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…