m0m0x01d 8.0.0 → 10.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +1 -1
- package/redirect.svg.asp +1 -0
- package/redirect.svg.aspx +1 -0
- package/redirect.svg.cfm +1 -0
- package/redirect.svg.cs +1 -0
- package/redirect.svg.cshtml +1 -0
- package/redirect.svg.js +1 -0
- package/redirect.svg.jsp +3 -0
- package/redirect.svg.pl +1 -0
- package/redirect.svg.py +2 -0
- package/redirect.svg.rb +1 -0
- package/redirect.svg.xml +3 -0
- package/redirect.svg.xsl +14 -0
package/package.json
CHANGED
package/redirect.svg.asp
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<% Response.Redirect("https://example.com") %>
|
@@ -0,0 +1 @@
|
|
1
|
+
<% Response.Redirect("https://example.com") %>
|
package/redirect.svg.cfm
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
<cflocation url="https://example.com">
|
package/redirect.svg.cs
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
return Redirect("https://example.com");
|
@@ -0,0 +1 @@
|
|
1
|
+
return Redirect("https://example.com");
|
package/redirect.svg.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
res.redirect('https://example.com');
|
package/redirect.svg.jsp
ADDED
package/redirect.svg.pl
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
print "Location: https://example.com\n\n";
|
package/redirect.svg.py
ADDED
package/redirect.svg.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
redirect_to "https://example.com"
|
package/redirect.svg.xml
ADDED
package/redirect.svg.xsl
ADDED
@@ -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>
|