-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmock_target.html
More file actions
68 lines (60 loc) · 1.75 KB
/
Copy pathmock_target.html
File metadata and controls
68 lines (60 loc) · 1.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mock Target - Bugcrowd Style</title>
<style>
body {
font-family: sans-serif;
background: #111;
color: #eee;
}
.target-group {
margin: 20px;
padding: 20px;
border: 1px solid #333;
}
.scope-table td {
padding: 10px;
border-bottom: 1px solid #444;
}
</style>
</head>
<body>
<div class="target-group">
<h3>In Scope</h3>
<table class="scope-table" data-testid="in-scope-table">
<tbody>
<tr>
<td>*.thuisbezorgd.nl</td>
<td>Website Testing</td>
</tr>
<tr>
<td>*.menulog.com.au</td>
<td>Website Testing</td>
</tr>
<tr>
<td>*.takeaway.com</td>
<td>Website Testing</td>
</tr>
<tr>
<td>plain-domain.com</td>
<td>Website Testing</td>
</tr>
<tr>
<td>
<div class="nested">
<span>api.complex-structure.io</span>
</div>
</td>
<td>API</td>
</tr>
</tbody>
</table>
</div>
<div class="other-section">
<p>Some random text mentioning test.com and example.org in a paragraph.</p>
</div>
</body>
</html>