Skip to content

Commit bd85956

Browse files
committed
update
1 parent 70db59a commit bd85956

File tree

10 files changed

+42
-28
lines changed

10 files changed

+42
-28
lines changed

blog/2023-10-25-MemoryForensic-Test/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ authors: Randark
55
tags: ["Memory-Forensic"]
66
---
77

8+
只是一个 Linux 内存取证实验
9+
10+
<!-- truncate -->
11+
812
新建虚拟机,使用 `ubuntu-22.04.2-desktop-amd64.iso` 作为安装镜像,正常完成安装,选择最小化安装,并且安装过程中不进行自动更新
913

1014
![Ubuntu install option](img/image_20231037-233754.png)

blog/2023-10-26-0xGame2023-oh-my-linux/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ authors: Randark
55
tags: ["Memory-Forensic"]
66
---
77

8+
将我的 profile-builder 项目实际应用在 CTF 题目中的例子
9+
10+
<!-- truncate -->
11+
812
首先,先分析镜像的内核信息:
913

1014
```shell
@@ -21,7 +25,7 @@ Offset Banner
2125

2226
[Index of /debian-security/pool/main/l/linux](https://debian.sipwise.com/debian-security/pool/main/l/linux/)
2327

24-
![linux-image-5.10.0-21-amd64-dbg_5.10.162-1_amd64.deb](img/image_20231022-192239.png)
28+
![linux-image-5.10.0-21-amd64-dbg\_5.10.162-1\_amd64.deb](img/image_20231022-192239.png)
2529

2630
下载下来后,将其作为 `tar.xz` 文件进行解压缩,得到 `data.tar` 文件,解压缩制作符号表需要的文件:
2731

@@ -133,4 +137,4 @@ randark@memory-forensic:~$ cat a1
133137
: 1677340324:0;G1v3m3F14ggg3
134138
: 1677340335:0;echo "lol"
135139
: 1677340354:0;sudo ./avml oh-my-linux.mem
136-
```
140+
```

blog/2024-03-19-Docker-Swarm-Init/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@ authors: Randark
55
tags: []
66
---
77

8-
> 文章内容为我个人的 Docker 实验集群,带有个人习惯,故并没有放在知识库正文
8+
文章内容为我个人的 Docker 实验集群,带有个人习惯,故并没有放在知识库正文
9+
10+
<!-- truncate -->
911

1012
在文章开始之前,已经基于 Photon OS 部署了四台虚拟机,其中一台主节点,三台作为子节点
1113

1214
![img](img/image_20240335-163531.png)
1315

14-
| hostname | ip address |
16+
| hostname | ip address |
1517
| :-----------: | :-------------: |
1618
| docker-main | 192.168.200.134 |
1719
| docker-node-1 | 192.168.200.135 |
@@ -171,4 +173,4 @@ ywjdr6qpsbjw portainer_portainer replicated 1/1 portainer/portainer
171173

172174
Portainer 服务已经成功启动,访问 `https://192.168.200.134:9443` 之后进行初始化配置,随后即可看到 Portainer 环境状态
173175

174-
![img](img/image_20240317-181715.png)
176+
![img](img/image_20240317-181715.png)

blog/2024-03-19-Kubernetes-Init/index.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

blog/2024-08-18-Docker-Image-Chisel/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ authors: Randark
55
tags: [Docker]
66
---
77

8+
探究 Dockerfile 中的各个操作究竟对最终的镜像大小有多大的影响,并给出减小镜像体积的技巧
9+
10+
<!-- truncate -->
11+
812
## 基础镜像
913

10-
这里采用 [ctf-docker-template/web-lnmp-php73 at main · CTF-Archives/ctf-docker-template](https://github.com/CTF-Archives/ctf-docker-template/tree/main/web-lnmp-php73) 作为研究对象
14+
这里采用 [ctf-docker-template/web-lnmp-php73 at main · CTF-Archives/ctf-docker-template](https://github.com/CTF-Archives/ctf-docker-template/tree/main/web-lnmp-php73) 作为研究对象
1115

1216
原始的 Dockerfile 为
1317

@@ -127,7 +131,7 @@ ENTRYPOINT ["apache2ctl", "-D", "FOREGROUND"]
127131

128132
由于每一个操作关键词 `RUN`, `COPY` 等都会在 image 中增加一个 layer 记录,带来额外的空间占用,所以可以对多个 `RUN` 语句进行整合
129133

130-
优化后的Dockerfile为
134+
优化后的 Dockerfile 为
131135

132136
```dockerfile
133137
FROM ubuntu:22.04
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
slug: 2024-10-01-HashCTF-Preparation
3+
title: HashCTF 筹备测试
4+
authors: Randark
5+
tags: []
6+
---
7+
8+
HachCTF 只是我的一个构思
9+
10+
<!-- truncate -->
11+
12+
预先构思:
13+
14+
- 使用 Github Action 作为答案提交以及 Checker
15+
- A 仓库 (Public) 存放 Github Action 相关逻辑,以及题目信息,还有选手信息
16+
- B 仓库 (Private) 存放题目信息与答案数据

blog/2025-10-02-VIper-Docker-Image-Analysis/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ tags: [Docker]
77

88
Viper 在刚出来的那段时间可谓是炙手可热的项目,极大降低了 Metasploit 框架的使用难度,但是在 2025 年的今天,随着热度下降,以及 Viper 项目进入收费机制,项目已经完全变味,热度也大大下降
99

10+
<!-- truncate -->
11+
1012
:::info
1113

1214
而且是及其难看的收费机制,居然会限制单个session的在线时间,限制session数量都情有可原
@@ -15,8 +17,6 @@ Viper 在刚出来的那段时间可谓是炙手可热的项目,极大降低
1517

1618
本项目仅作为技术分析,请勿用于非法用途和侵犯原作者的行为
1719

18-
<!-- truncate -->
19-
2020
本文章使用的镜像为
2121

2222
```plaintext

docs/Attack-Defense/Intelligence-Report/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@
1818

1919
[报告文件](./Hackthebox/../HTB_BusinessCTF23_report.pdf)
2020

21-
TODO 将现有收集到的报告文件整理到这里
22-
2321
## 长亭
2422

2523
## 深信服
2624

27-
## 思科
25+
## 思科

docs/Attack-Defense/Safety-Vendor/Topsec/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ toc_max_heading_level: 4
55

66
# 天融信
77

8-
TODO 天融信待完善
9-
108
## 基础网络
119

1210
## 工业互联网安全
@@ -23,4 +21,4 @@ TODO 天融信待完善
2321

2422
## 云计算与云安全
2523

26-
## 安全服务与运营
24+
## 安全服务与运营
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# CTFd 插件 开发
22

3-
TODO 去学CTFd插件开发手册
3+
TODO 去学CTFd插件开发手册

0 commit comments

Comments
 (0)