-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1446 lines (756 loc) · 39.1 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="">
<!-- title -->
<!-- keywords -->
<head><meta name="generator" content="Hexo 3.9.0">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="author" content="OtterV">
<meta name="renderer" content="webkit">
<meta name="copyright" content="OtterV">
<meta name="keywords" content="hexo,hexo-theme,hexo-blog">
<meta name="description" content="Th3 5tupid 0ne">
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<style type="text/css">
@font-face {
font-family: 'Oswald-Regular';
src: url("/font/Oswald-Regular.ttf");
}
body {
margin: 0;
}
header,
footer,
.back-top,
.sidebar,
.container,
.site-intro-meta,
.toc-wrapper {
display: none;
}
.site-intro {
position: relative;
z-index: 3;
width: 100%;
/* height: 50vh; */
overflow: hidden;
}
.site-intro-placeholder {
position: absolute;
z-index: -2;
top: 0;
left: 0;
width: calc(100% + 300px);
height: 100%;
background: repeating-linear-gradient(-45deg, #444 0, #444 80px, #333 80px, #333 160px);
background-position: center center;
transform: translate3d(-226px, 0, 0);
animation: gradient-move 2.5s ease-out 0s infinite;
}
@keyframes gradient-move {
0% {
transform: translate3d(-226px, 0, 0);
}
100% {
transform: translate3d(0, 0, 0);
}
}
</style>
<link rel="preload" href="/css/style.css?v=20180824" as="style" onload="this.onload=null;this.rel='stylesheet'">
<link rel="stylesheet" href="/css/mobile.css?v=20180824" media="(max-width: 980px)">
<!-- /*! loadCSS. [c]2017 Filament Group, Inc. MIT License */
/* This file is meant as a standalone workflow for
- testing support for link[rel=preload]
- enabling async CSS loading in browsers that do not support rel=preload
- applying rel preload css once loaded, whether supported or not.
*/ -->
<script>
(function( w ){
"use strict";
// rel=preload support test
if( !w.loadCSS ){
w.loadCSS = function(){};
}
// define on the loadCSS obj
var rp = loadCSS.relpreload = {};
// rel=preload feature support test
// runs once and returns a function for compat purposes
rp.support = (function(){
var ret;
try {
ret = w.document.createElement( "link" ).relList.supports( "preload" );
} catch (e) {
ret = false;
}
return function(){
return ret;
};
})();
// if preload isn't supported, get an asynchronous load by using a non-matching media attribute
// then change that media back to its intended value on load
rp.bindMediaToggle = function( link ){
// remember existing media attr for ultimate state, or default to 'all'
var finalMedia = link.media || "all";
function enableStylesheet(){
link.media = finalMedia;
}
// bind load handlers to enable media
if( link.addEventListener ){
link.addEventListener( "load", enableStylesheet );
} else if( link.attachEvent ){
link.attachEvent( "onload", enableStylesheet );
}
// Set rel and non-applicable media type to start an async request
// note: timeout allows this to happen async to let rendering continue in IE
setTimeout(function(){
link.rel = "stylesheet";
link.media = "only x";
});
// also enable media after 3 seconds,
// which will catch very old browsers (android 2.x, old firefox) that don't support onload on link
setTimeout( enableStylesheet, 3000 );
};
// loop through link elements in DOM
rp.poly = function(){
// double check this to prevent external calls from running
if( rp.support() ){
return;
}
var links = w.document.getElementsByTagName( "link" );
for( var i = 0; i < links.length; i++ ){
var link = links[ i ];
// qualify links to those with rel=preload and as=style attrs
if( link.rel === "preload" && link.getAttribute( "as" ) === "style" && !link.getAttribute( "data-loadcss" ) ){
// prevent rerunning on link
link.setAttribute( "data-loadcss", true );
// bind listeners to toggle media back
rp.bindMediaToggle( link );
}
}
};
// if unsupported, run the polyfill
if( !rp.support() ){
// run once at least
rp.poly();
// rerun poly on an interval until onload
var run = w.setInterval( rp.poly, 500 );
if( w.addEventListener ){
w.addEventListener( "load", function(){
rp.poly();
w.clearInterval( run );
} );
} else if( w.attachEvent ){
w.attachEvent( "onload", function(){
rp.poly();
w.clearInterval( run );
} );
}
}
// commonjs
if( typeof exports !== "undefined" ){
exports.loadCSS = loadCSS;
}
else {
w.loadCSS = loadCSS;
}
}( typeof global !== "undefined" ? global : this ) );
</script>
<link rel="icon" href="/assets/favicon.ico">
<link rel="preload" href="https://cdn.jsdelivr.net/npm/webfontloader@1.6.28/webfontloader.min.js" as="script">
<link rel="preload" href="https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js" as="script">
<link rel="preload" href="/scripts/main.js" as="script">
<link rel="preload" as="font" href="/font/Oswald-Regular.ttf" crossorigin>
<link rel="preload" as="font" href="https://at.alicdn.com/t/font_327081_1dta1rlogw17zaor.woff" crossorigin>
<!-- fancybox -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.js" defer></script>
<!-- 百度统计 -->
<!-- 谷歌统计 --><!-- hexo-inject:begin --><!-- hexo-inject:end -->
</head>
<body class="home-body">
<!-- hexo-inject:begin --><!-- hexo-inject:end --><header class="header index-header">
<div class="read-progress"></div>
<div class="header-sidebar-menu"></div>
<!-- post页的toggle banner -->
<a class="home-link" href=/>River5tone</a>
</header>
<div class="wrapper">
<div class="site-intro" style="
height:50vh;
">
<!-- 主页 -->
<!-- 文章页 -->
<div class="site-intro-placeholder"></div>
<div class="site-intro-img" style="background-image: url(/intro/502.jpg)"></div>
<div class="site-intro-meta">
<!-- 标题 -->
<h1 class="intro-title">
<!-- 主页 -->
River5tone
<!-- 文章页 -->
</h1>
<!-- 副标题 -->
<p class="intro-subtitle">
<!-- 主页副标题 -->
Everything
<!-- 文章页 -->
</p>
<!-- 文章页meta -->
</div>
</div>
<script>
// get user agent
var browser = {
versions: function () {
var u = window.navigator.userAgent;
return {
userAgent: u,
trident: u.indexOf('Trident') > -1, //IE内核
presto: u.indexOf('Presto') > -1, //opera内核
webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核
gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核
mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端
ios: !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端
android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器
iPhone: u.indexOf('iPhone') > -1 || u.indexOf('Mac') > -1, //是否为iPhone或者安卓QQ浏览器
iPad: u.indexOf('iPad') > -1, //是否为iPad
webApp: u.indexOf('Safari') == -1, //是否为web应用程序,没有头部与底部
weixin: u.indexOf('MicroMessenger') == -1, //是否为微信浏览器
uc: u.indexOf('UCBrowser') > -1 //是否为android下的UC浏览器
};
}()
}
console.log("userAgent:" + browser.versions.userAgent);
// callback
function fontLoaded() {
console.log('font loaded');
if (document.getElementsByClassName('site-intro-meta')) {
document.getElementsByClassName('intro-title')[0].classList.add('intro-fade-in');
document.getElementsByClassName('intro-subtitle')[0].classList.add('intro-fade-in');
var postIntros = document.getElementsByClassName('post-intros')[0]
if (postIntros) {
postIntros.classList.add('post-fade-in');
}
}
}
// UC不支持跨域,所以直接显示
function asyncCb(){
if (browser.versions.uc) {
console.log("UCBrowser");
fontLoaded();
} else {
WebFont.load({
custom: {
families: ['Oswald-Regular']
},
loading: function () { //所有字体开始加载
// console.log('loading');
},
active: function () { //所有字体已渲染
fontLoaded();
},
inactive: function () { //字体预加载失败,无效字体或浏览器不支持加载
console.log('inactive: timeout');
fontLoaded();
},
timeout: 5000 // Set the timeout to two seconds
});
}
}
function asyncErr(){
console.warn('script load from CDN failed, will load local script')
}
// load webfont-loader async, and add callback function
function async(u, cb, err) {
var d = document, t = 'script',
o = d.createElement(t),
s = d.getElementsByTagName(t)[0];
o.src = u;
if (cb) { o.addEventListener('load', function (e) { cb(null, e); }, false); }
if (err) { o.addEventListener('error', function (e) { err(null, e); }, false); }
s.parentNode.insertBefore(o, s);
}
var asyncLoadWithFallBack = function(arr, success, reject) {
var currReject = function(){
reject()
arr.shift()
if(arr.length)
async(arr[0], success, currReject)
}
async(arr[0], success, currReject)
}
asyncLoadWithFallBack([
"https://cdn.jsdelivr.net/npm/webfontloader@1.6.28/webfontloader.min.js",
"https://cdn.bootcss.com/webfont/1.6.28/webfontloader.js",
"/lib/webfontloader.min.js"
], asyncCb, asyncErr)
</script>
<img class="loading" src="/assets/loading.svg" style="display: block; margin: 6rem auto 0 auto; width: 6rem; height: 6rem;" />
<div class="container container-unloaded">
<main class="main index-page">
<article class="index-post">
<a class="abstract-title" href = "/9101/11/30/91020000xxxg/" >
<span>XX相关</span>
</a>
<div class="abstract-content">
2019.3.12
正因为不了解,不知道会发生什么样的事情,我们才会恐慌、才会神经紧绷,人类面对未知的事物都容易产生恐惧。我们既需要互联网给我们提供足够安全的保障,也需要不断地锻炼、学习新的保护意识才能让自己不遭受损失,虽然我们知道100%的安全不存在。
2019.3.14
在今天,跟所谓的上帝等价的,是那些概率驱动的、行为不定的神经元。神经元行为的随机性的增加,更有可能是癫痫和醉酒的罪魁祸首,而不是聪明和智慧的优势。
——P.H.温斯顿(时任MIT AI实验室负责人),1977年出版课本《人工智能》
2019.4.1
尽信书不如无书
区块链世界
这个世界,私钥就是身份,谁...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">9101/11/30</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "for">for</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2020/03/15/20200315pythonopcode/" >
<span>Python 字节码能吃吗?</span>
</a>
<div class="abstract-content">
HGAME 似乎年年都有 python 字节码的题目,于是感受了一下 python 字节码
python 是一门解释型语言,边解释边执行(效率比C低,暴力脚本经常炸),通常不会进行整体地编译和链接,使用专门的解释器逐行编译解释成特定字节码,其工作流程如下:
将源代码编译转换为字节码
解释器执行字节码(是不是像虚拟机:smiley:)
pyc 文件的生成pyc 文件是 py 文件编译后生成的字节码文件,在 __pycache__ 目录中。其目的是提高加载速度:运行时会检查字节码文件修改时间是否与源代码一致,一致则编译步骤将会被跳过,解释器直接加载 pyc 文件;否则编译保存新生成的字节...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2020/03/15</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Reverse">Reverse</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2019/11/12/20191112vmp/" >
<span>虚拟化保护 VMP</span>
</a>
<div class="abstract-content">
——虚拟机指令分析 Virtual Machine Command Analysis
In code obfuscation, a virtual machine is a mechanism used to execute a different instruction set than the one used by the machine that runs the program.
原理基本原理虚拟机保护技术是指,将程序代码转换为自定义的中间操作码OpCode(当操作码只占一个字节可称作ByteCode),通过一种解释执行系统或者模拟器(Emulator)解释执行,实现代码基本...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2019/11/12</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Binary Security">Binary Security</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Reverse">Reverse</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2019/07/08/20190708pwn1/" >
<span>Pwn训练1 —— 基本的漏洞利用(栈溢出、整数溢出、off by one)</span>
</a>
<div class="abstract-content">
题目清单:
2018鹏程杯初赛OverInt
whichRepeater
2018安恒杯6月Over
Such_over(overInt)
64位elf,IDA静态分析,程序比较繁琐
输入4字节数key,由sub_4007D1进行check,得到的值应为35,可通过暴力z3跑出很多结果,通过该判定
1234567891011121314151617181920from z3 import *a = [BitVec('a[%d]'%i,32) for i in range(0,4)]ans = 0s = Solver()for i in range(4):trues.a...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2019/07/08</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Binary Security">Binary Security</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Pwn">Pwn</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2019/06/03/20190603ccpcgirlsnj/" >
<span>2019CCPC女生赛南京之行</span>
</a>
<div class="abstract-content">
真·奇妙冒险时间:2019.6.1-6.3
第一次外出打比赛,在校队摸鱼划水了一年多
更加真实地感受到了佳妮的强大。
地铁与野火一季
不知道路费能不能报销orz
第一天报道后已经很晚了,回到宾馆感觉很累,休息了一下就打了场训练赛,感觉海星,就是连矩阵快速幂都没有想到,看到眼熟的东西也完全没有感觉,太久没有碰过这些了。
睡下后第二天6:30起来很困很累,去的有些些早,那边也没有提供合适的场地休息。
8:30-9:30热身赛,输入输出题B、简单机智题C,以及应该是DP题A,中途想A想的好困orz不过方向应该没有太大问题?
10:30正式赛前在校园里的躺椅上睡了下,还是好累好困orz
南京...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2019/06/03</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "ACM">ACM</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2019/03/25/20190325ttdybxmy/" >
<span>谈谈最近看的电影——波希米亚狂想曲</span>
</a>
<div class="abstract-content">
每到三月份,都会有好看的电影,想也是有趣,比如前年的<爱乐之城>,去年的<三块广告牌>,今年的<绿皮书>和<波希米亚狂想曲>,而且无一例外都有很棒的音乐与美妙的画面。
指路前面的影评>>
谈谈最近看的电影——爱乐之城
谈谈最近看的电影——三块广告牌
谈谈最近看的电影——绿皮书
(完全还没写哈哈哈哈哈哈)
< 波希米亚狂想曲 >是皇后乐队(Queen)主唱 Freddie Mercury 的传记电影,是根据真实故事的艺术创作,在时间线上有一定的打乱。这个电影讲述的是这些传统的、受过良好的家庭和高等教育的英国...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2019/03/25</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Movie">Movie</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/12/25/20181225cryptosmallthings/" >
<span>密码学小记</span>
</a>
<div class="abstract-content">
Cryptography
密码学的魅力是不可否认的,在这篇无用的小糟粕里,我只是想要尽可能记下有趣的密码学中我仅知的散发着该死的魅力的密码学相关知识。
雪崩效应雪崩效应是一种不稳定的平衡状态也是加密算法的一种特征,它指明文或密钥的少量变化会引起密文的很大变化,就像雪崩前,山上看上去很平静,但是只要有一点问题,就会造成一片大崩溃。是加密算法(尤其是块密码和加密散列函数)的一种理想属性。当输入发生最微小的改变(例如,反转一个二进制位)时,也会导致输出的剧变(如,输出中一半的二进制位发生反转)。在高品质的块密码中,无论密钥或明文的任何细微变化都应当引起密文的剧烈改变。该术语最早由Horst ...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/12/25</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Cryptography">Cryptography</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/12/12/20181212RSAs/" >
<span>RSA___Rivest&Shamir&Adleman</span>
</a>
<div class="abstract-content">
一、RSA密码算法简介RSA(Rivest-Shamir-Adleman)是最早的公钥密码系统之一,广泛用于安全数据传输。公钥密码系统中,加密密钥是公共的(公钥),且它与保密的解密密钥(私钥)不同。在RSA中,这种不对称性算法的可靠性是基于两个大质数乘积的因子分解难题。
1.算法流程密钥生成
选择两个大素数p,q,计算$$N = pq$$(p,q为大素数)
$$\varphi(n) = \varphi(p)*\varphi(q) = (p-1)(q-1)$$
选择随机数 $e$, $$ 1<e<\varphi(n) $$,$$ gcd(e,\varphi(n))=1 ...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/12/12</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Cryptography">Cryptography</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/11/06/2018rop/" >
<span>ROP_lev</span>
</a>
<div class="abstract-content">
ROP系列持续更新——
rop_lev1flag:flag{w41@1c0m4_t0_R0pp}
本题我们来练习最基本的栈溢出利用。pwn类型题目的最终目的都是促使目标机器执行shell程序,典型地,如执行system(“/bin/sh”)和execve(“/bin/sh”,0,0)。本题在程序段已内置了一个callsystem()函数,该函数会执行system(“/bin/sh”),故你需要通过栈溢出引导程序执行callsystem()函数从而拿到shell,再通过cat flag命令得到flag
最最最开始,搞了好久,不太懂怎么搞,看了一堆pwntools的相关应用啥的,然...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/11/06</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Binary Security">Binary Security</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Pwn">Pwn</a>
</div>
</div>
</article>
<article class="index-post">
<a class="abstract-title" href = "/2018/11/06/2018reverse/" >
<span>逆向题目WriteUPs</span>
</a>
<div class="abstract-content">
持续更新——
第一次IDC脚本:20180911practise1test2flag:nctf{Embr4ce_Vm_j0in_R3}
64位elf文件。
IDA汇编&伪代码静态分析+虚拟机远程调试分析:
输入一串字符,该字符串长度应为18h,经过call sub_4005B6的运算,将字符串进行处理,然后遍历字符串每位与dword_601060的对应位匹配。
那么关键就是对字符串进行的运算处理部分了,感受一波伪代码,挺清晰的:
大体意思就是有炒鸡多的操作数,每3个字节为一个单位,第一个做switch判断做哪种运算,第二个为改变字符在字符串中的数组下标,第三个为用于...
</div>
<div class="abstract-post-meta">
<!-- date -->
<div class="abstract-date">
<span class="abstract-calander iconfont-archer"></span><span class="abstract-time">2018/11/06</span>
</div>
<!-- tags -->
<div class= abstract-tags >
<a class="post-tag" href="javascript:void(0);" data-tags = "Binary Security">Binary Security</a>
<a class="post-tag" href="javascript:void(0);" data-tags = "Reverse">Reverse</a>
</div>
</div>
</article>
<!-- paginator -->
<nav class="page-nav">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="page-number" href="/page/3/">3</a><a class="extend next" rel="next" href="/page/2/">NEXT ></a>
</nav>
</main>
<!-- profile -->
<div class="profile">
<img class="profile-avatar" alt="avatar" src= /avatar/avatar.jpg >
<div class="profile-name">OtterV</div>
<div class="profile-signature">
........昨日种种譬如昨日死........ ........今日种种譬如今日生........
</div>
<div class="profile-social">
<a href="mailto:xgh211otterv@qq.com" class="iconfont-archer email" title=email ></a>
<a href="//github.com/otterv" class="iconfont-archer github" target="_blank" title=github></a>
</div>
<div class="friends">
<div>FRIENDS</div>
<span>
<a href= https://csuwangj.github.io/ target="_black">DJ!</a>
</span>
<span>
<a href= https://www.caomingpei.com/ target="_black">limojin</a>
</span>
<span>
<a href= https://coco1er.github.io/ target="_black">CoCo1er</a>
</span>
<span>
<a href= https://gitwarning.github.io/ target="_black">warning</a>
</span>
<span>
<a href= timelooper.wang/ target="_black">time_looper</a>
</span>
<span>
<a href= https://treebacker.github.io/ target="_black">treebacker</a>
</span>
</div>
<div class="about-me">
<a href = "/about" >ABOUT ME</a>
</div>
</div>
</div>
<footer class="footer footer-unloaded">
<!-- social -->
<div class="social">
<a href="mailto:xgh211otterv@qq.com" class="iconfont-archer email" title=email ></a>
<a href="//github.com/otterv" class="iconfont-archer github" target="_blank" title=github></a>
</div>
<!-- powered by Hexo -->
<div class="copyright">
<span id="hexo-power">Powered by <a href="https://hexo.io/" target="_blank">Hexo</a></span><span class="iconfont-archer power"></span><span id="theme-info">theme <a href="https://github.com/fi3ework/hexo-theme-archer" target="_blank">Archer</a></span>
</div>
<!-- 不蒜子 -->
<div class="busuanzi-container">
<span id="busuanzi_container_site_pv">PV: <span id="busuanzi_value_site_pv"></span> :)</span>
</div>
</footer>
</div>
<!-- toc -->
<div class="back-top iconfont-archer"></div>
<div class="sidebar sidebar-hide">
<ul class="sidebar-tabs sidebar-tabs-active-0">
<li class="sidebar-tab-archives"><span class="iconfont-archer"></span><span class="tab-name">Archive</span></li>
<li class="sidebar-tab-tags"><span class="iconfont-archer"></span><span class="tab-name">Tag</span></li>
<li class="sidebar-tab-categories"><span class="iconfont-archer"></span><span class="tab-name">Cate</span></li>
</ul>
<div class="sidebar-content sidebar-content-show-archive">
<div class="sidebar-panel-archives">
<!-- 在ejs中将archive按照时间排序 -->