-
Notifications
You must be signed in to change notification settings - Fork 3
/
screenshot.html
65 lines (61 loc) · 2.92 KB
/
screenshot.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
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
<!DOCTYPE html>
<!--
.d8888b. 888 .d8888b.
d88P Y88b 888 d88P Y88b
Y88b. 888 Y88b.
"Y888b. 888 88888888b. "Y888b. .d8888b888d888 .d88b. .d88b. 88888b.
"Y88b.888 888888 "88b "Y88b.d88P" 888P" d8P Y8bd8P Y8b888 "88b
"888888 888888 888 "888888 888 8888888888888888888 888
Y88b d88PY88b 888888 d88PY88b d88PY88b. 888 Y8b. Y8b. 888 888
"Y8888P" "Y8888888888P" "Y8888P" "Y8888P888 "Y8888 "Y8888 888 888
coded by @momenbassel -->
<html>
<head>
<title> SubScreen - screenshot subdomains!</title>
<meta charset="UTF-8">
<script src="./js/jquery.js"></script>
<script src="./js/main.js"></script>
<script src="./js/screen.js"></script>
<script src="./js/popper.js" ></script>
<script src="./js/bootstrap.min.js"></script>
<link rel = "icon" type = "image/png" href = "./css/logo.png">
<link rel="stylesheet" href="./css/bootstrap.min.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<p class="text-center title">SubScreen - Screenshot subdomains!</p>
<div class="form">
<div class="form-group row">
<label for="list_urls" class="col-sm-2 col-form-label">Subdomains:</label>
<div class="col-sm-10">
<textarea class="form-control" name="list_urls" id="list_urls" rows="5" placeholder="http://subdomain.maindomain.tld" spellcheck="false"></textarea>
</div>
</div>
<div class="form-group row">
<label for="list_urls" class="col-sm-2 col-form-label">urlbox.io API key:</label>
<div class="col-sm-10">
<input class="APIToken form-control" value="" placeholder="urlbox.io API key (Leave Empty For Manual Viewing)">
</div>
<input type="submit" class="btn btn-primary form-control btn-lg" onclick="clickedView()" value="Start"></input>
</div>
<!-- <input value="manual" class="btn btn-primary" type="button" onclick="open_all();" id="button"> </br> -->
<hr color="white">
<p class="text-center title">Visual results</p>
<p class="text-center title">You have to enter the token to view screenshot/s of subdomain/s entered</p>
<div class="imageplace d-flex flex-row flex-wrap justify-content-center"></div>
<script>
function clickedView() {
let token = getAPItoken();
if (!token) {
openAll();
return;
};
if(confirm("minify the screenshots? (useful for a large number of hosts)")) {
getImage(token,450,200);
}else{
getImage(token);
}
}
</script>
</body>
</html>