diff --git a/2023/10/10/hello-world/index.html b/2023/10/10/hello-world/index.html index 3d2912a..e61ac06 100644 --- a/2023/10/10/hello-world/index.html +++ b/2023/10/10/hello-world/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

+ })(window)

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"
@@ -194,23 +194,11 @@

Deploy to remote sites

})()
\ No newline at end of file diff --git a/2023/11/09/SEED LAB Buffer overflow/index.html b/2023/11/09/SEED LAB Buffer overflow/index.html index ae15a05..b5aa2a3 100644 --- a/2023/11/09/SEED LAB Buffer overflow/index.html +++ b/2023/11/09/SEED LAB Buffer overflow/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

SEED LAB Buffer Overflow(Set-UID)

Buffer Overflow (Set-UID)

+ })(window)

SEED LAB Buffer Overflow(Set-UID)

Buffer Overflow (Set-UID)

Task 1: Getting Familiar with Shellcode

Run them and describe your observations. It should be noted that the compilation uses the execstack option, which allows code to be executed from the stack;without this option, the program will fail.

//shellcode C版

@@ -290,23 +290,11 @@

Task 9.b: })()

\ No newline at end of file diff --git a/2023/11/09/SEED LAB Shellshock/index.html b/2023/11/09/SEED LAB Shellshock/index.html index 926966d..3bfa4f3 100644 --- a/2023/11/09/SEED LAB Shellshock/index.html +++ b/2023/11/09/SEED LAB Shellshock/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

SEED LAB Shellshock

SEED LAB Shellshock

+ })(window)

SEED LAB Shellshock

SEED LAB Shellshock

2.1 Task 1: Experimenting with Bash Function

Please run this vulnerable version of Bash like the following and then design an experiment to verify whether this Bash is vulnerable to the Shellshock attack or not.

Try the same experiment on the patched version of bash (/bin/bash) and report your observations.

@@ -252,23 +252,11 @@

2.6 Task 6: Using the Patched })()

\ No newline at end of file diff --git a/2023/11/18/SEED LAB Dirty Cow/index.html b/2023/11/18/SEED LAB Dirty Cow/index.html index 0c390d1..e6ab5b9 100644 --- a/2023/11/18/SEED LAB Dirty Cow/index.html +++ b/2023/11/18/SEED LAB Dirty Cow/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

SEED LAB Dirty Cow

TASK 1 Modify a Dummy Read-Only File

+ })(window)

SEED LAB Dirty Cow

TASK 1 Modify a Dummy Read-Only File

任务要求:利用Dirty Cow 写一个只读文件

2.1 Create a Dummy File

在root文件夹中添加一个文件名为zzz,修改权限使它对其他用户只读,写入1111122223333

@@ -229,23 +229,11 @@

Task })()

\ No newline at end of file diff --git a/2023/11/21/SEED LAB Format String/index.html b/2023/11/21/SEED LAB Format String/index.html index 3eee82f..6e52884 100644 --- a/2023/11/21/SEED LAB Format String/index.html +++ b/2023/11/21/SEED LAB Format String/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

SEED LAB Format String

环境搭建

+ })(window)

SEED LAB Format String

环境搭建

1.关闭地址空间随机化

2.在serve_code下make,把fromat.c编译成32位和64位版本:

命令:

@@ -320,23 +320,11 @@

Task 6: Fixing the Problem

\ No newline at end of file diff --git a/2023/11/29/Crypto Basic 1/index.html b/2023/11/29/Crypto Basic 1/index.html index b7486fe..ae73f28 100644 --- a/2023/11/29/Crypto Basic 1/index.html +++ b/2023/11/29/Crypto Basic 1/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Crypto Basics 1

Base64 Encoding

+ })(window)

Crypto Basics 1

Base64 Encoding

Basically it goes through all the bytes and transforms each set of 6 bits into a readable byte (8 bits). The result is that the size of the encoded bytes is increased with about 33%.

1
2
Hello ==> SGVsbG8=
0x4d 0x61 ==> TWE=

Basic Authentication

@@ -245,23 +245,11 @@

HTTPS uses both symmetric })()

\ No newline at end of file diff --git a/2023/11/30/Signature_webgoat/index.html b/2023/11/30/Signature_webgoat/index.html index 7b3b0be..e7e9fe6 100644 --- a/2023/11/30/Signature_webgoat/index.html +++ b/2023/11/30/Signature_webgoat/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Signature 签名

Signature 签名

+ })(window)

Signature 签名

Signature 签名

Signing is used when integrity is important. It is meant to be a guarantee that data sent from A to B was not altered.

So A signs the data by calculating the hash of the data and encrypting that hash using an asymmetric private key. B can then verify the data by calculating the hash of the data and decrypting the signature to compare if both hashes are the same.

A对data进行哈希之后,使用非对称加密的私钥对哈希值进行加密,生成签名。B对data哈希之后,使用公钥对A生成的签名进行解密,得到A对data的哈希值,验证这两个哈希值是否相等。

@@ -238,23 +238,11 @@

Assignment

})()
\ No newline at end of file diff --git a/2023/12/05/A1_SQL_Injection_1/index.html b/2023/12/05/A1_SQL_Injection_1/index.html index fcc65b8..7a7d523 100644 --- a/2023/12/05/A1_SQL_Injection_1/index.html +++ b/2023/12/05/A1_SQL_Injection_1/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

A1:SQL Injection 1

Introduction

+ })(window)

A1:SQL Injection 1

Introduction

一、SQL语言

Data Manipulation Language (DML)

常用数据操作语言:

@@ -249,23 +249,11 @@

assignment on p3

})()
\ No newline at end of file diff --git a/2023/12/07/setup_of_syzkaller/index.html b/2023/12/07/setup_of_syzkaller/index.html index ea25f2f..af00111 100644 --- a/2023/12/07/setup_of_syzkaller/index.html +++ b/2023/12/07/setup_of_syzkaller/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Set up Syzkaller (记录安装过程)

参考官方的配置手册:syzkaller/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md at master · google/syzkaller (github.com)

+ })(window)

Set up Syzkaller (记录安装过程)

\ No newline at end of file diff --git a/2023/12/11/syzkaller_lab1/index.html b/2023/12/11/syzkaller_lab1/index.html index c13a3db..a501c23 100644 --- a/2023/12/11/syzkaller_lab1/index.html +++ b/2023/12/11/syzkaller_lab1/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Syzkaller实验报告(Crash Demo)

Syzkaller实验报告(Crash Demo)

+ })(window)

Syzkaller实验报告(Crash Demo)

Syzkaller实验报告(Crash Demo)

实验配置

测试工具:Syzkaller

测试对象:linux6.7.0-rc4,编译进一个有堆溢出漏洞的驱动程序。

@@ -335,23 +335,11 @@

五、其他

})()
\ No newline at end of file diff --git "a/2024/03/26/\346\225\243\345\210\227\345\207\275\346\225\260\344\270\216\350\256\244\350\257\201/index.html" "b/2024/03/26/\346\225\243\345\210\227\345\207\275\346\225\260\344\270\216\350\256\244\350\257\201/index.html" index 7d90c70..176ac5b 100644 --- "a/2024/03/26/\346\225\243\345\210\227\345\207\275\346\225\260\344\270\216\350\256\244\350\257\201/index.html" +++ "b/2024/03/26/\346\225\243\345\210\227\345\207\275\346\225\260\344\270\216\350\256\244\350\257\201/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

散列函数与认证

一、简介

+ })(window)

散列函数与认证

一、简介

认证:
防止主动攻击,如伪装、篡改、干扰
实体认证:
@@ -424,23 +424,11 @@

六、SHA-1与MD5比较

})()
\ No newline at end of file diff --git "a/2024/03/26/\346\225\260\346\215\256\345\212\240\345\257\206\346\240\207\345\207\206(DES)/index.html" "b/2024/03/26/\346\225\260\346\215\256\345\212\240\345\257\206\346\240\207\345\207\206(DES)/index.html" index 7bc5d5d..2cb811a 100644 --- "a/2024/03/26/\346\225\260\346\215\256\345\212\240\345\257\206\346\240\207\345\207\206(DES)/index.html" +++ "b/2024/03/26/\346\225\260\346\215\256\345\212\240\345\257\206\346\240\207\345\207\206(DES)/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

数据加密标准(DES)

特征

+ })(window)

数据加密标准(DES)

特征

1.分组加密算法:明文和密文为64位分组长度。
2.对称算法:加密和解密除密钥编排不同外,使用同一算法。
3.密钥长度:64位,但每个字节第8位为奇偶校验位,可忽略。
@@ -229,23 +229,11 @@

讨论

})()
\ No newline at end of file diff --git a/2024/03/30/Routing-and-Dos/index.html b/2024/03/30/Routing-and-Dos/index.html index 0207719..3983f8f 100644 --- a/2024/03/30/Routing-and-Dos/index.html +++ b/2024/03/30/Routing-and-Dos/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Routing and Dos

一、劫持网络流量

+ })(window)

Routing and Dos

一、劫持网络流量

BGP hijacking BGP劫持
BGP劫持是攻击者伪装成另一个网络;它宣布属于另一个网络的网络前缀。如果这个错误的信息被相邻的网络接受,并进一步传播使用BGP,它会扭曲的互联网的路线图,导致流量被转发到攻击者而不是其合法目的地,从而导致拒绝服务(DoS)攻击或流量拦截。

这样做有两种结果:
@@ -278,23 +278,11 @@

针对DNS

})()
\ No newline at end of file diff --git a/2024/04/01/Bayesian-Inference/index.html b/2024/04/01/Bayesian-Inference/index.html index 4af4ce7..c129703 100644 --- a/2024/04/01/Bayesian-Inference/index.html +++ b/2024/04/01/Bayesian-Inference/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

贝叶斯推理(Bayesian Inference)

条件概率 (Conditional Probability)

+ })(window)

贝叶斯推理(Bayesian Inference)

条件概率 (Conditional Probability)

条件概率是指在给定另一事件已经发生的情况下,某一事件发生的概率。条件概率通常表示为P(AB)P(A|B),读作“在B发生的情况下A发生的概率”。其中,P(AB)P(A|B)表示在事件B发生的前提下事件A发生的概率。

条件概率的计算公式为:

P(AB)=P(AB)P(B) P(A|B) = \frac{P(A \cap B)}{P(B)} @@ -240,23 +240,11 @@

最大后验估计

})()
\ No newline at end of file diff --git a/2024/04/21/PGP/index.html b/2024/04/21/PGP/index.html index 501ed46..96a18dd 100644 --- a/2024/04/21/PGP/index.html +++ b/2024/04/21/PGP/index.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

PGP(实验)

PGP (Pretty Good Privacy)

+ })(window)

PGP(实验)

PGP (Pretty Good Privacy)

PGP是一个完整的电子邮件安全软件包,包括加密、鉴别、电子签名和压缩等技术。
虽然 PGP 已被广泛使用,但 PGP 并不是因特网的正式标准。

一、加密过程。

@@ -259,23 +259,11 @@

五、运行结果

})()
\ No newline at end of file diff --git "a/2024/04/21/\346\225\260\345\255\227\347\255\276\345\220\215/index.html" "b/2024/04/21/\346\225\260\345\255\227\347\255\276\345\220\215/index.html" index 9010a8d..2c9aba0 100644 --- "a/2024/04/21/\346\225\260\345\255\227\347\255\276\345\220\215/index.html" +++ "b/2024/04/21/\346\225\260\345\255\227\347\255\276\345\220\215/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

数字签名

数字签名

+ })(window)

数字签名

数字签名

一、问题由来

哈希函数用于验证消息的完整性,数字签名用于验证消息来源。
仅仅使用哈希函数进行消息认证,可以防止第三方篡改消息内容,但不能防止通信双方中的某一方对另一方的欺骗和伪造。例如,采用消息认证码(MAC)的方式,B伪造一个消息,并使用与A共享的密钥产生该消息的认证码,并声称该消息来自A;由于B有可能伪造A发送的消息,A就可以对自己发送过的消息予以否认。
@@ -292,23 +292,11 @@

四、特殊数字签名(仅作 })()

\ No newline at end of file diff --git "a/2024/05/11/\345\256\211\345\205\250\345\215\217\350\256\256/index.html" "b/2024/05/11/\345\256\211\345\205\250\345\215\217\350\256\256/index.html" index 1ab3ef9..2712d95 100644 --- "a/2024/05/11/\345\256\211\345\205\250\345\215\217\350\256\256/index.html" +++ "b/2024/05/11/\345\256\211\345\205\250\345\215\217\350\256\256/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

安全协议

一、安全协议的安全性质

+ })(window)

安全协议

一、安全协议的安全性质

1.机密性(加解密)
2.完整性(哈希)
3.认证性(签名)
@@ -336,23 +336,11 @@

4.比特承诺

})()
\ No newline at end of file diff --git "a/2024/05/11/\345\256\211\345\205\250\345\244\232\346\226\271\350\256\241\347\256\227/index.html" "b/2024/05/11/\345\256\211\345\205\250\345\244\232\346\226\271\350\256\241\347\256\227/index.html" index a1cfadf..a1ffabf 100644 --- "a/2024/05/11/\345\256\211\345\205\250\345\244\232\346\226\271\350\256\241\347\256\227/index.html" +++ "b/2024/05/11/\345\256\211\345\205\250\345\244\232\346\226\271\350\256\241\347\256\227/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

安全多方计算

安全多方计算

+ })(window)

安全多方计算

安全多方计算

**多方计算问题:**一组参与者希望共同计算某个约定的函数,函数的输入参数有多个,每个参与者提供函数的一个输入,除了函数的输出外,没有人知道关于任何其它成员输入的任何事情 。

一、密码学家晚餐问题

1.场景描述

@@ -260,23 +260,11 @@

3.缺点

})()
\ No newline at end of file diff --git "a/2024/05/11/\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" "b/2024/05/11/\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" index 77d8ead..dadf294 100644 --- "a/2024/05/11/\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" +++ "b/2024/05/11/\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

对称加密体制

对称加密体制

+ })(window)

对称加密体制

对称加密体制

一、概述

特征:加密密钥=解密密钥
密码的算法是公开的,安全特性取决于kk(密钥)

@@ -456,23 +456,11 @@

分组密码评估

})()
\ No newline at end of file diff --git "a/2024/05/11/\351\235\236\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" "b/2024/05/11/\351\235\236\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" index abdf64e..bb8f3af 100644 --- "a/2024/05/11/\351\235\236\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" +++ "b/2024/05/11/\351\235\236\345\257\271\347\247\260\345\212\240\345\257\206\344\275\223\345\210\266/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

非对称加密体制

非对称加密体制

+ })(window)

非对称加密体制

非对称加密体制

一、问题由来

加密通信中经常面临一个问题:陌生人之间加密通信需要如何管理和分发密钥?
对称密码体制在其中的困难有:
@@ -412,23 +412,11 @@

八、针对协议的劫持攻击

\ No newline at end of file diff --git "a/2024/12/19/\351\230\205\350\257\273\347\254\224\350\256\260\357\274\232Detecting AI-Generated Text Factors Influencing Detectability with Current Methods/index.html" "b/2024/12/19/\351\230\205\350\257\273\347\254\224\350\256\260\357\274\232Detecting AI-Generated Text Factors Influencing Detectability with Current Methods/index.html" index ec0d279..cc1a282 100644 --- "a/2024/12/19/\351\230\205\350\257\273\347\254\224\350\256\260\357\274\232Detecting AI-Generated Text Factors Influencing Detectability with Current Methods/index.html" +++ "b/2024/12/19/\351\230\205\350\257\273\347\254\224\350\256\260\357\274\232Detecting AI-Generated Text Factors Influencing Detectability with Current Methods/index.html" @@ -152,7 +152,7 @@ } } detectApple() - })(window)

阅读笔记 Detecting AI-Generated Text Factors Influencing Detectability with Current Methods

阅读笔记:Detecting AI-Generated Text: Factors Influencing Detectability with Current Methods

+ })(window)

阅读笔记 Detecting AI-Generated Text Factors Influencing Detectability with Current Methods

阅读笔记:Detecting AI-Generated Text: Factors Influencing Detectability with Current Methods

一、发表信息

作者:Fraser et al.

日期:21 Jun 2024

@@ -232,23 +232,11 @@

七、检测率分析(sec5)

})()
\ No newline at end of file diff --git a/404.html b/404.html index a7bacc9..0b6fb11 100644 --- a/404.html +++ b/404.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:09' + postUpdate: '2024-12-19 17:33:19' }
\ No newline at end of file diff --git a/archives/2023/10/index.html b/archives/2023/10/index.html index 00241ca..8d81ff2 100644 --- a/archives/2023/10/index.html +++ b/archives/2023/10/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 1
2023
Hello World
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2023/11/index.html b/archives/2023/11/index.html index 5de1034..1f41eec 100644 --- a/archives/2023/11/index.html +++ b/archives/2023/11/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2023/12/index.html b/archives/2023/12/index.html index 4a66710..42cac3f 100644 --- a/archives/2023/12/index.html +++ b/archives/2023/12/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2023/index.html b/archives/2023/index.html index d0cde56..c7906ef 100644 --- a/archives/2023/index.html +++ b/archives/2023/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/03/index.html b/archives/2024/03/index.html index f55888b..82c3958 100644 --- a/archives/2024/03/index.html +++ b/archives/2024/03/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 3
2024
Routing and Dos
数据加密标准(DES)
散列函数与认证
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/04/index.html b/archives/2024/04/index.html index 14dac8b..0de425a 100644 --- a/archives/2024/04/index.html +++ b/archives/2024/04/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 3
2024
PGP(实验)
数字签名
贝叶斯推理(Bayesian Inference)
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/05/index.html b/archives/2024/05/index.html index 349de90..51484ea 100644 --- a/archives/2024/05/index.html +++ b/archives/2024/05/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 4
2024
安全协议
安全多方计算
非对称加密体制
对称加密体制
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/12/index.html b/archives/2024/12/index.html index 2cb0dad..ea5b5b2 100644 --- a/archives/2024/12/index.html +++ b/archives/2024/12/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/index.html b/archives/2024/index.html index 2dc817c..98f1b0b 100644 --- a/archives/2024/index.html +++ b/archives/2024/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/2024/page/2/index.html b/archives/2024/page/2/index.html index 53ceb4b..a3722f2 100644 --- a/archives/2024/page/2/index.html +++ b/archives/2024/page/2/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 11
2024
散列函数与认证
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/index.html b/archives/index.html index 86641d0..97f9fc6 100644 --- a/archives/index.html +++ b/archives/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/page/2/index.html b/archives/page/2/index.html index 59de95e..f71688c 100644 --- a/archives/page/2/index.html +++ b/archives/page/2/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/archives/page/3/index.html b/archives/page/3/index.html index 052138e..4ce5438 100644 --- a/archives/page/3/index.html +++ b/archives/page/3/index.html @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
文章总览 - 21
2023
Hello World
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Crypto-Notes-\345\257\206\347\240\201\345\255\246\347\254\224\350\256\260/index.html" "b/categories/Crypto-Notes-\345\257\206\347\240\201\345\255\246\347\254\224\350\256\260/index.html" index 60d9ce0..a58f038 100644 --- "a/categories/Crypto-Notes-\345\257\206\347\240\201\345\255\246\347\254\224\350\256\260/index.html" +++ "b/categories/Crypto-Notes-\345\257\206\347\240\201\345\255\246\347\254\224\350\256\260/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
分类 - Crypto Notes 密码学笔记
2024
安全协议
安全多方计算
非对称加密体制
对称加密体制
PGP(实验)
数字签名
数据加密标准(DES)
散列函数与认证
2023
Crypto Basics 1
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Diaries-\346\235\202\350\256\260/index.html" "b/categories/Diaries-\346\235\202\350\256\260/index.html" index 9cdf998..1da2f63 100644 --- "a/categories/Diaries-\346\235\202\350\256\260/index.html" +++ "b/categories/Diaries-\346\235\202\350\256\260/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
分类 - Diaries 杂记
2023
Hello World
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Network-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" "b/categories/Network-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" index 7d642f0..dc0b173 100644 --- "a/categories/Network-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" +++ "b/categories/Network-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
分类 - Network Security 网络安全
2024
Routing and Dos
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Paper-Notes-\350\256\272\346\226\207\351\230\205\350\257\273\347\254\224\350\256\260/index.html" "b/categories/Paper-Notes-\350\256\272\346\226\207\351\230\205\350\257\273\347\254\224\350\256\260/index.html" index 007acf3..7ef358f 100644 --- "a/categories/Paper-Notes-\350\256\272\346\226\207\351\230\205\350\257\273\347\254\224\350\256\260/index.html" +++ "b/categories/Paper-Notes-\350\256\272\346\226\207\351\230\205\350\257\273\347\254\224\350\256\260/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Software-Security-\350\275\257\344\273\266\345\256\211\345\205\250/index.html" "b/categories/Software-Security-\350\275\257\344\273\266\345\256\211\345\205\250/index.html" index b70335b..46a27e4 100644 --- "a/categories/Software-Security-\350\275\257\344\273\266\345\256\211\345\205\250/index.html" +++ "b/categories/Software-Security-\350\275\257\344\273\266\345\256\211\345\205\250/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/Web-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" "b/categories/Web-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" index dbc29be..66d5f94 100644 --- "a/categories/Web-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" +++ "b/categories/Web-Security-\347\275\221\347\273\234\345\256\211\345\205\250/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
分类 - Web Security 网络安全
2023
A1:SQL Injection 1
Signature 签名
最新文章
+ })(window)
\ No newline at end of file diff --git a/categories/index.html b/categories/index.html index 79fb2e6..420840a 100644 --- a/categories/index.html +++ b/categories/index.html @@ -152,14 +152,14 @@ } } detectApple() - })(window)
最新文章
+ })(window)
\ No newline at end of file diff --git "a/categories/\346\234\272\345\231\250\345\255\246\344\271\240/index.html" "b/categories/\346\234\272\345\231\250\345\255\246\344\271\240/index.html" index e0035bf..3e03175 100644 --- "a/categories/\346\234\272\345\231\250\345\255\246\344\271\240/index.html" +++ "b/categories/\346\234\272\345\231\250\345\255\246\344\271\240/index.html" @@ -51,7 +51,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
分类 - 机器学习
2024
贝叶斯推理(Bayesian Inference)
最新文章
+ })(window)
\ No newline at end of file diff --git a/imgs/temp_notes/f(x)=left{begin{array}{ll}x^{2} & text { if } x0 2 x & text { if } x geq 0end{array}right.html b/imgs/temp_notes/f(x)=left{begin{array}{ll}x^{2} & text { if } x0 2 x & text { if } x geq 0end{array}right.html index 123c0a5..824d386 100644 --- a/imgs/temp_notes/f(x)=left{begin{array}{ll}x^{2} & text { if } x0 2 x & text { if } x geq 0end{array}right.html +++ b/imgs/temp_notes/f(x)=left{begin{array}{ll}x^{2} & text { if } x0 2 x & text { if } x geq 0end{array}right.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

f(x)={x2 if x<02x if x0f(x)=\left\{\begin{array}{ll}x^{2} & \text { if } x<0 \\ 2 x & \text { if } x \geq 0\end{array}\right.

+ })(window)

f(x)={x2 if x<02x if x0f(x)=\left\{\begin{array}{ll}x^{2} & \text { if } x<0 \\ 2 x & \text { if } x \geq 0\end{array}\right.

f(x)={x2 if x<02x if x0\left.f(x)=\left\{\begin{matrix}x^2&&\text{ if }x<0\\2x&&\text{ if } x \geq0\end{matrix}\right.\right.


评论
\ No newline at end of file diff --git a/index.html b/index.html index 578c893..157c460 100644 --- a/index.html +++ b/index.html @@ -51,7 +51,7 @@ isHome: true, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/messageboard/index.html b/messageboard/index.html index b137dc0..f566e66 100644 --- a/messageboard/index.html +++ b/messageboard/index.html @@ -150,7 +150,7 @@ } } detectApple() - })(window)

+ })(window)
\ No newline at end of file diff --git a/music/hello-world.html b/music/hello-world.html index 2df84ff..49ae3e7 100644 --- a/music/hello-world.html +++ b/music/hello-world.html @@ -152,7 +152,7 @@ } } detectApple() - })(window)

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

+ })(window)

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"
@@ -173,7 +173,7 @@

Deploy to remote sites

网站资讯
文章数目 :
21
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/page/2/index.html b/page/2/index.html index 5cc7bb7..5c73720 100644 --- a/page/2/index.html +++ b/page/2/index.html @@ -51,7 +51,7 @@ isHome: true, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }
最新文章
+ })(window)
\ No newline at end of file diff --git a/page/3/index.html b/page/3/index.html index e6178cb..c9898e6 100644 --- a/page/3/index.html +++ b/page/3/index.html @@ -51,7 +51,7 @@ isHome: true, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-19 17:23:10' + postUpdate: '2024-12-19 17:33:19' }