I'm trying to disassemble this file but i Keep getting tons of codes added to it. Visual C++
#include <stdio.h>
int main()
{
int x = 1;
int y = 2;
printf("\rStart me UP");
x = x+y;
y = y+x;
printf("\rX is %d, Y is %d",x,y);
return 0;
}
stuff like this is included in my code(a lot of this) , i wouldn't be able to find my own programming source if it didn't had strings.
=============== S U B R O U T I N E =======================================
.text:0041101E
.text:0041101E ; Attributes: thunk
.text:0041101E
.text:0041101E sub_41101E proc near ; CODE XREF: .text:00415C46p
.text:0041101E ; .text:00415C5Dp ...
.text:0041101E jmp sub_41C7F2
.text:0041101E sub_41101E endp
.text:0041101E
.text:00411023 ; ---------------------------------------------------------------------------
.text:00411023 jmp loc_414243
.text:00411028
.text:00411028 ; =============== S U B R O U T I N E =======================================
.text:00411028
.text:00411028 ; Attributes: thunk
.text:00411028
.text:00411028 sub_411028 proc near ; CODE XREF: start_0-18Ap
.text:00411028 jmp sub_41672F
.text:00411028 sub_411028 endp
Disassembled with ida pro
i did find my program eventually because of the strings but what if some one makes a crackme with encrypted strings etc. how would i ever be able to find the start of the crackme itself?
i did view tutorials i saw there programs source code was at the top of IDA Pro (like where the disassembling begins. so i had no idea where to start when i looked the tutorial, because i saw a different result ( way more codes). , so how can the have only there programs source code. and not 10000 lines of code included.???