当前位置: 首页 > news >正文

16 BTLO 蓝队靶场 Drill Down 解题记录

  • 主题:内存分析
  • 工具:Volatility 2 
  • Volatility Cheatsheet

主要考察Valatility 用法

1. 首先确定下profile:

profile其实题目已经给了:Win7SP1x86

2. 问题:Run “vol.py -f infected.vmem --profile=Win7SP1x86 psscan” that will list all processes. What is the name of the suspicious process?

pslist 搜索正在运行的进程

psscan 搜索隐藏或中止的进程

3.问题:What is the parent process ID for the suspicious process?

上图可见 2732

4.问题:What is the initial malicious executable that created this process?

用pstree

or4qtckT.exe

5.问题:If you drill down on the suspicious PID (vol.py -f infected.vmem --profile=Win7SP1x86 psscan | grep (PIDhere)), find the process used to delete files.

#  python volatility/vol.py -f --profile=Win7SP1x86 psscan | grep 2732

6.问题:Find the path where the malicious file was first executed?

# python volatility/vol.py -f --profile=Win7SP1x86 filescan | grep or4qtckT

7. 问题:Can you identify what ransomware it is? (Do your research!)

WannaCry.

8. What is the filename for the file with the ransomware public key that was used to encrypt the private key? (.eky extension)

filescan | grep .eky

00000000.eky

http://www.lryc.cn/news/595350.html

相关文章:

  • 前缀和题目:元素和小于等于阈值的正方形的最大边长
  • 计算机发展史:互联网时代的万物互联与全球变革
  • MySQL 17 如何正确地显示随机消息?
  • 【爬虫】06 - 自动化爬虫selenium
  • 元宇宙与游戏:虚实交融的数字文明新纪元
  • ni-app 对鸿蒙的支持现状
  • 深入浅出 BeanUtil.copyProperties:Java 属性复制的利器与避坑指南
  • compser json和lock的作用区别
  • 基于ArcFace损失函数训练的人脸特征提取模型
  • PDF 表单字段属性详解
  • Java学习----NIO模型
  • 识别PDF中的二维码
  • 软件中如何实现自动记忆上一次选的打印机(Python示例)
  • 数据结构 之 【排序】(直接插入排序、希尔排序)
  • 二分查找-35.搜索插入位置-力扣(LeetCode)
  • C语言-字符串数组
  • Vue过度与动画效果
  • FastAPI 中,数据库模型(通常使用 SQLAlchemy 定义)和接口模型(使用 Pydantic 定义的 schemas)的差异
  • Excel函数 —— TEXTJOIN 文本连接
  • 系统分析师-计算机系统-操作系统-存储器管理设备管理
  • LeafletJS 插件开发:扩展自定义功能
  • Java 实现 TCP 一发一收通信
  • 力扣面试150题--搜索二维矩阵
  • A316-Mini-V1:超小尺寸USB高清音频解码器模组技术探析
  • 解决 Ant Design v5.26.5 与 React 19.0.0 的兼容性问题
  • macOS 上安装 Kubernetes(k8s)
  • React 中使用immer修改state摆脱“不可变”
  • Ubuntu安装k8s集群入门实践-v1.31
  • HOT100——图篇Leetcode207. 课程表
  • Redis入门教程(一):基本数据类型