-
Notifications
You must be signed in to change notification settings - Fork 29
/
test-cors.html
84 lines (72 loc) · 2.87 KB
/
test-cors.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
<!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="https://www.youtube.com/channel/UCa6eh7gCkpPo5XXUDfygQQA">Youtube</a>
</div>
</div>
<div class="query">
<form class="searchForm" action="#">
<input type="text" class="search" placeholder="ENTER SEARCH TERM" autocomplete="false">
</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">
<h1>Video Of The Day</h1>
<iframe width="560" height="315" src="https://www.youtube.com/embed/1UGxjqTnuyo" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<blockquote class="twitter-tweet" data-dnt="true" data-theme="dark"><p lang="en" dir="ltr">Looking for a video on a specific hacking technique/tool? Check out <a href="https://t.co/yqxaZuwoyu">https://t.co/yqxaZuwoyu</a> - Searches over 100 hours of my videos to find you the exact spot in the video you are looking for. <a href="https://t.co/S4TB8dkinI">pic.twitter.com/S4TB8dkinI</a></p>— ippsec (@ippsec) <a href="https://twitter.com/ippsec/status/1182615791910436864?ref_src=twsrc%5Etfw">October 11, 2019</a></blockquote> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</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>