Table of Contents Abstract 앞선 글에선 단순히 Volatility3의 플러그인 파일로 인식되게끔만 했다. 이번엔 실행 가능한 Hello World 플러그인을 만들어보자. https://geun-yeong.tistory.com/58 How to make a Volatility Plugin Write a code 앞선 글에서 만든 testplugin.py를 재활용했다. 아래 코드는 플러그인으로써 실행되기 위한 최소한의 코드다. from volatility3.framework import interfaces, renderers class TestPlugin(interfaces.plugins.PluginInterface): """My Test Plugin""" _required_framew..