diff options
| author | Martin Monperrus <monperrus@users.noreply.github.com> | 2019-10-23 11:51:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-10-23 11:51:23 +0200 |
| commit | 643df7193546b2b6060544bdf9af97964a8d76be (patch) | |
| tree | fbdb5c0b1a157df175159b34a6272527ca2999fa | |
| parent | fc85694af6fc5b94e1eb03fb0b6c59789057dff2 (diff) | |
| download | miasm-643df7193546b2b6060544bdf9af97964a8d76be.tar.gz miasm-643df7193546b2b6060544bdf9af97964a8d76be.zip | |
doc: moved the "what" at the top
| -rw-r--r-- | README.md | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/README.md b/README.md index abbdcf34..8c03635a 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,25 @@ <img src="doc/logo_miasm.png"> </p> -Reverse engineering framework in Python -**Table of Contents** +What is Miasm? +============== + +Miasm is a free and open source (GPLv2) reverse engineering framework. +Miasm aims to analyze / modify / generate binary programs. Here is +a non exhaustive list of features: + +* Opening / modifying / generating PE / ELF 32 / 64 LE / BE +* Assembling / Disassembling X86 / ARM / MIPS / SH4 / MSP430 +* Representing assembly semantic using intermediate language +* Emulating using JIT (dynamic code analysis, unpacking, ...) +* Expression simplification for automatic de-obfuscation +* ... + +See the official [blog](http://miasm.re) for more examples and demos. + +Table of Contents +================= - [What is Miasm?](#user-content-what-is-miasm) - [Basic examples](#user-content-basic-examples) @@ -28,22 +44,6 @@ Reverse engineering framework in Python - [Misc](#user-content-misc) -What is Miasm? -============== - -Miasm is a free and open source (GPLv2) reverse engineering framework. -Miasm aims to analyze / modify / generate binary programs. Here is -a non exhaustive list of features: - -* Opening / modifying / generating PE / ELF 32 / 64 LE / BE -* Assembling / Disassembling X86 / ARM / MIPS / SH4 / MSP430 -* Representing assembly semantic using intermediate language -* Emulating using JIT (dynamic code analysis, unpacking, ...) -* Expression simplification for automatic de-obfuscation -* ... - -See the official [blog](http://miasm.re) for more examples and demos. - Basic examples ============== |