-
Notifications
You must be signed in to change notification settings - Fork 29
/
index.html
91 lines (79 loc) · 2.51 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
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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Search utility for IppSec's YouTube videos">
<meta name="keywords" content="ippsec, hacking, pentesting, hackthebox, htb">
<meta name="author" content="IppSec">
<link rel="stylesheet" href="style.css">
<title>IppSec - Search</title>
</head>
<body class="color-no-search">
<div class="container">
<div class="search">
<div class="header">
<h1>IPPSEC</h1>
<div class="social">
<a href="https://twitter.com/ippsec">Twitter</a>
•
<a href="/contributions/">My Contributions</a>
•
<a href="https://www.youtube.com/channel/UCa6eh7gCkpPo5XXUDfygQQA">Youtube</a>
•
<a href="https://calendar.google.com/calendar/embed?src=c_bveiajvmten0cfdhv43napka00%40group.calendar.google.com">Stream Calendar</a>
</div>
</div>
<div class="query">
<form class="searchForm" action="#">
<input type="text" class="search" placeholder="ENTER SEARCH TERM" autocomplete="false" autofocus>
</form>
</div>
<div class="results">
<br>
<div class="noResults">
<h2>No Results Found</h2>
</div>
<div class="results-table">
<table class="results">
<thead>
<tr>
<td width="33%">
Video/Course
</td>
<td>
Description
</td>
<!--
<td>
Link
</td>-->
</tr>
</thead>
<tbody class="results">
</tbody>
</table>
</div>
</div>
<div class="subfooter">
<h3>Please Subscribe to My <a href="https://youtube.com/ippsec">YouTube</a></h3>
</div>
<div class="sponsor">
<!--
<p><b>Be sure to checkout Nahamcon - June 15-17 2023<b></p>
<a href="https://nahamcon.com"><img src="sponsors/NahamCon2023.png" width="800"><img></a>
--></div>
</div>
<div class="footer">
© ippSec and contributors <script>document.write(/\d{4}/.exec(Date())[0])</script>
<br>
Design by: <a href="https://twitter.com/hexf_me">@HexF_me</a>,
Original PoC: <a href="https://twitter.com/shell_ock">@Shell_ock</a>, <br />
Theme Inspiration: <a href="https://howsecureismypassword.net">DashLane - HowSecureIsMyPassword</a>
<br>
Found a bug? File it or fix it <a href="https://github.com/IppSec/ippsec.github.io/issues">here</a>
</div>
</div>
<script src="logic.js"></script>
</body>
</html>