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

Method files

thirdparty/bottle/bottle.py:1654–1664  ·  view source on GitHub ↗

File uploads parsed from `multipart/form-data` encoded POST or PUT request body. The values are instances of :class:`FileUpload`.

(self)

Source from the content-addressed store, hash-verified

1652
1653 @DictProperty('environ', 'bottle.request.files', read_only=True)
1654 def files(self):
1655 """ File uploads parsed from `multipart/form-data` encoded POST or PUT
1656 request body. The values are instances of :class:`FileUpload`.
1657
1658 """
1659 files = FormsDict()
1660 files.recode_unicode = self.POST.recode_unicode
1661 for name, item in self.POST.allitems():
1662 if isinstance(item, FileUpload):
1663 files[name] = item
1664 return files
1665
1666 @DictProperty('environ', 'bottle.request.json', read_only=True)
1667 def json(self):

Callers

nothing calls this directly

Calls 2

FormsDictClass · 0.85
allitemsMethod · 0.80

Tested by

no test coverage detected