当前位置:网站首页>中职组网络安全—内存取证
中职组网络安全—内存取证
2022-07-04 04:12:00 【Beluga】
volatility -f test2.raw imageinfo
获取镜像详细信息 profile参数很重要 后面还会用到

volatility -f test2.raw --profile=Win7SP1x64 hashdump
获取镜像的hash值及用户名 获取之后可以使用john工具进行字典解密 或者使用ophcrack破解

如果比赛的时候有mimikatz插件 可以直接使用mimikatz进行破解 直接出密码
还有一种是 lsadump 能出来断断续续的密码 不是完整的
volatility -f test2.raw --profile=Win7SP1x64 netscan 查看网络连接情况

会出来很多信息 这里ip根据开放的端口我们判断是10.30.21.96 去虚拟机中检测 也确是如此
volatility -f test2.raw --profile=Win7SP1x64 envars | grep USERNAME

即可查看主机名,注意要去掉后面的 $ 符号
获取flag文件思路:
1. 获取桌面文件名称,猜解其内容
volatility -f test2.raw --profile=Win7SP1x64 filescan | grep Desktop

可以看到桌面上文件 但无法读取其内容
2. 可能是桌面打开了一个notepad程序 使用notepad参数可以看到
volatility -f test2.raw --profile=Win7SP1x64 notepad
挖矿进程思路:
1. 先找名字异常的进程 比如Explore.exe 原系统进程是 explorer.exe
2. 在上一种方式魏国的情况下监察系统进程的启动时间 从启动时间判断
3. 反正只要求提交端口和ip,找外部ip一个一个试
volatility -f test2.raw --profile=Win7SP1x64 netscan/connscan
volatility -f test2.raw --profile=Win7SP1x64 svcscan
volatility -f test2.raw --profile=Win7SP1x64 hivelist
获取浏览器历史记录
volatility -f test2.raw iehistory
会给一个url 从里面的参数可以看到搜索了什么
边栏推荐
- Longest increasing subsequence problem (do you really know it)
- Rhcsa 06 - suid, sgid, sticky bit (to be added)
- Flutter ‘/usr/lib/libswiftCore.dylib‘ (no such file)
- 6-5漏洞利用-SSH弱口令破解利用
- [cloud native] those lines of code that look awesome but have a very simple principle
- 【MATLAB】MATLAB 仿真模拟调制系统 — VSB 系统
- Exploration and practice of eventbridge in the field of SaaS enterprise integration
- ADB tools
- Beipiao programmer, 20K monthly salary, 15W a year, normal?
- LeetCode136+128+152+148
猜你喜欢
随机推荐
附件六:防守工作简报.docx
Y55. Chapter III kubernetes from entry to proficiency -- HPA controller and metrics server (28)
ADB tools
【MATLAB】MATLAB 仿真模拟调制系统 — AM 已调信号的功率谱与相干解调
网络设备应急响应指南
6-4 vulnerability exploitation SSH banner information acquisition
【MATLAB】MATLAB 仿真 — 低通高斯白噪声
自动化测试selenium基础篇——webdriverAPI
QT qtableview data column width adaptation
[security attack and Defense] how much do you know about serialization and deserialization?
Correct the classpath of your application so that it contains a single, compatible version of com. go
Maui introductory tutorial series (5.xaml and page introduction)
简单g++和gdb调试
MySQL indexes and transactions
The paddlehub face recognition scheme is deployed, and the trained model is deployed and applied in pytchrom
[go] database framework Gorm
如何构建属于自己的知识引擎?社群开放申请
Kivy教程之 格式化文本 (教程含源码)
Precautions for accompanying driving these 23 points should be paid attention to!
Deep parsing structured exception handling (SEH) - by Matt Pietrek








