-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathtemplate.html
79 lines (68 loc) · 2 KB
/
template.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!-- 2018.11.23 11:07:22 by Tr0y -->
<title>Github Leak Report</title>
{% for keyword, value in results.items() %}
<h1>命中关键字:{{ keyword }}</h1>
<h2>新发现泄露(Level 3)</h2>
<table border="0" cellpadding="5" cellspacing="1" bgcolor="black">
<tr align="center" bgcolor="white">
<td>ID</td>
<td>File SHA</td>
<td>Code Location</td>
<td>Last Record Time</td>
</tr>
{% for item in value[0] %}
<tr align="center" bgcolor="white">
<td>{{ loop.index }}</td>
<td>{{ item[1] }}</td>
<td><a href={{ item[0] }}> {{ item[2] }} </a></td>
<td>{{ item[7] }}</a></td>
</tr>
{% endfor %}
</table>
<h2>更新泄露(Level 2)</h2>
<table border="0" cellpadding="5" cellspacing="1" bgcolor="black">
<tr align="center" bgcolor="white">
<td>ID</td>
<td>File SHA</td>
<td>Code Location</td>
<td>Last Record Time</td>
</tr>
{% for item in value[1] %}
<tr align="center" bgcolor="white">
<td>{{ loop.index }}</td>
<td>{{ item[1] }}</td>
<td><a href={{ item[0] }}> {{ item[2] }} </a></td>
<td>{{ item[7] }}</a></td>
</tr>
{% endfor %}
</table>
<h2>疑似误报(Level 1)</h2>
<table border="0" cellpadding="5" cellspacing="1" bgcolor="black">
<tr align="center" bgcolor="white">
<td>ID</td>
<td>File SHA</td>
<td>Code Location</td>
<td>Last Record Time</td>
</tr>
{% for item in value[2] %}
<tr align="center" bgcolor="white">
<td>{{ loop.index }}</td>
<td>{{ item[1] }}</td>
<td><a href={{ item[0] }}> {{ item[2] }} </a></td>
<td>{{ item[7] }}</a></td>
</tr>
{% endfor %}
</table>
<br>
<hr size=3 noshade/>
{% endfor %}
<!--
0: url
1: sha
2: repository
3: keyword
4: filename
5: level
6: update_time
7: last_record_time
-->