payload / index.html
Alson1's picture
Add 3 files
fc28aac verified
Raw
History Blame Contribute Delete
9.7 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vodacom Payloads for HTTP Injector</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
.payload-card {
transition: all 0.3s ease;
}
.payload-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.copy-btn {
transition: all 0.2s ease;
}
.copy-btn:hover {
background-color: #3b82f6;
color: white;
}
.copy-btn.copied {
background-color: #10b981;
color: white;
}
</style>
</head>
<body class="bg-gray-100">
<div class="container mx-auto px-4 py-8 max-w-4xl">
<header class="text-center mb-12">
<h1 class="text-4xl font-bold text-blue-600 mb-2">
<i class="fas fa-bolt mr-2"></i>Vodacom Payloads
</h1>
<p class="text-gray-600">Working payloads for HTTP Injector (Updated 2023)</p>
<div class="mt-4 bg-yellow-100 border-l-4 border-yellow-500 text-yellow-700 p-4 rounded">
<p><i class="fas fa-exclamation-triangle mr-2"></i>For educational purposes only. Use at your own risk.</p>
</div>
</header>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<!-- Payload 1 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Basic Vodacom Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
<!-- Payload 2 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Advanced Vodacom Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
<!-- Payload 3 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Vodacom M-Pesa Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
<!-- Payload 4 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Vodacom SSL Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
<!-- Payload 5 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Vodacom Streaming Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
<!-- Payload 6 -->
<div class="payload-card bg-white rounded-lg shadow-md overflow-hidden">
<div class="bg-blue-500 px-4 py-3">
<h3 class="text-white font-semibold">Vodacom Portal Payload</h3>
</div>
<div class="p-4">
<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>
<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">
<i class="far fa-copy mr-2"></i>Copy Payload
</button>
</div>
</div>
</div>
<div class="mt-12 bg-white rounded-lg shadow-md p-6">
<h2 class="text-xl font-bold text-blue-600 mb-4"><i class="fas fa-info-circle mr-2"></i>How to Use</h2>
<ol class="list-decimal pl-5 space-y-2 text-gray-700">
<li>Open HTTP Injector app</li>
<li>Go to Payload settings</li>
<li>Paste one of the payloads above</li>
<li>Configure other settings (host, port, etc.)</li>
<li>Save and connect</li>
</ol>
<div class="mt-4 bg-blue-50 border-l-4 border-blue-500 text-blue-700 p-4 rounded">
<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>
</div>
</div>
<footer class="mt-12 text-center text-gray-500 text-sm">
<p>© 2023 Vodacom Payload Collection. This is for educational purposes only.</p>
<p class="mt-2">Always comply with your local laws and ISP terms of service.</p>
</footer>
</div>
<script>
function copyToClipboard(elementId) {
const element = document.getElementById(elementId);
const range = document.createRange();
range.selectNode(element);
window.getSelection().removeAllRanges();
window.getSelection().addRange(range);
document.execCommand('copy');
window.getSelection().removeAllRanges();
// Change button style temporarily
const btn = event.target;
btn.classList.add('copied');
btn.innerHTML = '<i class="fas fa-check mr-2"></i>Copied!';
setTimeout(() => {
btn.classList.remove('copied');
btn.innerHTML = '<i class="far fa-copy mr-2"></i>Copy Payload';
}, 2000);
}
</script>
<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>
</html>