随笔分类 -  技术 or 经验

一些技巧或者经验
摘要:win7安装python3 python官网显示python3.9以上已不支持win7,所以找一下python3.8 Note that Python 3.9+ cannot be used on Windows 7 or earlier. python3.8提供安装包的版本只到python3.8. 阅读全文
posted @ 2023-02-25 07:28 rvy 阅读(851) 评论(0) 推荐(0)
摘要:nodejs---执行任意js文件 阅读全文
posted @ 2023-02-04 19:22 rvy 阅读(234) 评论(0) 推荐(0)
摘要:官网: https://nmap.org/ Nmap, Network Mapper, 扫描工具,一般用来确定网络上机器的操作系统、端口开放情况 Zenmap是Nmap的图形化前端。 阅读全文
posted @ 2023-01-18 22:42 rvy 阅读(180) 评论(0) 推荐(0)
摘要:shell脚本是可以直接在linux下执行的脚本,因为linux应该都有shell。 shell有很多种,这里只记一些Bash相关的脚本信息。 Bash脚本官方文档: https://www.gnu.org/software/bash/manual/bash.html 阅读全文
posted @ 2023-01-18 22:38 rvy 阅读(93) 评论(0) 推荐(0)
摘要:创建结构体并应用到相应数据上,可以更好理解数据含义 阅读全文
posted @ 2023-01-07 07:45 rvy 阅读(1503) 评论(0) 推荐(0)
摘要:/etc/passwd, 存储账户、密码等信息,每行都包含7个字段,以":"分隔。 /etc/shadow, 存储账户、密码等信息,每行都包含9个字段,以":"分隔。 阅读全文
posted @ 2022-12-24 14:39 rvy 阅读(545) 评论(0) 推荐(0)
摘要:Ghidra是NSA开发的逆向工具,有反编译和调试功能,类似IDA。 官网: https://www.ghidra-sre.org/ github地址: https://github.com/NationalSecurityAgency/ghidra 安装流程: https://github.com/NationalSecurityAgency/ghidra#install 阅读全文
posted @ 2022-12-17 13:28 rvy 阅读(1749) 评论(0) 推荐(0)
摘要:guestfish修改镜像 阅读全文
posted @ 2022-12-10 16:19 rvy 阅读(152) 评论(0) 推荐(0)
摘要:PowerShell 是一种跨平台的任务自动化解决方案,由命令行 shell、脚本语言和配置管理框架组成。 PowerShell 可以在 Windows、Linux 和 macOS 上运行。 阅读全文
posted @ 2022-12-10 16:18 rvy 阅读(703) 评论(0) 推荐(0)
摘要:在Windows下,可以通过一些方式实现程序自启动 使用SysinternalsSuite套件中的Autoruns.exe可以查看所有自启动项,这里列举其中一些 阅读全文
posted @ 2022-12-03 07:30 rvy 阅读(962) 评论(0) 推荐(0)
摘要:https://github.com/x64dbg/Scylla Scylla是x64dbg内置的插件,不需要自己安装,可用于dump进程,导入表修复。 阅读全文
posted @ 2022-11-26 10:36 rvy 阅读(3605) 评论(0) 推荐(0)
摘要:github地址: https://github.com/decalage2/oletools oletools是一个python工具包,用于分析Microsoft OLE2文件,如Microsoft Office文档或Outlook消息,主要用于恶意软件分析、取证和调试。 阅读全文
posted @ 2022-11-19 13:51 rvy 阅读(887) 评论(0) 推荐(0)
摘要:Windows的事件查看器可以查看各种日志 阅读全文
posted @ 2022-11-12 20:14 rvy 阅读(842) 评论(0) 推荐(0)
摘要:IDA---F5失败(反编译失败)的一些解决办法 阅读全文
posted @ 2022-11-12 20:13 rvy 阅读(1738) 评论(0) 推荐(0)
摘要:官网: https://www.wireshark.org/ wireshark是一个很好用的流量捕获和解析工具。这里写一些简单用法。 阅读全文
posted @ 2022-11-05 08:37 rvy 阅读(397) 评论(0) 推荐(0)
摘要:github地址: https://github.com/microsoft/PowerToys PowerToys是微软开源的增强Windows使用效率的工具。 阅读全文
posted @ 2022-11-05 08:33 rvy 阅读(294) 评论(0) 推荐(0)
摘要:git是一个开源的代码版本控制工具,最初由Linus开发。 这里简单记自己会用到的命令和操作,系统的学习可以参考该链接: https://git-scm.com/book/zh/v2 注意:做不确定的操作前记得先commit一下或者另外保存一份,不然教训惨痛 阅读全文
posted @ 2022-11-05 08:28 rvy 阅读(78) 评论(0) 推荐(0)
摘要:golang 一些恢复符号的方法,方便分析 阅读全文
posted @ 2022-10-29 07:28 rvy 阅读(902) 评论(0) 推荐(0)
摘要:SysinternalsSuite的几个工具可以用来查看互斥量: Process Explorer, WinObj, handle 阅读全文
posted @ 2022-10-22 11:47 rvy 阅读(336) 评论(0) 推荐(0)
摘要:调试子进程的方法 阅读全文
posted @ 2022-10-08 08:21 rvy 阅读(226) 评论(0) 推荐(0)