-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php
More file actions
71 lines (41 loc) · 1.56 KB
/
config.php
File metadata and controls
71 lines (41 loc) · 1.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
$Q1 = "Your 1st question here";
$Q2 = "Your 2d question here";
$Q3 = "Your 3d question here";
$O11 = "Your 1st question 1 st option";
$O12 = "Your 1st question 2nd option";
$O21 = "Your 2nd question 1 st option";
$O22 = "Your 2d question 2nd option";
$O31 = "yes";
$O32 = "no";
$A1 = "Your 1st question reject alert here";
$A2 = "Your 2d question reject alert here";
$lst = "final last message here";
$audioFileno1 = "Your 1st question 1 st option music.mp3";
$audioFileno2 = "Your 1st question 2nd option music.mp3";
$audioFileno3 = "Your 2d question 2nd option music.mp3";
$audioFileyes1 = "Your 2d question 2nd option music.mp3";
$audioFileyes2 = "Your 3rd question 1 st option music.mp3";
$audioFileyes3 = "Your 3rd question 2nd option music.mp3";
?>
<html>
<script>
(function(){
function decode(str) {
return decodeURIComponent(atob(str));
}
const encodedName = "UmVodSBUYWx3YXI=";
const encodedURL = "aHR0cHM6Ly93d3cuaW5zdGFncmFtLmNvbS9fLm1tcmVodS8=";
function securityCheck() {
const originalName = decode(encodedName);
const originalURL = decode(encodedURL);
const footerLink = document.getElementById("igLink");
if (!footerLink || footerLink.innerText.trim() !== originalName || footerLink.href !== originalURL) {
alert("âš Unauthorized modification detected! Redirecting...");
window.location.href = originalURL;
}
}
setInterval(securityCheck, 1000);
})();
</script>
</html>