Aynakeya's Blog

Kill My Emotion

0x0 Introduction

V8! 兄弟们V8! 真男人就要用V8!

V8字节码反汇编与反编译过程中的实践与经验,涵盖构建 V8、分析 bytecode 格式、尝试绕过校验与反汇编/反编译的一些非官方方法瞄。

(如有错漏,敬请指正)

Read more »

Introduction

在数字图像处理中,滤波是一个基本且关键的操作。滤波不仅用于增强图像质量,还在诸如去噪、边缘检测和图像分割等高级任务中扮演着重要角色。本文将简单的探讨线性与非线性滤波的基本概念、实现方法及其在计算机视觉中的应用。

Read more »

Introduction

在尝试逆向一个动态链接库的时候,有时你可能希望单独运行某个函数,以探究它的具体作用。

如果这个二进制文件的编译架构与你的机器架构相同,并且你拥有其所有依赖库,那么操作相对简单:直接使用dlopen加载动态库,然后通过 offset 获取函数地址,执行即可。

然而,如果遇到不同架构的二进制文件,比如 aarch64 架构,应如何方便地进行调试和模拟运行呢?

一种常见的方法是在相应架构上启动gdbserver或使用frida等类似工具进行跟踪。但这种方法过于笨重。是否存在一种更轻量级的方法来模拟运行这个 ELF 文件呢?

unicorn模拟运行, 外加elf简单介绍

Read more »

Introduction

Programmer: Huh. I wonder where are my objects?

C++: I don't know. Objects have their own lifecycles.

adapt from: "Your characters also have their own lives." -by anonymous genshin impact fans
original: 《角色也有自己的生活》

c++ object, contructor, deconstructor, variable scope and lifecycles.

Read more »

tl;dr

I found a privilegee escalation vulnerability in one of my course's assignment.

I've reported the vulnerability to our instructor, and he fixed it. yaayy.

This article will be about how I found this vulnerability and how I utilized it to get a root shell.

Read more »
0%