I am using the Hopper Disassembler to reverse engineer an iOS library. In principle, in the beginning, everything is clear and logical. But I can't find information about asm. What does asm mean? Is this a function call? If this is a function, what does it do? Thanks!
Hopper disassembler ASM
503 Views Asked by Michil Khabarov At
1
There are 1 best solutions below
Related Questions in REVERSE-ENGINEERING
- How to find a sequence of bytes on the target program from my injected dll?
- Reversing and vtable swapping in dxgi.dll
- How to know Vector3 Position in Unity Mono Game
- Extracting an archive created via Java RandomAccessFile with PHP
- How can I verbosely track the whole process of calling a function?
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- Grab SSL pinning certificate using Frida on iOS
- Kaitai Struct: error accessing elements in _parent
- How to restore damaged (mp3?) file
- CGSRegionRef: How is an arbitrary region represented as union of rects?
- can a convolutional neural network be reverse engineered?
- Decode suspected timestamps
- Extract Note Text Format (Bold/Italic/Strikethrough) from iOS OTG Backup
- Reverse engineer LCD Protocol used in MPC2000XL
- Opening a serial port using a prebuilt .so library
Related Questions in JAILBREAK
- How do I access an iOS app's SQLite database?
- Auto-start KOReader on startup of my jailbroken Kindle Voyage
- Why does this code deadlock on ios 15 and up?
- How can I hook Springboard and all apps to listen for a physical button press?
- jail-monkey isJailBroken() method returns false for Android emulator after React-Native upgrade
- auto resize cell heights
- Phone tricks and hidden layouts
- Find vmaddr_slide of main app binary externally (Apple iOS)
- iOS Configure: error: C compiler cannot create executables
- How does Firebase AppCheck in Flutter handle device integrity checks (e.g., rooted/jailbroken devices)?
- Jailbroken iOS: How to execute shell commands from app extensions?
- Which method is responsible for taking screenshots in Darwin OS?
- Will android root detection techniques work the same for rooted Oculus devices?
- How to read the content of a text file in an iOS tweak
- Debugging logos tweak on WKWebView
Related Questions in TWEAK
- Find vmaddr_slide of main app binary externally (Apple iOS)
- AVAudioSession instance be deactived just after handling AVAudioSessionInterruptionNotification ended signal
- How to hide control center status bar in Theos tweak?
- Postman - change part of return of a POST to localhost
- In Visual Studio 2022, as soon as I move my mouse and hover over other item it changes immediately. ¿How can I fix this?
- Getting theos to hook into SBStatusBarManager
- Hopper disassembler ASM
- Mirror material doesn't show reflections correctly
- Why is this animation not working as intended?
- RHEL 8.3: Toggle Top Icons Plus Gnome extension in Tweak Tool with script
- When creating localiap purchase there’s no receipt
- How to hook into a framework method?
- how to fix Problem with FCAlertView In a ios tweak
- Simulate Touch Event on iOS - jailbroken - iOS13+
- Ken Burns Slideshow Modification
Related Questions in HOPPER
- "Syntax Error" in Hopper Disassembler while assembling instruction
- Understanding iOS string formatting in assembly code
- Hopper disassembler ASM
- Why are all symbol names visible in compiled MacOS Swift Application (Xcode 10) via Hopper disassembler?
- Hopper Disassembler v4, Cannot launch debugger. Not Found LLDB
- Implement an ObjC protocol in Swift with pointer to incomplete type as a return value
- Hopper to disassemble the UIKit.framework from Xcode
- Swift mangled function name mapping
- Hiding debugger from isDebuggerAtached () in binary executable
- Not able to disassemble iOS Banking app
- What's the principle of class dump and hopper
- How to find objective-c methods at runtime for any Application on Mac?
- Not understanding Hopper decompiler output
- How to change the qword memory offset in Hopper Assembler v3?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It's inline assembly, equivalent to the
asmkeyword in C. Wikipedia might serve as an introduction.You almost certainly get this because Hopper fails to properly decompile the instruction. In your case it's arm64 assembly (formally the A64 instruction set) as outlined in the ARMv8 Reference Manual.
Also,
xNorwNin assembly should correspond torNin the decompiled code, so you should be able to make some sense of the output you get.