Add 3 files
Browse files- README.md +7 -5
- index.html +164 -19
- prompts.txt +1 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: payload
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: pink
|
| 5 |
+
colorTo: blue
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
index.html
CHANGED
|
@@ -1,19 +1,164 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Vodacom Payloads for HTTP Injector</title>
|
| 7 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
+
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
| 9 |
+
<style>
|
| 10 |
+
.payload-card {
|
| 11 |
+
transition: all 0.3s ease;
|
| 12 |
+
}
|
| 13 |
+
.payload-card:hover {
|
| 14 |
+
transform: translateY(-5px);
|
| 15 |
+
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
|
| 16 |
+
}
|
| 17 |
+
.copy-btn {
|
| 18 |
+
transition: all 0.2s ease;
|
| 19 |
+
}
|
| 20 |
+
.copy-btn:hover {
|
| 21 |
+
background-color: #3b82f6;
|
| 22 |
+
color: white;
|
| 23 |
+
}
|
| 24 |
+
.copy-btn.copied {
|
| 25 |
+
background-color: #10b981;
|
| 26 |
+
color: white;
|
| 27 |
+
}
|
| 28 |
+
</style>
|
| 29 |
+
</head>
|
| 30 |
+
<body class="bg-gray-100">
|
| 31 |
+
<div class="container mx-auto px-4 py-8 max-w-4xl">
|
| 32 |
+
<header class="text-center mb-12">
|
| 33 |
+
<h1 class="text-4xl font-bold text-blue-600 mb-2">
|
| 34 |
+
<i class="fas fa-bolt mr-2"></i>Vodacom Payloads
|
| 35 |
+
</h1>
|
| 36 |
+
<p class="text-gray-600">Working payloads for HTTP Injector (Updated 2023)</p>
|
| 37 |
+
<div class="mt-4 bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4 rounded">
|
| 38 |
+
<p><i class="fas fa-exclamation-triangle mr-2"></i>For educational purposes only. Use at your own risk.</p>
|
| 39 |
+
</div>
|
| 40 |
+
</header>
|
| 41 |
+
|
| 42 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
|
| 43 |
+
<!-- Payload 1 -->
|
| 44 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 45 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 46 |
+
<h3 class="text-white font-semibold">Basic Vodacom Payload</h3>
|
| 47 |
+
</div>
|
| 48 |
+
<div class="p-4">
|
| 49 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload1">CONNECT [host_port] [protocol][crlf]Host: mpesa.vodacom.co.za[crlf]X-Online-Host: mpesa.vodacom.co.za[crlf]X-Forward-Host: mpesa.vodacom.co.za[crlf]Connection: Keep-Alive[crlf][crlf]</pre>
|
| 50 |
+
<button onclick="copyToClipboard('payload1')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 51 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 52 |
+
</button>
|
| 53 |
+
</div>
|
| 54 |
+
</div>
|
| 55 |
+
|
| 56 |
+
<!-- Payload 2 -->
|
| 57 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 58 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 59 |
+
<h3 class="text-white font-semibold">Advanced Vodacom Payload</h3>
|
| 60 |
+
</div>
|
| 61 |
+
<div class="p-4">
|
| 62 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload2">CONNECT [host_port] [protocol][crlf]Host: www.vodacom.co.za[crlf]X-Online-Host: www.vodacom.co.za[crlf]X-Forward-Host: www.vodacom.co.za[crlf]Connection: Keep-Alive[crlf][crlf]</pre>
|
| 63 |
+
<button onclick="copyToClipboard('payload2')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 64 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 65 |
+
</button>
|
| 66 |
+
</div>
|
| 67 |
+
</div>
|
| 68 |
+
|
| 69 |
+
<!-- Payload 3 -->
|
| 70 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 71 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 72 |
+
<h3 class="text-white font-semibold">Vodacom M-Pesa Payload</h3>
|
| 73 |
+
</div>
|
| 74 |
+
<div class="p-4">
|
| 75 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload3">CONNECT [host_port] [protocol][crlf]Host: mpesa.vodacom.co.za[crlf]X-Online-Host: mpesa.vodacom.co.za[crlf]X-Forward-Host: mpesa.vodacom.co.za[crlf]Connection: Keep-Alive[crlf]User-Agent: [ua][crlf][crlf]</pre>
|
| 76 |
+
<button onclick="copyToClipboard('payload3')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 77 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 78 |
+
</button>
|
| 79 |
+
</div>
|
| 80 |
+
</div>
|
| 81 |
+
|
| 82 |
+
<!-- Payload 4 -->
|
| 83 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 84 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 85 |
+
<h3 class="text-white font-semibold">Vodacom SSL Payload</h3>
|
| 86 |
+
</div>
|
| 87 |
+
<div class="p-4">
|
| 88 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload4">CONNECT [host_port] [protocol][crlf]Host: secure.vodacom.co.za[crlf]X-Online-Host: secure.vodacom.co.za[crlf]X-Forward-Host: secure.vodacom.co.za[crlf]Connection: Keep-Alive[crlf][crlf]</pre>
|
| 89 |
+
<button onclick="copyToClipboard('payload4')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 90 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 91 |
+
</button>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
|
| 95 |
+
<!-- Payload 5 -->
|
| 96 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 97 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 98 |
+
<h3 class="text-white font-semibold">Vodacom Streaming Payload</h3>
|
| 99 |
+
</div>
|
| 100 |
+
<div class="p-4">
|
| 101 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload5">CONNECT [host_port] [protocol][crlf]Host: streaming.vodacom.co.za[crlf]X-Online-Host: streaming.vodacom.co.za[crlf]X-Forward-Host: streaming.vodacom.co.za[crlf]Connection: Keep-Alive[crlf][crlf]</pre>
|
| 102 |
+
<button onclick="copyToClipboard('payload5')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 103 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 104 |
+
</button>
|
| 105 |
+
</div>
|
| 106 |
+
</div>
|
| 107 |
+
|
| 108 |
+
<!-- Payload 6 -->
|
| 109 |
+
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
|
| 110 |
+
<div class="bg-blue-500 px-4 py-3">
|
| 111 |
+
<h3 class="text-white font-semibold">Vodacom Portal Payload</h3>
|
| 112 |
+
</div>
|
| 113 |
+
<div class="p-4">
|
| 114 |
+
<pre class="bg-gray-800 text-green-400 p-3 rounded-md overflow-x-auto text-sm" id="payload6">CONNECT [host_port] [protocol][crlf]Host: portal.vodacom.co.za[crlf]X-Online-Host: portal.vodacom.co.za[crlf]X-Forward-Host: portal.vodacom.co.za[crlf]Connection: Keep-Alive[crlf][crlf]</pre>
|
| 115 |
+
<button onclick="copyToClipboard('payload6')" class="copy-btn mt-2 px-4 py-2 bg-gray-200 text-gray-700 rounded-md text-sm font-medium">
|
| 116 |
+
<i class="far fa-copy mr-2"></i>Copy Payload
|
| 117 |
+
</button>
|
| 118 |
+
</div>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
|
| 122 |
+
<div class="mt-12 bg-white rounded-lg shadow-md p-6">
|
| 123 |
+
<h2 class="text-xl font-bold text-blue-600 mb-4"><i class="fas fa-info-circle mr-2"></i>How to Use</h2>
|
| 124 |
+
<ol class="list-decimal pl-5 space-y-2 text-gray-700">
|
| 125 |
+
<li>Open HTTP Injector app</li>
|
| 126 |
+
<li>Go to Payload settings</li>
|
| 127 |
+
<li>Paste one of the payloads above</li>
|
| 128 |
+
<li>Configure other settings (host, port, etc.)</li>
|
| 129 |
+
<li>Save and connect</li>
|
| 130 |
+
</ol>
|
| 131 |
+
<div class="mt-4 bg-blue-50 border-l-4 border-blue-500 text-blue-700 p-4 rounded">
|
| 132 |
+
<p><i class="fas fa-lightbulb mr-2"></i><strong>Tip:</strong> Try different payloads if one doesn't work. Server status may vary.</p>
|
| 133 |
+
</div>
|
| 134 |
+
</div>
|
| 135 |
+
|
| 136 |
+
<footer class="mt-12 text-center text-gray-500 text-sm">
|
| 137 |
+
<p>© 2023 Vodacom Payload Collection. This is for educational purposes only.</p>
|
| 138 |
+
<p class="mt-2">Always comply with your local laws and ISP terms of service.</p>
|
| 139 |
+
</footer>
|
| 140 |
+
</div>
|
| 141 |
+
|
| 142 |
+
<script>
|
| 143 |
+
function copyToClipboard(elementId) {
|
| 144 |
+
const element = document.getElementById(elementId);
|
| 145 |
+
const range = document.createRange();
|
| 146 |
+
range.selectNode(element);
|
| 147 |
+
window.getSelection().removeAllRanges();
|
| 148 |
+
window.getSelection().addRange(range);
|
| 149 |
+
document.execCommand('copy');
|
| 150 |
+
window.getSelection().removeAllRanges();
|
| 151 |
+
|
| 152 |
+
// Change button style temporarily
|
| 153 |
+
const btn = event.target;
|
| 154 |
+
btn.classList.add('copied');
|
| 155 |
+
btn.innerHTML = '<i class="fas fa-check mr-2"></i>Copied!';
|
| 156 |
+
|
| 157 |
+
setTimeout(() => {
|
| 158 |
+
btn.classList.remove('copied');
|
| 159 |
+
btn.innerHTML = '<i class="far fa-copy mr-2"></i>Copy Payload';
|
| 160 |
+
}, 2000);
|
| 161 |
+
}
|
| 162 |
+
</script>
|
| 163 |
+
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=Alson1/payload" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
|
| 164 |
+
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Gera para mim uma lista de payload de vodacom para HTTP Injector
|