Current Path: > > opt > alt > python38 > lib > > python3.8 > site-packages > sentry_sdk > integrations
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__pycache__ | Directory | - | - | |
django | Directory | - | - | |
__init__.py | File | 4236 bytes | April 05 2019 23:15:16. | |
_wsgi_common.py | File | 3666 bytes | April 05 2019 23:15:16. | |
aiohttp.py | File | 3889 bytes | April 05 2019 23:15:16. | |
argv.py | File | 894 bytes | April 05 2019 23:15:16. | |
atexit.py | File | 1490 bytes | April 05 2019 23:15:16. | |
aws_lambda.py | File | 6758 bytes | April 05 2019 23:15:16. | |
bottle.py | File | 5527 bytes | April 05 2019 23:15:16. | |
celery.py | File | 4423 bytes | April 05 2019 23:15:16. | |
dedupe.py | File | 1085 bytes | April 05 2019 23:15:16. | |
excepthook.py | File | 1335 bytes | April 05 2019 23:15:16. | |
flask.py | File | 7272 bytes | April 05 2019 23:15:16. | |
gnu_backtrace.py | File | 3008 bytes | April 05 2019 23:15:16. | |
logging.py | File | 6019 bytes | April 05 2019 23:15:16. | |
modules.py | File | 1239 bytes | April 05 2019 23:15:16. | |
pyramid.py | File | 5914 bytes | April 05 2019 23:15:16. | |
rq.py | File | 3273 bytes | April 05 2019 23:15:16. | |
sanic.py | File | 7065 bytes | April 05 2019 23:15:16. | |
serverless.py | File | 1238 bytes | April 05 2019 23:15:16. | |
stdlib.py | File | 1869 bytes | April 05 2019 23:15:16. | |
threading.py | File | 1597 bytes | April 05 2019 23:15:16. | |
tornado.py | File | 6387 bytes | April 05 2019 23:15:16. | |
wsgi.py | File | 7299 bytes | April 05 2019 23:15:16. |
import json from sentry_sdk.hub import Hub, _should_send_default_pii from sentry_sdk.utils import AnnotatedValue from sentry_sdk._compat import text_type if False: from typing import Any from typing import Dict from typing import Optional from typing import Union class RequestExtractor(object): def __init__(self, request): # type: (Any) -> None self.request = request def extract_into_event(self, event): # type: (Dict[str, Any]) -> None client = Hub.current.client if client is None: return data = None # type: Optional[Union[AnnotatedValue, Dict[str, Any]]] content_length = self.content_length() request_info = event.setdefault("request", {}) if _should_send_default_pii(): request_info["cookies"] = dict(self.cookies()) bodies = client.options["request_bodies"] if ( bodies == "never" or (bodies == "small" and content_length > 10 ** 3) or (bodies == "medium" and content_length > 10 ** 4) ): data = AnnotatedValue( "", {"rem": [["!config", "x", 0, content_length]], "len": content_length}, ) else: parsed_body = self.parsed_body() if parsed_body is not None: data = parsed_body elif self.raw_data(): data = AnnotatedValue( "", {"rem": [["!raw", "x", 0, content_length]], "len": content_length}, ) else: return request_info["data"] = data def content_length(self): # type: () -> int try: return int(self.env().get("CONTENT_LENGTH", 0)) except ValueError: return 0 def cookies(self): raise NotImplementedError() def raw_data(self): raise NotImplementedError() def form(self): raise NotImplementedError() def parsed_body(self): # type: () -> Optional[Dict[str, Any]] form = self.form() files = self.files() if form or files: data = dict(form.items()) for k, v in files.items(): size = self.size_of_file(v) data[k] = AnnotatedValue( "", {"len": size, "rem": [["!raw", "x", 0, size]]} ) return data return self.json() def is_json(self): # type: () -> bool return _is_json_content_type(self.env().get("CONTENT_TYPE")) def json(self): # type: () -> Optional[Any] try: if self.is_json(): raw_data = self.raw_data() if not isinstance(raw_data, text_type): raw_data = raw_data.decode("utf-8") return json.loads(raw_data) except ValueError: pass return None def files(self): raise NotImplementedError() def size_of_file(self, file): raise NotImplementedError() def env(self): raise NotImplementedError() def _is_json_content_type(ct): # type: (str) -> bool mt = (ct or "").split(";", 1)[0] return ( mt == "application/json" or (mt.startswith("application/")) and mt.endswith("+json") ) def _filter_headers(headers): # type: (Dict[str, str]) -> Dict[str, str] if _should_send_default_pii(): return headers return { k: v for k, v in headers.items() if k.lower().replace("_", "-") not in ("set-cookie", "cookie", "authorization") }
SILENT KILLER Tool