-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
144 lines (113 loc) · 4.07 KB
/
index.html
File metadata and controls
144 lines (113 loc) · 4.07 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=0">
<link rel="alternate" href="/atom.xml" title="ccgetflag" type="application/atom+xml">
<meta name="theme-color" content="#a1d0f6">
<title>ccgetflag</title>
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link rel="shortcut icon" href="/favicon.png">
<link rel="stylesheet" href="/css/style.css">
<nav class="main-nav">
<a href="/about/">About</a>
<a href="/archives/">Archives</a>
<a class="cta" href="/atom.xml" data-no-instant>Subscribe</a>
</nav>
<section id="wrapper">
<div class="profile">
<section id="wrapper">
<header id="header">
<a href="/about/">
<img id="avatar" class="2x" src="/images/avatar.png">
</a>
<h1>ccgetflag</h1>
<h2></h2>
</header>
</section>
</div>
<ul id="post-list">
<li>
<aside class="dates">Sep 21 2024</aside>
<a href="/2024/09/21/python%E5%8E%9F%E5%9E%8B%E9%93%BE%E6%B1%A1%E6%9F%93/python%E5%8E%9F%E5%9E%8B%E9%93%BE%E6%B1%A1%E6%9F%93/">python原型链污染</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 17 2024</aside>
<a href="/2024/09/17/SSTI%E6%BC%8F%E6%B4%9E%E5%AD%A6%E4%B9%A0/SSTI%E6%BC%8F%E6%B4%9E%E5%AD%A6%E4%B9%A0/">SSTI漏洞学习</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 11 2024</aside>
<a href="/2024/09/11/ctfshow-php%E7%89%B9%E6%80%A7/ctfshow-php%E7%89%B9%E6%80%A7/">ctfshow-php特性</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 11 2024</aside>
<a href="/2024/09/11/ctfshow-%E6%96%87%E4%BB%B6%E5%8C%85%E5%90%AB/ctfshow-%E6%96%87%E4%BB%B6%E5%8C%85%E5%90%AB/">ctfshow-文件包含</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 04 2024</aside>
<a href="/2024/09/04/2024BaseCTF-web/2024BaseCTF-web/">2024BaseCTF-web</a>
<h2></h2>
</li>
<li>
<aside class="dates">Sep 01 2024</aside>
<a href="/2024/09/01/ctfshow-%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C/ctfshow-%E5%91%BD%E4%BB%A4%E6%89%A7%E8%A1%8C/">ctfshow_命令执行</a>
<h2></h2>
</li>
<li>
<aside class="dates">Jul 27 2024</aside>
<a href="/2024/07/27/2024%E8%A5%BF%E7%93%9C%E6%9D%AF/%E8%A5%BF%E7%93%9C%E6%9D%AF%E5%A4%8D%E7%8E%B0/">2024西瓜杯复现</a>
<h2></h2>
</li>
<li>
<aside class="dates">Jul 02 2024</aside>
<a href="/2024/07/02/BUUCTF-WEB%E5%88%B7%E9%A2%98%E8%AE%B0%E5%BD%95/BUUCTF-WEB%E5%88%B7%E9%A2%98%E8%AE%B0%E5%BD%95/">BUUCTF_WEB刷题记录</a>
<h2></h2>
</li>
</ul>
<nav id="post-nav">
<span class="prev">
</span>
<span class="next">
</span>
</nav>
<footer id="footer">
<div id="social">
<p class="small">© John Doe| Powered by Hexo &
<a target="_blank" rel="noopener" href="https://github.com/F0r3at/Lights"> Lights</a>
</p>
</div>
</footer>
</section>
<script src="//cdnjs.loli.net/ajax/libs/instantclick/3.0.1/instantclick.min.js" data-no-instant></script>
<script data-no-instant>
InstantClick.init('mousedown');
</script>
<script>
// To make images retina, add a class "2x" to the img element
var isMobile = {
Android:function() {
return navigator.userAgent.match(/Android/i) ? true : false;
},
BlackBerry:function(){
return navigator.userAgent.match(/BlackBerry/i) ? true : false;
},
iOS:function(){
return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false;
},
Windows:function(){
return navigator.userAgent.match(/IEMobile/i) ? true : false;
},
any:function(){
return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
}
};
if (isMobile.any()) {
var suffix = document.getElementsByClassName('2x')[0].getAttribute('src');
suffix = suffix.replace('.png','@2x.png');
suffix = suffix.replace('.jpg','@2x.jpg');
document.getElementsByClassName('2x')[0].setAttribute('src',suffix);
};
</script>