Skip to content

Commit 6abe4f9

Browse files
committed
docs(view): 更新法律依据、警告事项和免责声明内容
在View::DisplayHeader()方法中,增加了新的法律依据和警告事项,并更新了免责声明和开发信息部分。这些更新旨在提供更全面的法律信息和用户指导,确保用户在使用工具时了解相关法律责任和合规要求。
1 parent be79488 commit 6abe4f9

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

model/model.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ void Model::RunApkTool(std::string APK_FILE) {
552552

553553
while (std::getline(in, line)) {
554554
++line_num;
555+
555556
for (const auto& kw : keywords) {
556557
if (line.find(kw) != std::string::npos) {
557558
out << "[文件: " << path << "] 第 " << line_num

view/view.cpp

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,29 @@ void View::DisplayHeader() {
3737
│ 法律依据 ♡
3838
│ • 《中华人民共和国刑事诉讼法》第138条
3939
│ • 《中华人民共和国网络安全法》第50条
40+
│ • 《中华人民共和国公安机关办理刑事案件程序规定》第234条
41+
│ • 《中华人民共和国电子签名法》第14条
4042
│ • 《电子数据取证规范》GA/T 1070-2013
43+
│ • 《移动互联网应用程序信息安全管理规定》
44+
╰──────────────────────────────────────────────────────────╯
45+
╭══════════════════════════════════════════════════════════╮
46+
│ 警告事项 ♡
47+
│ • 未经授权的数据提取可能构成违法行为
48+
│ • 提取的数据可能涉及个人隐私,请依法处理
49+
│ • 建议在获得合法授权后再进行数据提取
50+
│ • 不当使用可能承担法律责任
4151
╰──────────────────────────────────────────────────────────╯
4252
╭══════════════════════════════════════════════════════════╮
4353
│ 免责声明 ♡
4454
│ • 本工具仅供执法部门在法律框架内使用
4555
│ • 作者对任何非法使用或滥用概不负责
4656
│ • 使用本工具即表示同意遵守相关法律法规
57+
│ • 请确保在合法合规的前提下使用本工具
4758
╰──────────────────────────────────────────────────────────╯
4859
╭══════════════════════════════════════════════════════════╮
4960
│ 开发信息 ♡
50-
│ 作者: 钟智强
61+
│ 作者: 钟智强
62+
| 电邮:johnmelodymel@qq.com
5163
╰──────────────────────────────────────────────────────────╯
5264
)" << WHITE << std::endl;
5365
}
@@ -193,4 +205,4 @@ std::string View::GetOSType() {
193205
#else
194206
return "Unknown OS"; // 不认识的系统就这样说啦~
195207
#endif
196-
}
208+
}

0 commit comments

Comments
 (0)