プロジェクト

全般

プロフィール

Radare2 » 履歴 » バージョン 1

kanata, 2025/04/27 11:37

1 1 kanata
# Radare2
2
3
portable reversing framework
4
5
radare2
6
http://www.radare.org/r/
7
8
Github
9
https://github.com/radare/radare2
10
11
# 基本的な操作
12
13
```bash
14
$ r2 /bin/ls     # 起動
15
$ r2 -w /bin/ls  # 起動(ファイル書き込み許可)
16
$ r2 -d /bin/ls  # 起動(デバックモード)
17
$ r2 -N /bin/ls  # 起動(設定ファイル無しで起動)
18
$ r2 -           # Alias for r2 malloc://512
19
$ r2 --          # ファイルなしで起動
20
```
21
22
```
23
s  # seek
24
px # print hexdump
25
pd # print disassembly
26
wx # write hexpairs
27
wa # write assembly
28
aa # analyse all (aaaもある)
29
q  # quite
30
V  # Visual mode
31
VV # Access graph view (Move hjkl,Zoom +/-)
32
e as.describe=true # Add ASM description
33
e scr.color=3      # Enable truecolor
34
e scr.utf8=true    # Use UTF-8
35
e io.cache=true    # Enable temporary write
36
db # Set breakpoint
37
dc # continue execution
38
ds # step 
39
```
40
41
42
43
44
# @Vane11opeさん
45
46
CTF始めて1週間で彼女できました。
47
http://vane11ope.hatenablog.com/entry/2017/12/25/000141
48
49
俺の彼女がより可愛くなって戻ってキました(つーかそもそもいなくなっていたわけでもフラレたわけでもないけど、というかカッコの中が長い)
50
http://vane11ope.hatenablog.com/entry/2018/05/08/233206
51
52
53
# Description
54
55
radare2 覚書
56
https://takuzoo3868.hatenablog.com/entry/radare2_love
57
58
Github - Practical-Reverse-Engineering-using-Radare2
59
https://github.com/s4n7h0/Practical-Reverse-Engineering-using-Radare2
60
61
# Article
62
63
Radare 2 in 0x1E minutes
64
http://blog.techorganic.com/2016/03/08/radare-2-in-0x1e-minutes/
65
66
Reverse Engineering With Radare2 – Intro
67
https://www.insinuator.net/2016/08/reverse-engineering-with-radare2-intro/
68
69
https://pixl.dy.fi/posts/2018-01-22-reverse-engineering-basics-with-radare-fundamentals-and-basics/
70
71
Introduction to Reverse Engineering with radare2 Cutter
72
Part 2: Analysing a Basic Program
73
https://www.jamieweb.net/blog/radare2-cutter-part-2-analysing-a-basic-program/
74
75
# Memo
76
77
> radare + r2dec(radareデコンパイラ) + Cutter(radare GUI) でIDAの代替できる
78
79
> _で便利なvisual hud  (動的解析と静的解析に特化したレイアウト)
80
> /でキーワードハイライト