上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: PIE(ASLR) 代码段、数据段地址随机化 进程地址空间各区域随机化的措施,称之为ASLR(Address Space Layout Randomization)。ASLR通过随机放置进程关键数据区域的地址空间来防止攻击者能可靠地跳转到内存的特定位置来利用函数。现代操作系统一般都加设这一机制,以防 阅读全文
posted @ 2022-08-26 09:24 sciapex 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 更新了python, 然后运行脚本,提示如下告警信息 /usr/local/lib/python3.8/dist-packages/paramiko/transport.py:219: CryptographyDeprecationWarning: Blowfish has been depreca 阅读全文
posted @ 2022-05-20 15:57 sciapex 阅读(12724) 评论(0) 推荐(0) 编辑
摘要: 1 概述 本文主要阐述使用genivi dlt离线存储相关事项 GENIVI DLT 提供日志和跟踪接口,基于 AUTOSAR 标准 4.0 DLT 中指定的标准化协议。它由其他 GENIVI 组件使用,但可以用作其他应用程序的日志记录框架,与 GENIVI 无关。 本文主要对应DLT Daemon 阅读全文
posted @ 2022-03-28 09:27 sciapex 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 规则: 1. 操作符的处理顺序是从到右, 比如obj<<arg1<<arg2<<arg3, 执行顺序为obj.opt(arg1)-->obj.opt(arg2)->obj.opt(arg3) 2. 如何知道已完成了最后一个操作,这个可以通过析构来确认,比如下面代码的例子,Info()里面创建一个对象 阅读全文
posted @ 2022-03-04 10:12 sciapex 阅读(178) 评论(0) 推荐(0) 编辑
摘要: --host: arm-linux/arm-qnx ./configure --host=arm-linux --prefix=/your_workspace/install CC=/release_version/toolchains/aarch64--glibc--stable/bin/aarc 阅读全文
posted @ 2022-02-11 15:34 sciapex 阅读(1094) 评论(0) 推荐(0) 编辑
摘要: 用于wireshark在3.2版本前没有解析SOME/IP协议的帮助脚本 -- SOME/IP Protocol -- declare our protocol local tempstr someip_proto = Proto("someip","SOME/IP Protocol") servi 阅读全文
posted @ 2022-01-25 11:08 sciapex 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: .../main.cpp:9: ...server.hpp: In member function ‘virtual void server::run()’: ...server.hpp:151:10: error: cannot convert ‘server::run()::<lambda(au 阅读全文
posted @ 2021-12-10 09:43 sciapex 阅读(87) 评论(0) 推荐(0) 编辑
摘要: set(SI_NAME_LIST # TODO:: # 1. add serviceinterface for your need radar_ssrv_interface vision_ssrv_interface ) foreach(SI_NAME ${SI_NAME_LIST}) ac_com 阅读全文
posted @ 2021-12-02 14:32 sciapex 阅读(371) 评论(0) 推荐(0) 编辑
摘要: 开源代码编译一般都使用两种, 一种是大部分通过autoconf的configure进行生成,这种可以通过configure --help了解可以通过配置哪些参数调整编译的细节 另外一种是CMakeFile,而这种通过没有configure。不过,可以通过cmake自身的语法来进行配置。 首先是CMA 阅读全文
posted @ 2021-10-22 14:15 sciapex 阅读(5066) 评论(0) 推荐(0) 编辑
摘要: Exchange账户启用了缓存模式。在这个情况下,邮件的确是无法备份到本地的。因为Outlook在存档和导出的时候,是从本地缓存的数据文件(.ost)里进行的。缓存模式下,如果这些邮件没有被缓存到本地,的确是无法导出。我们可以暂时性的先将所有电子邮件从Exchange服务器缓存到本地OST文件,然后 阅读全文
posted @ 2021-10-18 09:45 sciapex 阅读(1094) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页