rizin/test/db/cmd/display_flag
NOT XVilka ba8c170852
Migrate from Capstone to Zydis (x86 architecture) (#5164)
* Added build files [Capstone to Zydis]

* x86 Analysis [Capstone to Zydis]

* Changed x86 RzIL [Capstone to Zydis]

* Changed asm and arch files [Capstone to Zydis]

* Compilation, build error and test fixes [Capstone to Zydis]

* Test changes [Capstone to Zydis]

* Remaining changes [Capstone to Zydis]

* Added BE support [Capstone to Zydis]

---------

Co-authored-by: tushar3q34 <tushar3q34@gmail.com>
2025-05-23 13:03:46 +00:00

61 lines
1 KiB
Text

NAME=Function labels in comments
FILE=malloc://512
CMDS=<<EOF
e asm.bytes=true
e asm.arch=x86
e asm.bits=16
e asm.nbytes=2
e asm.cmt.col=0
wx 66b801000000b90f006683fb02e2fa66bb01000000c3
af+ fcn1 @ 0000:0000
afb+ 0 0 22
f. loop1 @ 0000:0009
pd 1 @ 0000:000d
EOF
EXPECT=<<EOF
| `=< 0000:000d e2fa loop 0x9 ; fcn1.loop1
EOF
RUN
NAME=Function labels in disasm
FILE=malloc://512
CMDS=<<EOF
e asm.bytes=true
e asm.arch=x86
e asm.bits=16
e asm.nbytes=2
wx 66b801000000b90f006683fb02e2fa66bb01000000c3
af+ fnc1 @ 0
afb+ 0 0 22
f. loop1 @ 9
pd 1 @ 9
EOF
EXPECT=<<EOF
| .loop1:
| 0000:0009 6683. cmp ebx, 0x02
EOF
RUN
NAME=ANSI injection vuln
FILE=bins/mach0/ansi
CMDS=<<EOF
sp
e asm.bytes=true
e asm.lines=0
e asm.comments=0
pd 1
isq
EOF
EXPECT=<<EOF
;-- section.0.__TEXT.__text:
;-- _rt:
;-- func.100000f50:
0x100000f50 55 push rbp
0x100000000 0 __mh_execute_header
0x100000f60 0 _main
0x100000f50 0 _r\e#8qt
0x100000f8a 0 imp.printf
0x100000f50 0 func.100000f50
0x100000f60 0 func.100000f60
EOF
RUN