This repository was archived by the owner on Nov 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
66 lines (62 loc) · 2.27 KB
/
index.php
File metadata and controls
66 lines (62 loc) · 2.27 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
<!DOCTYPE html>
<html>
<head>
<title>ICR Fuzzer</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
.btn {
background: #b4b7b8;
background-image: -webkit-linear-gradient(top, #b4b7b8, #5d6061);
background-image: -moz-linear-gradient(top, #b4b7b8, #5d6061);
background-image: -ms-linear-gradient(top, #b4b7b8, #5d6061);
background-image: -o-linear-gradient(top, #b4b7b8, #5d6061);
background-image: linear-gradient(to bottom, #b4b7b8, #5d6061);
-webkit-border-radius: 28;
-moz-border-radius: 28;
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 10px 20px 10px 20px;
text-decoration: none;
}
.btn:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
</style>
</head>
<body>
<h1>This website allows you to create random internet connection records</h1>
<p>It does this by opening 100's of websites at random from Alexa's top 1 million</p>
<p>To begin fuzzing your ICR's, click the button below
<div align="center">
<form action="index.php" method="get">
<input type="hidden" name="act" value="run">
<input type="submit" class="btn" value="Make some ICR's">
</form>
</div></p>
If you wish to find out more about ICR's click
<a href="https://privacyinternational.org/">here</a>.</p>
<p><em>Please be aware that this site will use lots of bandwidth (around 100MB's) and memory (more than 100MB's), as it is trying to open connections to many sites. Also I take NO responsibility for the security or content of remote sites. Be aware the top 1 million sites includes sites which are NSFW, such as pornography sites, and Fox News</em></p>
</body>
</html>
<?php
if (!empty($_GET['act'])) {
$csv = array_map('str_getcsv', file('top-1000a.csv'));
for ($i=0;$i<100;++$i){
$loc = rand(1,1000);
echo "<iframe src='http://".$csv[$loc][0]."' height='10' width='10' frameborder='0' sandbox></iframe><p>".$csv[$loc][0]."</p>";
}
} else {
}
?>