Disassembling is the process of analysing an executable or object code binary and outputting an assembly language source code text representation which can be read and understood by a programmer.
0
votes
0answers
45 views
Troubles reading AMD ISA code
I'm having trouble reading the assembly language of AMD Southern Island GPUs using the documentation found here.
Here is a sample OpenCL code:
1 __attribute__((reqd_work_group_size(256, 1, 1)))
...
0
votes
1answer
25 views
direct and indirect calls/jumps in output of objdump
Looking at the output of "objdump -d ELFfile", I could not distinguish between direct and indirect Jumps/calls. Any suggestions?
Thanks in advance
2
votes
1answer
19 views
In gdb, how do I disassemble the previous instruction of an address?
We know that disassembling instructions after a given address (inclusive) can be achieved by something like:
x/5i address
which will print 5 instructions, but how do I disassemble the previous ...
0
votes
0answers
41 views
Is there any tool for inspecting a .Net assembly size?
I am looking for a tool that takes a .Net assembly as input and outputs each namespaces and classes ordered by size.
e.g.
MyAssembly.dll 256Ko
-> MyAssemby.MyNamespace 192Ko
...
0
votes
1answer
36 views
Usage of JL and JLE in this case?
I'm just a novice at assembly programming. I have an integer a. I was trying to understand if there was any performance difference between
if(a >= 0)
and
if(a > -1)
So, I proceeded to ...
0
votes
2answers
60 views
Running bat file in java not working
I am trying to make a program to decompile a binary
this is my current code:
try {
PrintWriter out = new PrintWriter("Dumps.bat");
out.println("@title Dumping");
...
3
votes
2answers
64 views
A simple x86 disassembler open source for kernel use
I'm writing a kernel for educational purposes and I want to integrate a disassembler into my kernel.
Since I'm going to integrate it into the kernel I want it to be very small and simple,
i.e I only ...
0
votes
2answers
23 views
Can not disable sse in gcc
I am trying to disable sse and sse2 instructions. I am cross compiling for x86 in a x64 system. I am also using -static to statically link with libc. Although I use -mno-sse and -mno-sse2, when I ...
3
votes
1answer
64 views
How to can I programmatically edit a binary (x86)?
I'm working on a program to do post-compilation optimization. Because I've noticed there are a few special cases that gcc just doesn't optimize well, even at -O3.
Is there a library that would allow ...
0
votes
1answer
28 views
powerpc disassemble instruction by its raw data
How can I disassemble some intructions from memory dump? I have only raw dump, objdump understands only object format.
My processor is PowerPC 440 (PowerPC Book E Architecture).
0
votes
1answer
166 views
Analyzing assembly code EX “mov %eax,0x8(%ebx)”
This is a hw problem. I am not asking for the answer to not have 'explode_bomb' ever run. I am asking for clarification/guidance on what is happening in a small segment of code.
This is what I'm ...
1
vote
2answers
76 views
Understanding simple Linux syscall in libc.a
I'm running a 64-bit Debian 4.7.2-5 Linux system, using glibc-2.13-1. While I was searching for the assembly code of some function calls in libc.a I came across this:
file format elf64-x86-64
...
1
vote
3answers
122 views
Where do I find the assembly code for a procedure called in the GCC assembly output?
I've been playing around with the assembly output switch for GCC:
gcc -S -c helloworld.c
helloworld.c:
#include <stdio.h>
int main(void){
printf("Hello World!\n");
return 0;
}
...
0
votes
1answer
129 views
What does cmp DWORD PTR and mov DWORD PTR mean? [duplicate]
In this snippet of code which is supposed to be a loop break condition, what does cmp DWORD PTR do? What does mov DWORD PTR
mov eax, DWORD PTR [c]
mov ecx, DWORD PTR [array]
LoopStart:
cmp DWORD PTR
...
1
vote
1answer
86 views
disassamble function's start address in windbg
I can finding a function's start address in gdb with "disas functionname" command. How can I do that with windbg.
3
votes
1answer
181 views
printing Java hotspot JIT assembly code
I wrote a very stupid test class in Java:
public class Vector3 {
public double x,y,z ;
public Vector3(double x, double y, double z) {
this.x=x ; this.y=y ; this.z=z ;
}
public ...
0
votes
0answers
48 views
x64 disassembly from memory
I'm working on a JIT compiler on x64; some of the code is necessarily operating system specific, so I'm concentrating on the Windows version right now, with the Linux port to come later. For debugging ...
1
vote
2answers
120 views
Assembling error in IDA Pro 6.1
I need to modify a DLL.
I need to patch
cmp byte_1075A02C, 0
To
mov byte_1075A02C, 1
I tried to use the Patch->Assemble command in IDA Pro, and i have a "Invalid Operand" message.
...
0
votes
0answers
46 views
How to see the content of disassembly function in IDA 6.1
I took C library (closed of course) and use the IDA to disassembley it.
I see the functions on the left column but how do I create headers automatically with this tool?
Look at the picture.
1
vote
1answer
28 views
gdb : findind every jumps to an address
I'm trying to understand a small binary using gdb but there is something I can't find a way to achieve : how can I find the list of jumps that point to a specified address?
I have a small set of ...
0
votes
3answers
126 views
OSX 64 bit C++ DIsassembly line by line
I have been reading through the following series of articles: http://www.altdevblogaday.com/2011/11/09/a-low-level-curriculum-for-c-and-c
The disassembled code shown and the disassembled code I am ...
3
votes
3answers
80 views
Size of Variables in x86
Where does the size of the variables defined in the C files appear in the assembly equivalent of the code after the compilation?
Imagine your first code is:
char buffer[2];
char a[3];
and your ...
3
votes
2answers
151 views
x86 find out operand size of instruction given only the hex machine code?
For example, given a hex: 83 E4 F0
By looking at the intel developer's manual, I can figure out that 83 means and and FO means the -16. Looking at E4, I can decode that the source/destination ...
1
vote
2answers
111 views
NASM changes JNZ to JNE while assembling? Why?
I have a piece of code which uses JNZ. When I assemble and link the binary, I see my JNZ is replaces with a JNE. I understand that both of them fundamentally are the same. But then why does NASM ...
0
votes
1answer
524 views
Disassembling a function with Immunity Debugger
I hope I'm asking this the right way but I am just getting started trying to learn exploit development. I've taken several tutorials and started off using gdb in Linux, which I am somewhat comfortable ...
0
votes
1answer
104 views
Why is x86_64 assembly to execve “/bin/bash” segfaulting?
I've been relearning and writing some assembly code, very basic stuff for starters. I'm on running Ubuntu on x86_64, but the tutorials I'm following along with were done on 32-bit x86.
I've included ...
0
votes
1answer
105 views
Meaning .long function_name in Assembly Language
Suppose i have two functions in x86 assembly language defined as :
.globl func_name1;
.type func_name1, @function;
.align 2;
func_name1:
//Some assembly instructions here.
and similarly ...
0
votes
2answers
139 views
bits 16 and bits 32 in nasm
test.asm:
org 0100h
[BITS 16]
mov eax, 0
[BITS 32]
mov eax, 0
Then compile and disassemble as follows:
nasm test.asm -o test.com
ndisasm -o 0x0100 test.com
Result:
00000100 66B800000000 ...
0
votes
1answer
88 views
Multiple Program Headers in ELF files
I'm trying to read the contents of an ELF file into memory using C. I can currently read a file with 1 program header fine but am having an issue with more than this.
/* Find and read program headers ...
1
vote
0answers
75 views
Processing .ELF with multiple headers for ARM Dissembler
I'm writing a simple ARM dissembler which takes an ELF file and reverts it back to its ARM instructions.
I'm having an issue with processing the ELF files which contain multiple program headers I ...
0
votes
1answer
75 views
What is the best technique to protect your trial-program from hacking?
I'm developing a .NET program, that has some native projects too and I want to publish it with trial capability.
I thought about the question "how to protect my creation?" and I know some of the ...
1
vote
1answer
499 views
Disassembling A Flat Binary File Using objdump
Can I disassemble a flat binary file using objdump?
I'm familiar with disassembling a structured binary executable such as an ELF file using:
objdump -d file.elf
But if I have a flat binary file ...
0
votes
1answer
23 views
Change the content of the current executable. Is it possible?
I have listen, that you may use such functions like LockBytes()/UnlockBytes() from WinAPI (don't know about the exact name in *nix alternative) for such the aims.
I'm interested: "Is it possible to ...
4
votes
1answer
187 views
F# MSIL obfuscation
Two obfuscation-related questions:
1) Is there any tool that can disassemble F# back to its source form, or something close to it, from the MSIL target form? This is not an attempt at security ...
1
vote
5answers
217 views
Formatting hex code to asm code
I need to write something like a "disassembler", I need to read RAM memory (code section) and show it formatted like
ADD rax, rbx
MOV rcx, rax
Where can I find a comprehensive guide/paper on how to ...
0
votes
1answer
55 views
Same source but different binaries
I have a WinCE6000 OSDesign but for historical reasons there are modifications and extra modules under folder which MS does not recommend. So we started to move everything which is not part of ...
-1
votes
1answer
49 views
Get disassembled bytes from assembler code
I'm wondering if there is any program that can convert my assembler code into disassembled bytes like so:
mov 0×01, %eax to B8 01 00 00 00
Is there any trick I don't see?
0
votes
2answers
241 views
Is there a good DOS exe disassembler? [closed]
Several years ago I wrote a simple bootloader in assembly using masm 5.10.
I remember I had several versions, but only one of them worked. I lost the source code and all I have is that final version. ...
2
votes
1answer
140 views
starting point of ELF executable file?
I compile following C program on lubuntu 12.10 with anjuta
int main()
{
return 0;
}
the file name is foobar
then I open up terminal and write command
ndisasm foobar -b 32 1>asm.txt
...
3
votes
1answer
125 views
.NET Disassembling, edit and patch
I need to edit a .NET executable. I'm new to HEX editing. I have imported it to IDA 6.1 Pro and edited it in IDA-View Window.
Original:
ldstr "Uri : "
I changed to (Right click>Manual...(Manual ...
0
votes
1answer
111 views
GCC C assembler [closed]
I'm building interpret, writing in C and using GCC.
I have changed the way I'm generating intermediate code.
But unexpected change happened in interpreting this code.
There is one condition block ...
1
vote
1answer
221 views
What are those extra assembly codes put by compiler when compiling a C program for a microcontroller?
I wanted to write a piece of code in C for my Stellaris launchpad just to turn on the onboard LED by keeping the library usage to minimum. To my surprise, the compiled code was around 800 bytes in ...
2
votes
2answers
262 views
Identify and intercept function call
I'm developing a launcher for a game.
Want to intercept game's call for a function that prints text.
I don't know whether the code that contains this function is dynamically linked or statically. So ...
0
votes
2answers
55 views
How to express Java Double Array type (fixing disassembled code)
I have some code that depends on jars that were compiled using Java 1.7. I am currently working on OSX, where I only have access to Java 1.6. I am currently attempting to recompile these jars locally. ...
0
votes
1answer
123 views
How to analyze crash in printer driver from dump
I am trying to find the cause of an access violation using Konica Minolta PCL driver from a memory dump. I will try to provide as much info as needed. Maybe others in similar situations will benefit ...
0
votes
2answers
203 views
Getting byte code of classes.dex in android app
I'm trying to disassemble classes.dex (or at least get something like byte code in JVM) file from Android application programmatic. I found this specification but i couldn't understand does Dalvik VM ...
0
votes
1answer
53 views
about indirect addressing like %segreg:disp(base,index,scale),foo
movl $0x14,0x4(%rax,%rdx,1)
meas %rax+%rdx*1+0x4 = $0x14(20)
but:
mov 0x0(,%rax,8),%rax
which is base segment resgister ?
what is this instuction meas?
0
votes
1answer
83 views
Differences in disassembly of an object and executable file
Basically, I used objdump -D to dis-assemble an object file and an ELF file. The major difference I see between the two is that.
I see the instructions in the object file (of the individual ...
1
vote
1answer
779 views
Translating assembly to pseudocode
I'm working on a homework project involving a "bomb" written in compiled c which I have to reverse-engineer to come up with 5 strings which will disarm each of five "phases" of the bomb. I'm stuck on ...
0
votes
1answer
70 views
Marking segments of generated sparc assembly code for inspection
Does anybody know how to insert recognizable code sequences using the Sun Studio compiler, without horribly messing up optimization?
I'd like to look to see what the Sun Studio (12.1) compiler does ...
