You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+34-4Lines changed: 34 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,15 +13,45 @@
13
13
This library implements multiple plot types for illustrating executable samples. It currently supports the PE, ELF and Mach-O formats, relying on [`lief`](https://github.com/lief-project/LIEF) for abstracting them.
14
14
15
15
```sh
16
-
pip install exeplot
16
+
$ pip install exeplot
17
17
```
18
18
19
-
## :sunglasses: Usage
19
+
## :sunglasses: Usage Examples
20
20
21
-
TODO
21
+
Draw a byte plot of `calc_packed.exe`:
22
+
23
+
```sh
24
+
$ exeplot byte calc_packed.exe
25
+
```
26
+
27
+

28
+
29
+
Draw a pie plot of `calc_packed.exe`:
30
+
31
+
```sh
32
+
$ exeplot pie calc_packed.exe
33
+
```
34
+
35
+

36
+
37
+
Draw a nested pie plot of `calc_packed.exe`:
38
+
39
+
```sh
40
+
$ exeplot nested_pie calc_packed.exe
41
+
```
42
+
43
+

44
+
45
+
Draw a stacked and scaled entropy plot of `calc_orig.exe` and `calc_packed.exe`:
46
+
47
+
```sh
48
+
$ exeplot entropy calc_orig.exe calc_packed.exe
49
+
```
50
+
51
+

22
52
23
53
24
-
## :clap:Supporters
54
+
## :clap: Supporters
25
55
26
56
[](https://github.com/packing-box/python-exeplot/stargazers)
0 commit comments