forked from s3131212/gotyour.pw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconverter.html
97 lines (93 loc) · 3.8 KB
/
converter.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
92
93
94
95
96
97
<!DOCTYPE HTML>
<html>
<head>
<title>編碼轉換 - Got Your PW</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="Got Your PW 是一個簡易的資安資源網站,包含常用的工具,適合初學者的入門教材,和許多值得追蹤的資安相關網站。" />
<!--[if lte IE 8]><script async src="css/ie/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script async src="js/jquery.dropotron.min.js"></script>
<script async src="js/jquery.scrollgress.min.js"></script>
<script async src="js/skel-layers.min.js"></script>
<script async src="js/init.js"></script>
<script async src="js/converter.js"></script>
<script async src="js/ga.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-wide.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="css/ie/v8.css" /><![endif]-->
</head>
<body>
<!-- Header -->
<header id="header" class="skel-layers-fixed">
<h1><a href="index.html">Got Your PW</a></h1>
<nav id="nav">
<ul>
<li><a href="index.html">首頁</a></li>
<li><a href="about.html">關於我們</a></li>
<li><a href="grab.html">抓周</a></li>
<li><a href="resources.html">資源</a></li>
<li>
<a href="" class="icon fa-angle-down">工具</a>
<ul>
<li><a href="converter.html">編碼轉換</a></li>
<li><a href="hash.html">Hash 生成</a></li>
<li><a href="encrypt.html">加密 / 解密</a></li>
</ul>
</li>
<li><a href="https://github.com/s3131212/gotyour.pw" class="button" target="_blank">GitHub Repo</a></li>
</ul>
</nav>
</header>
<!-- Main -->
<section id="main" class="container 75%">
<header>
<h2>線上編碼轉換工具</h2>
<p>此工具可用於繞過 (Bypass) 有漏洞的 XSS 或 SQL Injection 過濾器</p>
</header>
<div class="box">
<form method="post" action="#">
<div class="row uniform 50%">
<div class="12u">
<h4>明碼</h4>
<input type="text" name="plain" id="plain" value="" placeholder="Plain Text" />
</div>
</div>
<div class="row uniform 50%">
<div class="12u">
<h4>十六進制 (Hex)</h4>
<h5>URL Encode</h5>
<input type="text" name="url" id="url" value="" placeholder="URL Encode" />
<h5>HTML</h5>
<input type="text" name="html" id="html" value="" placeholder="HTML" />
</div>
</div>
<div class="row uniform 50%">
<div class="12u">
<h4>十進制 (Decimal)</h4>
<input type="text" name="decimal" id="decimal" value="" placeholder="Decimal" />
</div>
</div>
<div class="row uniform 50%">
<div class="12u">
<h4>Base64</h4>
<input type="text" name="base64" id="base64" value="" placeholder="Base64" />
</div>
</div>
</form>
</div>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="icons">
<li><a href="https://github.com/s3131212/gotyour.pw" class="icon fa-github"><span class="label">Github</span></a></li>
</ul>
<ul class="copyright">
<li>© Got Your PW. Some rights reserved. The contents are licensed under the <a href="https://creativecommons.org/licenses/by/4.0/deed.zh_TW" rel="nofollow">CC BY 4.0</a> .</li><li>Website Template: <a href="http://html5up.net" target="_blank" rel="nofollow">HTML5 UP</a> . The template is licensed under <a href="http://creativecommons.org/licenses/by/3.0/" rel="nofollow">CC BY 3.0</a>.</li>
</ul>
</footer>
</body>
</html>