m0m0x01d 9.0.0 → 11.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": "9.0.0",
3
+ "version": "11.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,15 @@
1
+ <!DOCTYPE HTML>
2
+ <html lang="en-US">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta http-equiv="refresh" content="0; url=http://example.com">
6
+ <script type="text/javascript">
7
+ window.location.href = "http://example.com"
8
+ </script>
9
+ <title>Page Redirection</title>
10
+ </head>
11
+ <body>
12
+ <!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
13
+ If you are not redirected automatically, follow this <a href='http://example.com'>link to example</a>.
14
+ </body>
15
+ </html>