diff --git a/2000/01/01/hello-world/index.html b/2000/01/01/hello-world/index.html index 142c63b2..a70edf02 100644 --- a/2000/01/01/hello-world/index.html +++ b/2000/01/01/hello-world/index.html @@ -479,8 +479,8 @@
-
@@ -558,7 +558,7 @@ - 22 + 21 日志 @@ -569,7 +569,7 @@
- 8 + 7 分类
@@ -580,7 +580,7 @@
- 44 + 41 标签
@@ -656,7 +656,7 @@ - 67.7k + 65.9k diff --git a/2018/11/16/BIBA访问控制模型实现(python)/index.html b/2018/11/16/BIBA访问控制模型实现(python)/index.html deleted file mode 100644 index 7991bcb4..00000000 --- a/2018/11/16/BIBA访问控制模型实现(python)/index.html +++ /dev/null @@ -1,1525 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 利用python实现BIBA模型 | 混元霹雳手 - - - - - - - - - - - - - - - - - - -
-
- - - -
-
-
-
- - -
- - - - - - - - -
- - - -
- - - - - - - -
- - - -

利用python实现BIBA模型

- - - -
- - - - - -
- - - - - -

基于python语言的BIBA模型图形界面实现

实验目的:

    -
  1. 查阅资料,了解biba安全模型的相关知识
  2. -
  3. 通过编程实现基于biba模型的完整性访问控制,进一步掌握biba模型的规则
  4. -
  5. 使用python语言实现,熟练pyqt的图形界面设计方法
  6. -
-
-

实验环境:

    -
  • 操作系统:Windows10
  • -
  • 工具版本:python3.7,pyqt5
  • -
-
-

实验原理:

什么是安全模型

    -
  • 系统的元素
    -

    具有行为能力的主体
    不具有行为能力的客体

    -
    -
  • -
  • 系统的操作行为
    -

    可以执行的命令:读、写、执行

    -
    -
  • -
  • 对系统行为的约束方式
    -

    对行为的控制策略

    -
    -
  • -
  • 模型从抽象层次规定了系统行为和约束行为的方式
  • -
  • 模型往往用状态来表示
    -

    系统行为所依赖的环境
    行为对系统产生的效果

    -
    -

    biba完整性模型:

      -
    • 完整性威胁问题
      -

      完整性的威胁就是一个子系统在初始时刻认为不正常的修改行为;
      来源:内部&外部;
      类型:直接&间接

      -
      -
    • -
    -
  • -
- - - - - - - - - - - - - - - - - -
外部的直接外部的间接内部的直接内部的间接
外部系统恶意地篡改另一个系统的数据或程序一个外部系统插入恶意的子程序修改自己的代码修改自己的指针
-
    -
  • biba模型的完整性定义
    -

    完整性级别高的实体对完整性低的实体具有完全的支配性,反之如果一个实体对另一个实体具有完全的控制权,说明前者完整性级别更高,这里的实体既可以是主体也可以是客体。
    完整性级别和可信度有密切的关系,完整级别越高,意味着可信度越高。

    -
    -
  • -
  • biba模型的规则
  • -
-
    -
  • 对于写和执行操作,有如下规则:
    -

    写规则控制
    当且仅当主体S的完整性级别大于或等于客体O的完整性级别时,主体S可以写客体O,一般称之为上写
    执行操作控制
    当且仅当主体S2的完整性级别高于或等于S1,主体S1可以执行主体S2。

    -
    -
  • -
  • 关于读操作,有不同的控制策略:
    -

    低水标模型
    任意主体可以读任意完整性级别的客体,但是如果主体读完整性级别比自己低的客体时,主体的完整性级别将为客体完整性级别,否则,主体的完整性级别保持不变。
    环模型
    不管完整性级别如何,任何主体都可以读任何客体
    严格完整性模型
    这个模型对读操作是根据主客体的完整性级别严格控制的,即只有完整性级别低或相等的主体才可以读完整性级别高的客体,称为下读

    -
    -
  • -
-

一般都是指毕巴严格完整性模型,总结来说是上写、下读

-
-

实验内容:

用户登录实现

核对用户输入的账户密码与存储的是否匹配

-

login

-
    -
  • 从用户输入框获取账户和密码
  • -
  • 检查输入信息是否合法(为空)
  • -
  • 从password.txt中获取,并保存在列表listFromLine中
  • -
  • 检查输入的账户是否存在
  • -
  • 若存在,检查对应的密码是否正确
  • -
  • 若正确,判断是管理员还是普通用户,并跳转相应的界面

    -
    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
    def checkPass(self):
    nameIn = self.lineEdit.text()
    passwdIn = self.lineEdit_2.text()
    md5 = hashlib.md5()
    md5.update(passwdIn.encode("utf-8"))
    passwdIn = md5.hexdigest()
    if (nameIn == '') or (passwdIn == ''):
    QMessageBox.warning(self,
    "警告",
    "账号和密码不能为空",
    QMessageBox.Yes)
    self.lineEdit.setFocus()
    print(nameIn, passwdIn)
    fr = open('./etc/passwd.txt')
    arrayofLines = fr.readlines()
    numberofLines = len(arrayofLines)
    for line in arrayofLines:
    line = line.strip()
    listFromLine = line.split(':')
    name = listFromLine[0]
    if name == nameIn:
    numberofLines = -1
    passwd = listFromLine[1]
    if passwd == passwdIn:
    group = listFromLine[2]
    print("\n登录成功!\n")
    if name == 'root':
    print('root登录')
    rootUI.show()
    MainWindow.close()
    else:
    urName = nameIn
    mainUI.lineEdit.setText(urName)
    mainUI.lineEdit_2.setText(group)
    mainUI.show()
    MainWindow.close()
    else:
    QMessageBox.warning(self,
    "警告",
    "密码错误!",
    QMessageBox.Yes)
    self.lineEdit.setFocus()
    fr.close()
    return 0
    -
  • -
-
-

管理员功能实现

管理员可以对用户进行增、删、查的操作

-

login

-

增加用户的实现

-
    -
  • 获取管理员输入的用户名、密码和用户等级
  • -
  • 将明文密码转换为md5值
  • -
  • 判断输入的账户是否已经存在以及是否为空
  • -
  • 如果没有问题,将其存入passwd.txt的末尾
  • -
-
-
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
def adduser(self):
print('开始添加')
name = self.lineEdit_4.text()
passwd = self.lineEdit_6.text()
md5 = hashlib.md5()
md5.update(passwd.encode("utf-8"))
passwd = md5.hexdigest()
group = self.comboBox.currentText()
self.name = name
if self.euxit():
if name == '' or passwd == '':
QMessageBox.warning(self,
"警告",
"账号和密码不能为空",
QMessageBox.Yes)
self.lineEdit.setFocus()
else:
cur_path = os.getcwd()
filename = cur_path + '/etc/passwd.txt'
fi = open(filename, 'r+')
str = name + ':' + passwd + ':' + group + '\n'
print('成功增加用户' + str + '\n')
fi.seek(0, 2)
fi.write(str)
fi.close()
else:
QMessageBox.warning(self,
"警告",
"用户已存在",
QMessageBox.Yes)
self.lineEdit.setFocus()
-

查询已有用户的实现

-

从passwd.txt中逐行读出

-
-

login

-
1
2
3
4
5
6
7
8
9
10
11
12
def readuser(self):
print('readuser')
cur_path = os.getcwd()
filename = cur_path + '/etc/passwd.txt'
fo = open(filename)
arrayofLines = fo.readlines()
names = ''
for line in arrayofLines:
line = line.strip()
listFromLine = line.split(':')
names = names + listFromLine[0] + '\n'
self.textEdit.setPlaceholderText(names)
-

删除用户的实现

-

从passwd.txt中逐行读出用户名,并与待删除用户比较,如果相同,则删除该行

-
-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
def rmuser(self):
print(1)
cur_path = os.getcwd()
filename = cur_path + '/etc/passwd.txt'
rmName = self.lineEdit.text()
with open(filename, 'r',encoding="utf-8") as r:
lines = r.readlines()
lenl = len(lines)
with open(filename, 'w',encoding="utf-8") as w:
for line in lines:
l = line.strip()
listFromLine = l.split(':')
if rmName == listFromLine[0]:
print('删除用户' + rmName)
continue
if line == '\n':
print('find换行')
line = ''
w.write(line)
-
-

普通用户功能实现

普通用户可以完成对合法权限文件的读取、增加内容(上写下读)以及创建文件的操作

-

login

-

读取文件内容

-

双击文件名
获取选中文件和当前用户的完整性级别
如果用户的级别低于文件,则读取文件内容

-
-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
def readfile(self):
dict = self.getGrade()
fgrade = str(dict[self.file_path])
ugrade = self.lineEdit_2.text()
if ugrade >= fgrade:
print(ugrade+ ' 正在读取 '+fgrade)
filename = self.file_path
print(filename)
fr = open(filename)
lines = ''
arrayofLines = fr.readlines()
for line in arrayofLines:
lines += line
self.textEdit.setText(lines)
print('读取成功\n')
else:
QMessageBox.warning(self,
"警告",
"您的用户等级太高",
QMessageBox.Yes)
self.lineEdit.setFocus()
-

增加文件内容

-

双击文件名
获取选中文件和当前用户的完整性级别
如果用户的级别高于文件,则写入文件内容

-
-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
def writefile(self):
dict = self.getGrade()
fgrade = dict[self.file_path]
ugrade = self.lineEdit_2.text()
print(ugrade + ' 正在写入 ' + fgrade)
if ugrade <= fgrade:
filename = self.file_path
str = self.textEdit.toPlainText()
print(str)
fo = open(filename, 'r+')
fo.seek(0, 2)
fo.write(str)
else:
QMessageBox.warning(self,
"警告",
"您的用户等级太低",
QMessageBox.Yes)
self.lineEdit.setFocus()
-

创建文件

-

获取当前用户名和输入的文件名
在当前路径下创建名为用户名的文件
并对新创建的文件与用户等级建立字典,新文件路径为key,用户等级为value
这个字典方便读写时判断等级高低

-
-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
def touchfile(self):
urName = self.lineEdit.text()
filename = self.lineEdit_4.text()
cur_path = os.getcwd()
new_path = os.path.join(cur_path + '/file', urName)
print(urName)
if os.path.exists(new_path) == False:
os.mkdir(new_path)
os.chdir(new_path)
fr = open(filename, 'w')
key = (new_path + '/' + filename).replace('\\', '/')
fr.close()
os.chdir(cur_path)
fa = open('./etc/ac.txt', 'r')
a = fa.read()
if a == '':
dict = {}
else:
dict = eval(a)
dict[key] = self.lineEdit_2.text()
fr = open('./etc/ac.txt', 'w')
fr.write(str(dict))
fr.close()
fa.close()
-
- - -
- - - - - - - -
-
-
您的支持将鼓励我继续创作!
- - -
- -
- - - - - -
- - - -
- - - -
- -
-
- - -
- - - - - - -
- -
- -
- - - - - -
- - - - - - - - - -
-
- - - - -
- - -
- - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/2018/12/15/miio-control/index.html b/2018/12/15/miio-control/index.html index 9be6b82d..b3ae00dc 100644 --- a/2018/12/15/miio-control/index.html +++ b/2018/12/15/miio-control/index.html @@ -534,8 +534,8 @@
-
@@ -632,7 +632,7 @@ - 22 + 21 日志
@@ -643,7 +643,7 @@
- 8 + 7 分类
@@ -654,7 +654,7 @@
- 44 + 41 标签
@@ -746,7 +746,7 @@ - 67.7k + 65.9k diff --git a/2018/12/23/基于规则引擎发现IOT设备/index.html b/2018/12/23/基于规则引擎发现IOT设备/index.html index a184b8e8..460b47db 100644 --- a/2018/12/23/基于规则引擎发现IOT设备/index.html +++ b/2018/12/23/基于规则引擎发现IOT设备/index.html @@ -632,7 +632,7 @@ - 22 + 21 日志 @@ -643,7 +643,7 @@
- 8 + 7 分类
@@ -654,7 +654,7 @@
- 44 + 41 标签
@@ -746,7 +746,7 @@ - 67.7k + 65.9k diff --git a/2018/12/25/TCPDUMP拒绝服务攻击漏洞/index.html b/2018/12/25/TCPDUMP拒绝服务攻击漏洞/index.html index 24daf40a..0a6aa75d 100644 --- a/2018/12/25/TCPDUMP拒绝服务攻击漏洞/index.html +++ b/2018/12/25/TCPDUMP拒绝服务攻击漏洞/index.html @@ -637,7 +637,7 @@ - 22 + 21 日志 @@ -648,7 +648,7 @@
- 8 + 7 分类
@@ -659,7 +659,7 @@
- 44 + 41 标签
@@ -751,7 +751,7 @@ - 67.7k + 65.9k diff --git a/2019/01/16/wifi半双工侧信道攻击学习笔记/index.html b/2019/01/16/wifi半双工侧信道攻击学习笔记/index.html index 4ef42675..94a2428b 100644 --- a/2019/01/16/wifi半双工侧信道攻击学习笔记/index.html +++ b/2019/01/16/wifi半双工侧信道攻击学习笔记/index.html @@ -760,7 +760,7 @@ Server -------wire----------| - 22 + 21 日志 @@ -771,7 +771,7 @@ Server -------wire----------|
- 8 + 7 分类
@@ -782,7 +782,7 @@ Server -------wire----------|
- 44 + 41 标签
@@ -874,7 +874,7 @@ Server -------wire----------| - 67.7k + 65.9k diff --git a/2019/02/22/qq数据库的加密解密/index.html b/2019/02/22/qq数据库的加密解密/index.html index 3692a15d..f0b3b4cb 100644 --- a/2019/02/22/qq数据库的加密解密/index.html +++ b/2019/02/22/qq数据库的加密解密/index.html @@ -609,7 +609,7 @@ - 22 + 21 日志 @@ -620,7 +620,7 @@
- 8 + 7 分类
@@ -631,7 +631,7 @@
- 44 + 41 标签
@@ -723,7 +723,7 @@ - 67.7k + 65.9k diff --git a/2019/03/16/小米固件工具mkxqimage/index.html b/2019/03/16/小米固件工具mkxqimage/index.html index 794623c1..a85df4d0 100644 --- a/2019/03/16/小米固件工具mkxqimage/index.html +++ b/2019/03/16/小米固件工具mkxqimage/index.html @@ -618,7 +618,7 @@ - 22 + 21 日志 @@ -629,7 +629,7 @@
- 8 + 7 分类
@@ -640,7 +640,7 @@
- 44 + 41 标签
@@ -732,7 +732,7 @@ - 67.7k + 65.9k diff --git a/2019/03/23/auto-send-WX/index.html b/2019/03/23/auto-send-WX/index.html index 2c751e20..106b79a5 100644 --- a/2019/03/23/auto-send-WX/index.html +++ b/2019/03/23/auto-send-WX/index.html @@ -626,7 +626,7 @@ - 22 + 21 日志 @@ -637,7 +637,7 @@
- 8 + 7 分类
@@ -648,7 +648,7 @@
- 44 + 41 标签
@@ -740,7 +740,7 @@ - 67.7k + 65.9k diff --git a/2019/03/25/Samba-CVE/index.html b/2019/03/25/Samba-CVE/index.html index 9b97b2c7..3a5fde66 100644 --- a/2019/03/25/Samba-CVE/index.html +++ b/2019/03/25/Samba-CVE/index.html @@ -654,7 +654,7 @@ - 22 + 21 日志 @@ -665,7 +665,7 @@
- 8 + 7 分类
@@ -676,7 +676,7 @@
- 44 + 41 标签
@@ -768,7 +768,7 @@ - 67.7k + 65.9k diff --git a/2019/03/28/逆向工程实验/index.html b/2019/03/28/逆向工程实验/index.html index a301352e..7dda3f52 100644 --- a/2019/03/28/逆向工程实验/index.html +++ b/2019/03/28/逆向工程实验/index.html @@ -754,7 +754,7 @@ - 22 + 21 日志 @@ -765,7 +765,7 @@
- 8 + 7 分类
@@ -776,7 +776,7 @@
- 44 + 41 标签
@@ -868,7 +868,7 @@ - 67.7k + 65.9k diff --git a/2019/04/15/Caving-db-storage/index.html b/2019/04/15/Caving-db-storage/index.html index e3dd4c44..5651c45d 100644 --- a/2019/04/15/Caving-db-storage/index.html +++ b/2019/04/15/Caving-db-storage/index.html @@ -675,7 +675,7 @@ - 22 + 21 日志 @@ -686,7 +686,7 @@
- 8 + 7 分类
@@ -697,7 +697,7 @@
- 44 + 41 标签
@@ -789,7 +789,7 @@ - 67.7k + 65.9k diff --git a/2019/04/21/XIAOMI-UPnP/index.html b/2019/04/21/XIAOMI-UPnP/index.html index 4c54c087..c18049be 100644 --- a/2019/04/21/XIAOMI-UPnP/index.html +++ b/2019/04/21/XIAOMI-UPnP/index.html @@ -799,7 +799,7 @@ - 22 + 21 日志 @@ -810,7 +810,7 @@
- 8 + 7 分类
@@ -821,7 +821,7 @@
- 44 + 41 标签
@@ -913,7 +913,7 @@ - 67.7k + 65.9k diff --git a/2019/05/13/PE-file/index.html b/2019/05/13/PE-file/index.html index 4b0fb6bf..c90f1d0a 100644 --- a/2019/05/13/PE-file/index.html +++ b/2019/05/13/PE-file/index.html @@ -718,7 +718,7 @@ - 22 + 21 日志 @@ -729,7 +729,7 @@
- 8 + 7 分类
@@ -740,7 +740,7 @@
- 44 + 41 标签
@@ -832,7 +832,7 @@ - 67.7k + 65.9k diff --git a/2019/05/14/pack-and-unpack/index.html b/2019/05/14/pack-and-unpack/index.html index c7bf0f78..5307bda5 100644 --- a/2019/05/14/pack-and-unpack/index.html +++ b/2019/05/14/pack-and-unpack/index.html @@ -640,7 +640,7 @@ - 22 + 21 日志 @@ -651,7 +651,7 @@
- 8 + 7 分类
@@ -662,7 +662,7 @@
- 44 + 41 标签
@@ -754,7 +754,7 @@ - 67.7k + 65.9k diff --git a/2019/07/01/AFL-first-learn/index.html b/2019/07/01/AFL-first-learn/index.html index 16e571ea..c84d3056 100644 --- a/2019/07/01/AFL-first-learn/index.html +++ b/2019/07/01/AFL-first-learn/index.html @@ -479,7 +479,7 @@

0x02 AFL快速入门

1)用make编译AFL。如果构建失败,请参阅docs / INSTALL以获取提示。
2)查找或编写一个相当快速和简单的程序,该程序从文件或标准输入中获取数据,以一种有价值的方式处理它,然后干净地退出。如果测试网络服务,请将其修改为在前台运行并从stdin读取。在对使用校验和的格式进行模糊测试时,也要注释掉校验和验证码。
遇到故障时,程序必须正常崩溃。注意自定义SIGSEGV或SIGABRT处理程序和后台进程。有关检测非崩溃缺陷的提示,请参阅docs/README中的第11节。
3)使用afl-gcc编译要模糊的程序/库。一种常见的方法是:

1
2
$ CC = /path/to/afl-gcc CXX =/path/to/afl-g++ ./configure --disable-shared
$ make clean all

-

如果程序构建失败,请联系 afl-users@googlegroups.com
4)获取一个对程序有意义的小而有效的输入文件。在模糊详细语法(SQL,HTTP等)时,也要创建字典,如dictionaries/README.dictionaries中所述。
5)如果程序从stdin读取,则运行afl-fuzz,如下所示:
./afl-fuzz -i testcase_dir -o findings_dir -- /path/to/tested/program [... program's cmdline ...]
如果程序从文件中获取输入,则可以在程序的命令行中输入@@; AFL会为您放置一个自动生成的文件名。

+

如果程序构建失败,请联系 afl-users@googlegroups.com
4)获取一个对程序有意义的小而有效的输入文件。在模糊详细语法(SQL,HTTP等)时,也要创建字典,如dictionaries/README.dictionaries中所述。
5)如果程序从stdin读取,则运行afl-fuzz,如下所示:
./afl-fuzz -i testcase_dir -o findings_dir -- /path/to/tested/program [... program's cmdline ...]
如果程序从文件中获取输入,则可以在程序的命令行中输入@@; AFL会为您放置一个自动生成的文件名。

一些参考文档

docs/README - AFL的一般介绍,
docs/perf_tips.txt - 关于如何快速模糊的简单提示,
docs/status_screen.txt - UI中显示的花絮的解释,
docs/parallel_fuzzing.txt - 关于在多个核上运行AFL的建议
Generated test cases for common image formats - 生成图像文件测试用例的demo
Technical “whitepaper” for afl-fuzz - 技术白皮书

@@ -496,10 +496,10 @@

0x04 AFL README

-

Written and maintained by Michal Zalewski lcamtuf@google.com

+

Written and maintained by Michal Zalewski lcamtuf@google.com

Copyright 2013, 2014, 2015, 2016 Google Inc. All rights reserved.
Released under terms and conditions of Apache License, Version 2.0.

For new versions and additional information, check out:
http://lcamtuf.coredump.cx/afl/

-

To compare notes with other users or get notified about major new features,
send a mail to afl-users+subscribe@googlegroups.com.

+

To compare notes with other users or get notified about major new features,
send a mail to afl-users+subscribe@googlegroups.com.

See QuickStartGuide.txt if you don’t have time to read this file.

1)具有导向性的模糊测试的挑战

Fuzzing是用于识别真实软件中的安全问题的最强大且经过验证的策略之一;它负责安全关键软件中迄今为止发现的绝大多数远程代码执行和权限提升漏洞。
不幸的是,模糊测试也不够有力。盲目的、随机的变异使得它不太可能在测试代码中达到某些代码路径,从而使一些漏洞超出了这种技术的范围。
已经有许多尝试来解决这个问题。早期方法之一 - 由Tavis Ormandy开创 - 是一种 语义库蒸馏(corpus distillation) 。网上找到的一些大型语料库中往往包含大量的文件,这时就需要对其精简,该方法依赖于覆盖信号从大量高质量的候选文件语料库中选择有趣种子的子集,然后通过传统方式对其进行模糊处理。该方法非常有效,但需要这样的语料库随时可用。正因为如此,代码覆盖率 也只是衡量程序执行状态的一个简单化的度量,这种方式并不适合后续引导fuzzing测试的。
其他更复杂的研究集中在诸如 程序流分析(“concoic execution”),符号执行或静态分析 等技术上。所有这些方法在实验环境中都非常有前景,但在实际应用中往往会遇到可靠性和性能问题 - 部分高价值的程序都有非常复杂的内部状态和执行路径,在这一方面符号执行和concolic技术往往会显得不够健壮(如路径爆炸问题),所以仍然稍逊于传统的fuzzing技术。

@@ -913,7 +913,7 @@ - 22 + 21 日志 @@ -924,7 +924,7 @@
- 8 + 7 分类
@@ -935,7 +935,7 @@
- 44 + 41 标签
@@ -1027,7 +1027,7 @@ - 67.7k + 65.9k diff --git a/2019/07/09/afl-first-try/index.html b/2019/07/09/afl-first-try/index.html index 3a1e2af1..78a25f0b 100644 --- a/2019/07/09/afl-first-try/index.html +++ b/2019/07/09/afl-first-try/index.html @@ -703,7 +703,7 @@ - 22 + 21 日志 @@ -714,7 +714,7 @@
- 8 + 7 分类
@@ -725,7 +725,7 @@
- 44 + 41 标签
@@ -817,7 +817,7 @@ - 67.7k + 65.9k diff --git a/2019/07/10/x86basic/index.html b/2019/07/10/x86basic/index.html index 07f8a6bb..0745236d 100644 --- a/2019/07/10/x86basic/index.html +++ b/2019/07/10/x86basic/index.html @@ -735,7 +735,7 @@ - 22 + 21 日志 @@ -746,7 +746,7 @@
- 8 + 7 分类
@@ -757,7 +757,7 @@
- 44 + 41 标签
@@ -849,7 +849,7 @@ - 67.7k + 65.9k diff --git a/2019/07/16/linux-pwn-32/index.html b/2019/07/16/linux-pwn-32/index.html index 7732a47b..ed1a93f0 100644 --- a/2019/07/16/linux-pwn-32/index.html +++ b/2019/07/16/linux-pwn-32/index.html @@ -718,7 +718,7 @@ - 22 + 21 日志 @@ -729,7 +729,7 @@
- 8 + 7 分类
@@ -740,7 +740,7 @@
- 44 + 41 标签
@@ -832,7 +832,7 @@ - 67.7k + 65.9k diff --git a/2019/07/24/web-dvwa/index.html b/2019/07/24/web-dvwa/index.html index 9d3d2678..6f664832 100644 --- a/2019/07/24/web-dvwa/index.html +++ b/2019/07/24/web-dvwa/index.html @@ -731,7 +731,7 @@ - 22 + 21 日志 @@ -742,7 +742,7 @@
- 8 + 7 分类
@@ -753,7 +753,7 @@
- 44 + 41 标签
@@ -845,7 +845,7 @@ - 67.7k + 65.9k diff --git a/2019/07/24/获取固件/index.html b/2019/07/24/获取固件/index.html index 12926c7b..041f0a55 100644 --- a/2019/07/24/获取固件/index.html +++ b/2019/07/24/获取固件/index.html @@ -614,7 +614,7 @@ - 22 + 21 日志 @@ -625,7 +625,7 @@
- 8 + 7 分类
@@ -636,7 +636,7 @@
- 44 + 41 标签
@@ -728,7 +728,7 @@ - 67.7k + 65.9k diff --git a/2019/07/25/Debug-a-router-firmware/index.html b/2019/07/25/Debug-a-router-firmware/index.html index e28917c0..29a36f74 100644 --- a/2019/07/25/Debug-a-router-firmware/index.html +++ b/2019/07/25/Debug-a-router-firmware/index.html @@ -658,7 +658,7 @@ - 22 + 21 日志 @@ -669,7 +669,7 @@
- 8 + 7 分类
@@ -680,7 +680,7 @@
- 44 + 41 标签
@@ -772,7 +772,7 @@ - 67.7k + 65.9k diff --git a/about/index.html b/about/index.html index 9d32b638..359ebeda 100644 --- a/about/index.html +++ b/about/index.html @@ -377,7 +377,7 @@ - 22 + 21 日志 @@ -388,7 +388,7 @@
- 8 + 7 分类
@@ -399,7 +399,7 @@
- 44 + 41 标签
@@ -475,7 +475,7 @@ - 67.7k + 65.9k diff --git a/archives/2000/01/index.html b/archives/2000/01/index.html index 05a74b8d..539e13ee 100644 --- a/archives/2000/01/index.html +++ b/archives/2000/01/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -410,7 +410,7 @@ - 22 + 21 日志 @@ -421,7 +421,7 @@
- 8 + 7 分类
@@ -432,7 +432,7 @@
- 44 + 41 标签
@@ -508,7 +508,7 @@ - 67.7k + 65.9k diff --git a/archives/2000/index.html b/archives/2000/index.html index d3dd422e..7f386a4d 100644 --- a/archives/2000/index.html +++ b/archives/2000/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -410,7 +410,7 @@ - 22 + 21 日志 @@ -421,7 +421,7 @@
- 8 + 7 分类
@@ -432,7 +432,7 @@
- 44 + 41 标签
@@ -508,7 +508,7 @@ - 67.7k + 65.9k diff --git a/archives/2018/11/index.html b/archives/2018/11/index.html deleted file mode 100644 index fc0f786d..00000000 --- a/archives/2018/11/index.html +++ /dev/null @@ -1,1163 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 归档 | 混元霹雳手 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/archives/2018/12/index.html b/archives/2018/12/index.html index f1cff5e1..9749f434 100644 --- a/archives/2018/12/index.html +++ b/archives/2018/12/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -480,7 +480,7 @@ - 22 + 21 日志 @@ -491,7 +491,7 @@
- 8 + 7 分类
@@ -502,7 +502,7 @@
- 44 + 41 标签
@@ -578,7 +578,7 @@ - 67.7k + 65.9k diff --git a/archives/2018/index.html b/archives/2018/index.html index af514178..d6150c79 100644 --- a/archives/2018/index.html +++ b/archives/2018/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -427,41 +427,6 @@ - - - - - - - - - -
-
- -

- - - -

- - - -
-
- - - - - @@ -515,7 +480,7 @@ - 22 + 21 日志 @@ -526,7 +491,7 @@
- 8 + 7 分类
@@ -537,7 +502,7 @@
- 44 + 41 标签
@@ -613,7 +578,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/01/index.html b/archives/2019/01/index.html index 9c9c1527..654b84c8 100644 --- a/archives/2019/01/index.html +++ b/archives/2019/01/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -410,7 +410,7 @@ - 22 + 21 日志 @@ -421,7 +421,7 @@
- 8 + 7 分类
@@ -432,7 +432,7 @@
- 44 + 41 标签
@@ -508,7 +508,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/02/index.html b/archives/2019/02/index.html index 2423d588..027297cc 100644 --- a/archives/2019/02/index.html +++ b/archives/2019/02/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -410,7 +410,7 @@ - 22 + 21 日志 @@ -421,7 +421,7 @@
- 8 + 7 分类
@@ -432,7 +432,7 @@
- 44 + 41 标签
@@ -508,7 +508,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/03/index.html b/archives/2019/03/index.html index 203dcb52..f1afbfc4 100644 --- a/archives/2019/03/index.html +++ b/archives/2019/03/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -515,7 +515,7 @@ - 22 + 21 日志 @@ -526,7 +526,7 @@
- 8 + 7 分类
@@ -537,7 +537,7 @@
- 44 + 41 标签
@@ -613,7 +613,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/04/index.html b/archives/2019/04/index.html index c19c557b..1e4e2f6b 100644 --- a/archives/2019/04/index.html +++ b/archives/2019/04/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -445,7 +445,7 @@ - 22 + 21 日志 @@ -456,7 +456,7 @@
- 8 + 7 分类
@@ -467,7 +467,7 @@
- 44 + 41 标签
@@ -543,7 +543,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/05/index.html b/archives/2019/05/index.html index c9679345..dea6af7a 100644 --- a/archives/2019/05/index.html +++ b/archives/2019/05/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -445,7 +445,7 @@ - 22 + 21 日志 @@ -456,7 +456,7 @@
- 8 + 7 分类
@@ -467,7 +467,7 @@
- 44 + 41 标签
@@ -543,7 +543,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/07/index.html b/archives/2019/07/index.html index e4e3eb84..1f30d3a9 100644 --- a/archives/2019/07/index.html +++ b/archives/2019/07/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -620,7 +620,7 @@ - 22 + 21 日志 @@ -631,7 +631,7 @@
- 8 + 7 分类
@@ -642,7 +642,7 @@
- 44 + 41 标签
@@ -718,7 +718,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/index.html b/archives/2019/index.html index 393b3061..e3ca489d 100644 --- a/archives/2019/index.html +++ b/archives/2019/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -729,7 +729,7 @@ - 22 + 21 日志 @@ -740,7 +740,7 @@
- 8 + 7 分类
@@ -751,7 +751,7 @@
- 44 + 41 标签
@@ -827,7 +827,7 @@ - 67.7k + 65.9k diff --git a/archives/2019/page/2/index.html b/archives/2019/page/2/index.html index 2e8820bf..1ccbab93 100644 --- a/archives/2019/page/2/index.html +++ b/archives/2019/page/2/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -624,7 +624,7 @@ - 22 + 21 日志 @@ -635,7 +635,7 @@
- 8 + 7 分类
@@ -646,7 +646,7 @@
- 44 + 41 标签
@@ -722,7 +722,7 @@ - 67.7k + 65.9k diff --git a/archives/index.html b/archives/index.html index c1f139a3..bcc0282d 100644 --- a/archives/index.html +++ b/archives/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -729,7 +729,7 @@ - 22 + 21 日志 @@ -740,7 +740,7 @@
- 8 + 7 分类
@@ -751,7 +751,7 @@
- 44 + 41 标签
@@ -827,7 +827,7 @@ - 67.7k + 65.9k diff --git a/archives/page/2/index.html b/archives/page/2/index.html index 54a1759b..4c49b2cc 100644 --- a/archives/page/2/index.html +++ b/archives/page/2/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -734,7 +734,7 @@ - 22 + 21 日志 @@ -745,7 +745,7 @@
- 8 + 7 分类
@@ -756,7 +756,7 @@
- 44 + 41 标签
@@ -832,7 +832,7 @@ - 67.7k + 65.9k diff --git a/archives/page/3/index.html b/archives/page/3/index.html index d638bf26..c3b01335 100644 --- a/archives/page/3/index.html +++ b/archives/page/3/index.html @@ -312,7 +312,7 @@ - 嗯..! 目前共计 22 篇日志。 继续努力。 + 嗯..! 目前共计 21 篇日志。 继续努力。 @@ -323,46 +323,6 @@ -
-

2018

-
- - - - - -
-
- -

- - - -

- - - -
-
- - - - - - - - - - -

2000

@@ -454,7 +414,7 @@ - 22 + 21 日志 @@ -465,7 +425,7 @@
- 8 + 7 分类
@@ -476,7 +436,7 @@
- 44 + 41 标签
@@ -552,7 +512,7 @@ - 67.7k + 65.9k diff --git a/baidusitemap.xml b/baidusitemap.xml index c55cdda8..cfa71ef4 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -48,23 +48,20 @@ https://cool-y.github.io/2018/12/23/%E5%9F%BA%E4%BA%8E%E8%A7%84%E5%88%99%E5%BC%95%E6%93%8E%E5%8F%91%E7%8E%B0IOT%E8%AE%BE%E5%A4%87/ 2019-04-15 - - https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ - 2019-04-15 https://cool-y.github.io/2019/02/22/qq%E6%95%B0%E6%8D%AE%E5%BA%93%E7%9A%84%E5%8A%A0%E5%AF%86%E8%A7%A3%E5%AF%86/ 2019-04-15 https://cool-y.github.io/2018/12/15/miio-control/ 2019-04-15 + + https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + 2019-04-15 https://cool-y.github.io/2019/03/23/auto-send-WX/ 2019-04-15 https://cool-y.github.io/2000/01/01/hello-world/ 2019-04-15 - - https://cool-y.github.io/2018/11/16/BIBA%E8%AE%BF%E9%97%AE%E6%8E%A7%E5%88%B6%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0(python)/ - 2019-04-15 diff --git a/bookmarks/index.html b/bookmarks/index.html index 7eef22dd..d64ef97a 100644 --- a/bookmarks/index.html +++ b/bookmarks/index.html @@ -413,7 +413,7 @@ - 22 + 21 日志 @@ -424,7 +424,7 @@
- 8 + 7 分类
@@ -435,7 +435,7 @@
- 44 + 41 标签
@@ -527,7 +527,7 @@ - 67.7k + 65.9k diff --git a/categories/IOT/index.html b/categories/IOT/index.html index 66566e54..0239445f 100644 --- a/categories/IOT/index.html +++ b/categories/IOT/index.html @@ -521,7 +521,7 @@ - 22 + 21 日志 @@ -532,7 +532,7 @@
- 8 + 7 分类
@@ -543,7 +543,7 @@
- 44 + 41 标签
@@ -619,7 +619,7 @@ - 67.7k + 65.9k diff --git a/categories/Pwn二进制漏洞/index.html b/categories/Pwn二进制漏洞/index.html index 49414417..d77a12d6 100644 --- a/categories/Pwn二进制漏洞/index.html +++ b/categories/Pwn二进制漏洞/index.html @@ -417,7 +417,7 @@ - 22 + 21 日志 @@ -428,7 +428,7 @@
- 8 + 7 分类
@@ -439,7 +439,7 @@
- 44 + 41 标签
@@ -515,7 +515,7 @@ - 67.7k + 65.9k diff --git a/categories/index.html b/categories/index.html index 3f0bd2e4..5f37db36 100644 --- a/categories/index.html +++ b/categories/index.html @@ -321,10 +321,10 @@
- 目前共计 8 个分类 + 目前共计 7 个分类
@@ -382,7 +382,7 @@ - 22 + 21 日志 @@ -393,7 +393,7 @@
- 8 + 7 分类
@@ -404,7 +404,7 @@
- 44 + 41 标签
@@ -480,7 +480,7 @@ - 67.7k + 65.9k diff --git a/categories/web/index.html b/categories/web/index.html index 8012cf68..80b4194b 100644 --- a/categories/web/index.html +++ b/categories/web/index.html @@ -391,7 +391,7 @@ - 22 + 21 日志 @@ -402,7 +402,7 @@
- 8 + 7 分类
@@ -413,7 +413,7 @@
- 44 + 41 标签
@@ -489,7 +489,7 @@ - 67.7k + 65.9k diff --git a/categories/二进制/index.html b/categories/二进制/index.html index 5dc3fb10..6a04f4db 100644 --- a/categories/二进制/index.html +++ b/categories/二进制/index.html @@ -495,7 +495,7 @@ - 22 + 21 日志 @@ -506,7 +506,7 @@
- 8 + 7 分类
@@ -517,7 +517,7 @@
- 44 + 41 标签
@@ -593,7 +593,7 @@ - 67.7k + 65.9k diff --git a/categories/加密解密/index.html b/categories/加密解密/index.html index 08aac339..67b8fb6f 100644 --- a/categories/加密解密/index.html +++ b/categories/加密解密/index.html @@ -391,7 +391,7 @@ - 22 + 21 日志 @@ -402,7 +402,7 @@
- 8 + 7 分类
@@ -413,7 +413,7 @@
- 44 + 41 标签
@@ -489,7 +489,7 @@ - 67.7k + 65.9k diff --git a/categories/杂七杂八/index.html b/categories/杂七杂八/index.html index 3fab7562..e1a8ff40 100644 --- a/categories/杂七杂八/index.html +++ b/categories/杂七杂八/index.html @@ -391,7 +391,7 @@ - 22 + 21 日志 @@ -402,7 +402,7 @@
- 8 + 7 分类
@@ -413,7 +413,7 @@
- 44 + 41 标签
@@ -489,7 +489,7 @@ - 67.7k + 65.9k diff --git a/categories/理论学习/index.html b/categories/理论学习/index.html deleted file mode 100644 index 500b2b25..00000000 --- a/categories/理论学习/index.html +++ /dev/null @@ -1,1144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 分类: 理论学习 | 混元霹雳手 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/categories/顶会论文/index.html b/categories/顶会论文/index.html index b971e1f3..db9aeb87 100644 --- a/categories/顶会论文/index.html +++ b/categories/顶会论文/index.html @@ -443,7 +443,7 @@ - 22 + 21 日志 @@ -454,7 +454,7 @@
- 8 + 7 分类
@@ -465,7 +465,7 @@
- 44 + 41 标签
@@ -541,7 +541,7 @@ - 67.7k + 65.9k diff --git a/css/main.css b/css/main.css index 0eb1edb5..f0f70215 100644 --- a/css/main.css +++ b/css/main.css @@ -1943,7 +1943,7 @@ pre .javascript .function { width: 4px; height: 4px; border-radius: 50%; - background: #e3ffd7; + background: #048809; } .links-of-blogroll { font-size: 13px; diff --git a/hack之外/index.html b/hack之外/index.html index 241bc16e..e42dd9ab 100644 --- a/hack之外/index.html +++ b/hack之外/index.html @@ -375,7 +375,7 @@ - 22 + 21 日志 @@ -386,7 +386,7 @@
- 8 + 7 分类
@@ -397,7 +397,7 @@
- 44 + 41 标签
@@ -473,7 +473,7 @@ - 67.7k + 65.9k diff --git a/index.html b/index.html index 74e39d7b..7b4ec66c 100644 --- a/index.html +++ b/index.html @@ -2210,7 +2210,7 @@ MiniUPnP项目提供了支持UPnP IGD(互联网网关设备)规范的软件。 - 22 + 21 日志 @@ -2221,7 +2221,7 @@ MiniUPnP项目提供了支持UPnP IGD(互联网网关设备)规范的软件。
- 8 + 7 分类
@@ -2232,7 +2232,7 @@ MiniUPnP项目提供了支持UPnP IGD(互联网网关设备)规范的软件。
- 44 + 41 标签
@@ -2308,7 +2308,7 @@ MiniUPnP项目提供了支持UPnP IGD(互联网网关设备)规范的软件。 - 67.7k + 65.9k diff --git a/page/2/index.html b/page/2/index.html index ea21a24b..111c7261 100644 --- a/page/2/index.html +++ b/page/2/index.html @@ -2266,7 +2266,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q - 22 + 21 日志 @@ -2277,7 +2277,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q
- 8 + 7 分类
@@ -2288,7 +2288,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q
- 44 + 41 标签
@@ -2364,7 +2364,7 @@ ettercap嗅探智能设备和网关之间的流量sudo ettercap -i ens33 -T -q - 67.7k + 65.9k diff --git a/page/3/index.html b/page/3/index.html index 1edb79b4..4c729a73 100644 --- a/page/3/index.html +++ b/page/3/index.html @@ -309,200 +309,6 @@ -
- - - -
- - - - - - - -
- - - -

- -

- - - -
- - - - - -
- - - - - - - - 基于python语言的BIBA模型图形界面实现实验目的: -查阅资料,了解biba安全模型的相关知识 -通过编程实现基于biba模型的完整性访问控制,进一步掌握biba模型的规则 -使用python语言实现,熟练pyqt的图形界面设计方法 - - -实验环境: -操作系统:Windows10 -工具版本:pytho - ... - -
- - 阅读全文 » - -
- - - -
- - - - - - - - - - -
- - - - - - - - -
- -
-
- - - -
- - - - - - - - - - -
@@ -712,7 +518,7 @@ - 22 + 21 日志 @@ -723,7 +529,7 @@ @@ -734,7 +540,7 @@ @@ -810,7 +616,7 @@ - 67.7k + 65.9k diff --git a/search.xml b/search.xml index e59d0fb6..91661ade 100644 --- a/search.xml +++ b/search.xml @@ -78,7 +78,7 @@ <![CDATA[模糊测试与AFL]]> %2F2019%2F07%2F01%2FAFL-first-learn%2F - + 二进制 @@ -244,19 +244,6 @@ 重放攻击 - - <![CDATA[利用python实现BIBA模型]]> - %2F2018%2F11%2F16%2FBIBA%E8%AE%BF%E9%97%AE%E6%8E%A7%E5%88%B6%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0(python)%2F - - - 理论学习 - - - 模型实现 - python - 访问控制 - - <![CDATA[Hello World]]> %2F2000%2F01%2F01%2Fhello-world%2F diff --git a/sitemap.xml b/sitemap.xml index c761068f..a3de817c 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -128,14 +128,14 @@ - https://cool-y.github.io/googleacf4df440b4becc4.html + https://cool-y.github.io/categories/index.html 2019-04-15T07:35:38.085Z - https://cool-y.github.io/categories/index.html + https://cool-y.github.io/googleacf4df440b4becc4.html 2019-04-15T07:35:38.085Z @@ -148,13 +148,6 @@ - - https://cool-y.github.io/2018/12/23/%E5%9F%BA%E4%BA%8E%E8%A7%84%E5%88%99%E5%BC%95%E6%93%8E%E5%8F%91%E7%8E%B0IOT%E8%AE%BE%E5%A4%87/ - - 2019-04-15T07:35:38.083Z - - - https://cool-y.github.io/about/index.html @@ -163,9 +156,9 @@ - https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + https://cool-y.github.io/2018/12/23/%E5%9F%BA%E4%BA%8E%E8%A7%84%E5%88%99%E5%BC%95%E6%93%8E%E5%8F%91%E7%8E%B0IOT%E8%AE%BE%E5%A4%87/ - 2019-04-15T07:35:38.082Z + 2019-04-15T07:35:38.083Z @@ -183,6 +176,13 @@ + + https://cool-y.github.io/2019/01/16/wifi%E5%8D%8A%E5%8F%8C%E5%B7%A5%E4%BE%A7%E4%BF%A1%E9%81%93%E6%94%BB%E5%87%BB%E5%AD%A6%E4%B9%A0%E7%AC%94%E8%AE%B0/ + + 2019-04-15T07:35:38.082Z + + + https://cool-y.github.io/2019/03/23/auto-send-WX/ @@ -197,11 +197,4 @@ - - https://cool-y.github.io/2018/11/16/BIBA%E8%AE%BF%E9%97%AE%E6%8E%A7%E5%88%B6%E6%A8%A1%E5%9E%8B%E5%AE%9E%E7%8E%B0(python)/ - - 2019-04-15T07:35:38.080Z - - - diff --git a/tags/AFL/index.html b/tags/AFL/index.html index be0ab26c..f4d87568 100644 --- a/tags/AFL/index.html +++ b/tags/AFL/index.html @@ -416,7 +416,7 @@ - 22 + 21 日志 @@ -427,7 +427,7 @@ @@ -438,7 +438,7 @@ @@ -514,7 +514,7 @@ - 67.7k + 65.9k diff --git a/tags/CVE/index.html b/tags/CVE/index.html index adfde5f8..c258772a 100644 --- a/tags/CVE/index.html +++ b/tags/CVE/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/IoT/index.html b/tags/IoT/index.html index 245a3997..8ad2916d 100644 --- a/tags/IoT/index.html +++ b/tags/IoT/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/MiniUPnP/index.html b/tags/MiniUPnP/index.html index 5af35b83..25766ece 100644 --- a/tags/MiniUPnP/index.html +++ b/tags/MiniUPnP/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/PE/index.html b/tags/PE/index.html index eac99763..2f633644 100644 --- a/tags/PE/index.html +++ b/tags/PE/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/QQ/index.html b/tags/QQ/index.html index 88d1fd99..54e30d05 100644 --- a/tags/QQ/index.html +++ b/tags/QQ/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/SSH/index.html b/tags/SSH/index.html index 11040342..583a58db 100644 --- a/tags/SSH/index.html +++ b/tags/SSH/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/Samba/index.html b/tags/Samba/index.html index a8fdaa6a..0b74afbe 100644 --- a/tags/Samba/index.html +++ b/tags/Samba/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/TCPDUMP/index.html b/tags/TCPDUMP/index.html index 30db5b7c..32b922a5 100644 --- a/tags/TCPDUMP/index.html +++ b/tags/TCPDUMP/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/USENIX/index.html b/tags/USENIX/index.html index 52b42ca8..a524c377 100644 --- a/tags/USENIX/index.html +++ b/tags/USENIX/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/Windows/index.html b/tags/Windows/index.html index e8ef4857..38d7b444 100644 --- a/tags/Windows/index.html +++ b/tags/Windows/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/ctf/index.html b/tags/ctf/index.html index 6bdad914..5d2e48ed 100644 --- a/tags/ctf/index.html +++ b/tags/ctf/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/index.html b/tags/index.html index 7402b4e4..ea4efddf 100644 --- a/tags/index.html +++ b/tags/index.html @@ -321,10 +321,10 @@ @@ -382,7 +382,7 @@ - 22 + 21 日志 @@ -393,7 +393,7 @@ @@ -404,7 +404,7 @@ @@ -480,7 +480,7 @@ - 67.7k + 65.9k diff --git a/tags/itchat/index.html b/tags/itchat/index.html index ef71f26c..bc8cccde 100644 --- a/tags/itchat/index.html +++ b/tags/itchat/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/linux/index.html b/tags/linux/index.html index e064aa1d..9a8c992b 100644 --- a/tags/linux/index.html +++ b/tags/linux/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/miio/index.html b/tags/miio/index.html index 5f1ca9d2..9e793905 100644 --- a/tags/miio/index.html +++ b/tags/miio/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/pwn/index.html b/tags/pwn/index.html index 4415262f..f63aaf6b 100644 --- a/tags/pwn/index.html +++ b/tags/pwn/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/python/index.html b/tags/python/index.html deleted file mode 100644 index 42c92681..00000000 --- a/tags/python/index.html +++ /dev/null @@ -1,1143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 标签: python | 混元霹雳手 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tags/web/index.html b/tags/web/index.html index ffebdba2..51555916 100644 --- a/tags/web/index.html +++ b/tags/web/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/wifi/index.html b/tags/wifi/index.html index 5fd6174b..77cfd916 100644 --- a/tags/wifi/index.html +++ b/tags/wifi/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/中间人/index.html b/tags/中间人/index.html index f0b0eed7..56c27e38 100644 --- a/tags/中间人/index.html +++ b/tags/中间人/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/二进制/index.html b/tags/二进制/index.html index c3d1f861..a5f81d77 100644 --- a/tags/二进制/index.html +++ b/tags/二进制/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/侧信道攻击/index.html b/tags/侧信道攻击/index.html index 284a0432..74d86746 100644 --- a/tags/侧信道攻击/index.html +++ b/tags/侧信道攻击/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/取证/index.html b/tags/取证/index.html index fbe642a5..b126ffb5 100644 --- a/tags/取证/index.html +++ b/tags/取证/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/复原文件/index.html b/tags/复原文件/index.html index 113a24b2..788dc9ce 100644 --- a/tags/复原文件/index.html +++ b/tags/复原文件/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/密码/index.html b/tags/密码/index.html index 02679d8a..6d450922 100644 --- a/tags/密码/index.html +++ b/tags/密码/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/小米/index.html b/tags/小米/index.html index 515b8f29..474c47c2 100644 --- a/tags/小米/index.html +++ b/tags/小米/index.html @@ -468,7 +468,7 @@ - 22 + 21 日志 @@ -479,7 +479,7 @@ @@ -490,7 +490,7 @@ @@ -566,7 +566,7 @@ - 67.7k + 65.9k diff --git a/tags/微信/index.html b/tags/微信/index.html index eea93e0d..570b44ca 100644 --- a/tags/微信/index.html +++ b/tags/微信/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/拒绝服务攻击/index.html b/tags/拒绝服务攻击/index.html index 9e15ed01..ee63adbc 100644 --- a/tags/拒绝服务攻击/index.html +++ b/tags/拒绝服务攻击/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/数据库/index.html b/tags/数据库/index.html index 53f00ceb..6eb4be0b 100644 --- a/tags/数据库/index.html +++ b/tags/数据库/index.html @@ -416,7 +416,7 @@ - 22 + 21 日志 @@ -427,7 +427,7 @@ @@ -438,7 +438,7 @@ @@ -514,7 +514,7 @@ - 67.7k + 65.9k diff --git a/tags/数据挖掘/index.html b/tags/数据挖掘/index.html index 5cf76caf..47efa70c 100644 --- a/tags/数据挖掘/index.html +++ b/tags/数据挖掘/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/文件格式/index.html b/tags/文件格式/index.html index c8efe997..feac00a4 100644 --- a/tags/文件格式/index.html +++ b/tags/文件格式/index.html @@ -416,7 +416,7 @@ - 22 + 21 日志 @@ -427,7 +427,7 @@ @@ -438,7 +438,7 @@ @@ -514,7 +514,7 @@ - 67.7k + 65.9k diff --git a/tags/栈溢出/index.html b/tags/栈溢出/index.html index 4a04f2b5..a834d649 100644 --- a/tags/栈溢出/index.html +++ b/tags/栈溢出/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/模型实现/index.html b/tags/模型实现/index.html deleted file mode 100644 index 60a5e9cf..00000000 --- a/tags/模型实现/index.html +++ /dev/null @@ -1,1143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 标签: 模型实现 | 混元霹雳手 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tags/模糊测试/index.html b/tags/模糊测试/index.html index 3614a78a..a047dad4 100644 --- a/tags/模糊测试/index.html +++ b/tags/模糊测试/index.html @@ -416,7 +416,7 @@ - 22 + 21 日志 @@ -427,7 +427,7 @@ @@ -438,7 +438,7 @@ @@ -514,7 +514,7 @@ - 67.7k + 65.9k diff --git a/tags/漏洞/index.html b/tags/漏洞/index.html index 80954bf1..b97bf9a8 100644 --- a/tags/漏洞/index.html +++ b/tags/漏洞/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/破解/index.html b/tags/破解/index.html index e2d98460..24ae13bd 100644 --- a/tags/破解/index.html +++ b/tags/破解/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/硬件层/index.html b/tags/硬件层/index.html index 3d685d59..c055c1e2 100644 --- a/tags/硬件层/index.html +++ b/tags/硬件层/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/自然语言处理/index.html b/tags/自然语言处理/index.html index 15da122e..b963f264 100644 --- a/tags/自然语言处理/index.html +++ b/tags/自然语言处理/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/访问控制/index.html b/tags/访问控制/index.html deleted file mode 100644 index dade9ac0..00000000 --- a/tags/访问控制/index.html +++ /dev/null @@ -1,1143 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 标签: 访问控制 | 混元霹雳手 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tags/调试/index.html b/tags/调试/index.html index ca709ece..34b04249 100644 --- a/tags/调试/index.html +++ b/tags/调试/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/路由器/index.html b/tags/路由器/index.html index 125cd2c0..27f595c8 100644 --- a/tags/路由器/index.html +++ b/tags/路由器/index.html @@ -416,7 +416,7 @@ - 22 + 21 日志 @@ -427,7 +427,7 @@ @@ -438,7 +438,7 @@ @@ -514,7 +514,7 @@ - 67.7k + 65.9k diff --git a/tags/远程执行/index.html b/tags/远程执行/index.html index ce9df4a0..53a71ac2 100644 --- a/tags/远程执行/index.html +++ b/tags/远程执行/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/逆向/index.html b/tags/逆向/index.html index eac02d40..5c1b642a 100644 --- a/tags/逆向/index.html +++ b/tags/逆向/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k diff --git a/tags/重放攻击/index.html b/tags/重放攻击/index.html index 81c4517a..d51cbe94 100644 --- a/tags/重放攻击/index.html +++ b/tags/重放攻击/index.html @@ -390,7 +390,7 @@ - 22 + 21 日志 @@ -401,7 +401,7 @@ @@ -412,7 +412,7 @@ @@ -488,7 +488,7 @@ - 67.7k + 65.9k