from--https://zhuanlan.zhihu.com/p/432875529 1 protobuf 简介 protobuf (protocol buffer) 是谷歌内部的混合语言数据标准。通过将结构化的数据进行序列化(串行化),用于通讯协议、数据存储等领域的语言无关、平台无关、可扩展的序列化结构数据格式。 我们说的 protobuf 通常包括下面三点: 一种二进制数据交换格式。可以将 C++ 中定义的存储类的内容 与 二进制序列串 相互转换,主要用于数据传输或保存 定义了一种源文件,扩展名为 .proto(类比.cpp文件),使用这种源文件,可以定义存储类的内容 protobuf有自己的编译器 protoc,可以将 .proto 编译成.cc文件,使之成为一个可以在 C++ 工程中直接使用的类 序列化:将数据结构或对象转换成二…
PXE以UEFI模式启动原版windows7/10安装系统实践
Windows: Recover lost passwords from memory

from--https://zhuanlan.zhihu.com/p/270702790 近期公司给新入职员工配了几十台办公笔记本,由于预装系统硬盘只分了一个区,故需要重新分区,重装系统。考虑到用U盘、光盘重装系统都极其浪费时间。故尝试使用 PXE 启动方式以 UEFI 模式引导启动原版 Windows 安装盘进行,以下教程采用 VMWare 虚拟机为例进行安装: 一、准备工具 VMWare WorkStation Pro MSDN版Windows 7 x64 原版安装盘ISO镜像 tiny PXE Server 1.0.0.23 二、安装步骤 (1)安装好 VMWare WorkStation Pro,并通过“新建虚拟机向导”使用“典型(推荐)”配置、稍后安装操作系统、客户机操作系统(Microsoft Windows - Windows…
from--https://michlstechblog.info/blog/windows-recover-lost-passwords-from-memory/ February 11, 2015 Michael Albert 2 Comments nicht mit Flattr verbunden Hi, if a User is logged on and forget it’s password you can dump to lsa process and recover the password from a dump file. Two tools are needed: Microsoft’s sysinternals procdump mimikatz. A tool to play with win…
How to join two tmux windows into one, as panes?
shell脚本内cat创建shell脚本注意的地方——筑梦之路
SSL流量捕获

from--https://stackoverflow.com/questions/9592969/how-to-join-two-tmux-windows-into-one-as-panes Ask Question Asked 11 years, 6 months ago Modified 6 months ago Viewed 60k times 170 I have two tmux windows, with a single pane in each, and I would like to join these two panes together into a single window as a horizontal split panes. How could I do that? session spli…
from--https://blog.csdn.net/qq_34777982/article/details/126886108 # 直接在shell输出多行字符串 cat << EOF >aaa >bbb >ccc >ddd EOF # 覆盖字符串 cat > /root/abc.txt < EOF >这个是 >this is >测试 EOF # 覆盖字符串 原样输出 cat > /root/abc.txt < 'EOF' >aaa >bbb >3333 EOF # 追加多行字符 #说明:这里的EOF没有加单引号,则shell默认会解析特殊字符,如遇$符号解析变量值 cat >> /etc/rc.local << EO…
from--https://joenchen.com/post/sslcapturing/ 2021-11-08 ios逆向 约 868 字 预计阅读 2 分钟 1956 次阅读 现在基本上互联网的流量都是https了,一般正常的抓包方法是使用Charles一类的抓包工具,这种抓包工具都会在系统里面安装一个根证书,通过中间人的方式,欺上瞒下进行抓包,不过现在越来越多的程序除了使用https外还使用了SSL Pinning技术,导致这种中间人方式抓包会失败。需要手动的patch程序,修改验证客户端或者服务端证书的代码,不过现在又有了一种新的抓包方式,写一个hook工具,把SSL交互的过程那几个重要的值记录下来,然后生成SSLKEYLOGFILE文件,然后使用Wireshark 导入SSLKEYLOGFILE进行解密。…
Unable to boot VMs in VMWare Workstation with host running 19H1/20H1 Insider builds (X-post from Windows Insider forum)
from--https://social.technet.microsoft.com/Forums/lync/en-US/032c2a62-333a-4795-a149-d66b85462801/unable-to-boot-vms-in-vmware-workstation-with-host-running-19h120h1-insider-builds-xpost-from?forum=win10itprovirt Archived Forums 881-900 > Windows 10 Virtualization Question 1 Sign in to vote Hi. Since early in the 19H1 builds VMWare Workstation has been unstable for m…