#################update################ ```shell ┌──(kali㉿kali)-[~] └─$ python3 Python 3.11.2 (main, Mar 13 2023, 12:18:29) [GCC 12.2.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> (0x9fe1a * 0x4) + 0x1f5 2619997 ``` ```shell ┌──(kali㉿kali)-[~] │ └─$ python3 │ Python 3.11.2 (main, Mar 13 2023, 12:18:29) [GCC 12.2.0] on linux │ Type "help", "copyright", "credits" or "license" for more information. │ >>> a=int("0x9fe1a",16) │┌──(kali㉿kali)-[~] >>> │└─$ cd code >>> b=int("0x4",16) │ >>> a*=b │┌──(kali㉿kali)-[~/code] >>> c=int("0x1f5",16) │└─$ cat disassembler-dump0_c.txt >>> a+=c │<+0>: endbr64 >>> a │<+4>: push rbp 2619997 │<+5>: mov rbp,rsp >>> │<+8>: mov DWORD PTR [rbp-0x14],edi │<+11>: mov QWORD PTR [rbp-0x20],rsi │<+15>: mov DWORD PTR [rbp-0xc],0x9fe1a │<+22>: mov DWORD PTR [rbp-0x8],0x4 │<+29>: mov eax,DWORD PTR [rbp-0xc] │<+32>: imul eax,DWORD PTR [rbp-0x8] │<+36>: add eax,0x1f5 │<+41>: mov DWORD PTR [rbp-0x4],eax │<+44>: mov eax,DWORD PTR [rbp-0x4] │<+47>: pop rbp │<+48>: ret ```