11 2023 档案

摘要:摘自:https://www.cnblogs.com/fnlingnzb-learner/p/11804303.html 转自:https://blog.csdn.net/lxcnn/article/details/4362500 1 概述首先需要说明的一点,无论是Winform,还是Webform 阅读全文
posted @ 2023-11-30 20:37 LiuYanYGZ 阅读(937) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/whatday/article/details/90415997 awk的-F参数可以指定新的记录分隔符,有些时候可能需求指定多个分隔符,比如下面的内容 width:720 height:360 如果需要取出width和height后面的值的话,一般 阅读全文
posted @ 2023-11-30 11:55 LiuYanYGZ 阅读(618) 评论(0) 推荐(0) 编辑
摘要:摘自:https://zhuanlan.zhihu.com/p/259808863 背景介绍 在Linux操作系统中,所有内容都是以文件的形式保存和管理的,包括普通文件、目录、网络通信资源等都是文件,即“一切皆文件”。基于这种机制,针对Linux系统层的攻击方式,本质上往往是通过各种方式,对某些敏感 阅读全文
posted @ 2023-11-29 15:23 LiuYanYGZ 阅读(211) 评论(0) 推荐(0) 编辑
摘要:摘自:https://deepinout.com/linux-cmd/linux-audit-system-related-cmd/linux-cmd-audit-viewer.html Linux audit-viewer命令:查看和总结审计事件的图形工具。 Linux audit-viewer命 阅读全文
posted @ 2023-11-29 15:19 LiuYanYGZ 阅读(25) 评论(0) 推荐(0) 编辑
摘要:摘自:https://deepinout.com/linux-cmd/linux-audit-system-related-cmd/linux-cmd-autrace.html Linux autrace命令:跟踪指定进程。 Linux autrace命令 功能描述 使用autrace命令可以跟踪指 阅读全文
posted @ 2023-11-29 15:18 LiuYanYGZ 阅读(56) 评论(0) 推荐(0) 编辑
摘要:摘自:https://deepinout.com/linux-cmd/linux-audit-system-related-cmd/linux-cmd-ausearch.html Linux ausearch命令:搜索审计记录。 Linux ausearch命令 功能描述 使用ausearch命令可 阅读全文
posted @ 2023-11-29 15:16 LiuYanYGZ 阅读(425) 评论(0) 推荐(0) 编辑
摘要:摘自:https://deepinout.com/linux-cmd/linux-audit-system-related-cmd/linux-cmd-aureport.html Linux aureport命令:生成审计信息报表。 Linux aureport命令 功能描述 使用aureport命 阅读全文
posted @ 2023-11-29 15:15 LiuYanYGZ 阅读(108) 评论(0) 推荐(0) 编辑
摘要:摘自:https://deepinout.com/linux-cmd/linux-audit-system-related-cmd/linux-cmd-auditctl.html Linux auditctl命令:控制内核的审计系统。 Linux auditctl命令 功能描述 使用auditctl 阅读全文
posted @ 2023-11-29 15:12 LiuYanYGZ 阅读(610) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/u010429831/article/details/122722187 (Linux_C环境编程:时间日期函数总结) // TimeUtil.h#ifndef __TIME_UTIL_H__ #define __TIME_UTIL_H__ #ifd 阅读全文
posted @ 2023-11-20 12:16 LiuYanYGZ 阅读(118) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/GerZhouGengCheng/article/details/106103039 // AesUtil.h #ifndef __AES_UTIL_H__ #define __AES_UTIL_H__ #ifdef __cplusplus //告诉 阅读全文
posted @ 2023-11-20 12:07 LiuYanYGZ 阅读(1213) 评论(0) 推荐(0) 编辑
摘要:摘自:https://www.dandelioncloud.cn/article/details/1498198300963708930 // Base64Util.h #ifndef __BASE64_UTIL_H__ #define __BASE64_UTIL_H__ #ifdef __cplu 阅读全文
posted @ 2023-11-20 12:01 LiuYanYGZ 阅读(418) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/mijichui2153/article/details/104741460 1、HMAC简介(1)MAC(Message Authentication Code,消息认证码算法),可以将其认为是含有秘钥的散列(Hash)函数算法;即兼容了MD和SH 阅读全文
posted @ 2023-11-20 11:35 LiuYanYGZ 阅读(365) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/mijichui2153/article/details/104741460 1、HMAC简介(1)MAC(Message Authentication Code,消息认证码算法),可以将其认为是含有秘钥的散列(Hash)函数算法;即兼容了MD和SH 阅读全文
posted @ 2023-11-20 11:32 LiuYanYGZ 阅读(496) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/ljz0929/article/details/108300470 有时候在使用source insight的会发现两个变量命名有多个空格,但是显示的只有一个空格,还有可能连在了一起的情况。这时我们只需要设置一下,关闭Fixed Whitespace 阅读全文
posted @ 2023-11-17 15:52 LiuYanYGZ 阅读(154) 评论(0) 推荐(0) 编辑
摘要:摘自:https://blog.csdn.net/u010429831/article/details/122722187 一、时间日期类型Linux下常用的时间类型有6个:time_t, clock_t, struct timeb, struct timeval, struct timespec, 阅读全文
posted @ 2023-11-15 15:52 LiuYanYGZ 阅读(1398) 评论(0) 推荐(0) 编辑
摘要:摘自:https://wenku.csdn.net/answer/7c7f06c9f8bb466fb48f47bae5aaf99d 摘自:https://www.dandelioncloud.cn/article/details/1498198300963708930 //RsaUtil.h #if 阅读全文
posted @ 2023-11-09 11:06 LiuYanYGZ 阅读(1415) 评论(0) 推荐(0) 编辑
摘要:摘自:https://www.dandelioncloud.cn/article/details/1498198300963708930 #include <stdio.h> #include <string.h> #include <unistd.h> #include <openssl/pem. 阅读全文
posted @ 2023-11-07 16:22 LiuYanYGZ 阅读(322) 评论(0) 推荐(0) 编辑