I've read and watched a lot of youtube videos without any progress. I'm trying to learn from a site called hackcenter and they presented me with a question like this in assembly code.
testazza: //No idea what this is doing
.LFB0: //No idea what this is doing either
push ebp
mov ebp, esp //Creating the stack i guess
mov eax, DWORD PTR [ebp+8] //Moves 8bytes of memory allocation (Dont know what DWORD PTR DOES though)
imul eax, eax, -1795719608 //(Multiply what? Is -1795719608 a memory adress?
pop ebp //Pop the pointer
ret //Return
To be honest, I don't think there's enough explanation on this, so I would appreciate it if someone could help me understand what this program is actually doing.