Skip to content

Instantly share code, notes, and snippets.

View W01fh4cker's full-sized avatar
:octocat:

W01fh4cker W01fh4cker

:octocat:
View GitHub Profile
@W01fh4cker
W01fh4cker / evilServer.py
Created February 27, 2024 14:31
CVE-2024-23334
from aiohttp import web
async def index(request):
return web.Response(text="Hello, World!")
app = web.Application()
app.router.add_routes([
web.static("/static", "static/", follow_symlinks=True),
])
app.router.add_get('/', index)