プロジェクト

全般

プロフィール

Radare2 » 履歴 » バージョン 2

kanata, 2025/05/10 09:20

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