Mercurial > libervia-web
view libervia/web/pages/forums/topics/new/page_meta.py @ 1598:86c7a3a625d5
server: always start a new session on connection:
The session was kept when a user was connecting from service profile (but not from other
profiles), this was leading to session fixation vulnerability (an attacker on the same
machine could get service profile session cookie, and use it when a victim would log-in).
This patch fixes it by always starting a new session on connection.
fix 443
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 23 Feb 2024 13:35:24 +0100 |
parents | eb00d593801d |
children |
line wrap: on
line source
#!/usr/bin/env python3 from libervia.web.server.constants import Const as C from libervia.backend.core.i18n import D_ from libervia.backend.core.log import getLogger log = getLogger(__name__) name = "forum_topic_new" label = D_("New Topic") access = C.PAGES_ACCESS_PROFILE template = "blog/publish.html" async def prepare_render(self, request): template_data = request.template_data template_data.update({ "post_form_id": "forum_topic_edit", "publish_title": D_("New Forum Topic"), "title_label": D_("Topic"), "title_required": True, "body_label": D_("Message"), "no_tabs": True, }) async def on_data_post(self, request): profile = self.get_profile(request) if profile is None: self.page_error(request, C.HTTP_FORBIDDEN) rdata = self.get_r_data(request) service = rdata["service"].full() if rdata["service"] else "" node = rdata["node"] title, body = self.get_posted_data(request, ("title", "body")) title = title.strip() body = body.strip() if not title or not body: self.page_error(request, C.HTTP_BAD_REQUEST) topic_data = {"title": title, "content": body} try: await self.host.bridge_call( "forum_topic_create", service, node, topic_data, profile ) except Exception as e: if "forbidden" in str(e): self.page_error(request, 401) else: raise e rdata["post_redirect_page"] = (self.get_page_by_name("forum_topics"), service, node)