This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
I want to access a certain address of a process. But for that i need to get the base address of the process first. I'm using a tool to see if i'm actually doing it right. The tool shows i need the following: "app.exe"+0x011F9B08 = 0x119F8300 I thought i could [...] read more
I have a class that is zipping a directory's contents into a zip file. The code I'm using is below. The problem I'm having is that the zip file generated by me cannot be read by the application I'm loading it into. However, if I unzip the zip file that's [...] read more
I need the bytes of a BIN file converted to a unsigned int, in this format (JavaScript): p.write4(shellcode.add32(0x00000000), 0x00000be9); p.write4(shellcode.add32(0x00000004), 0x90909000); p.write4(shellcode.add32(0x00000008), 0x90909090); p.write4(shellcode.add32(0x0000000c), 0x90909090); p.write4(shellcode.add32(0x00000010), 0x0082b955); p.write4(shellcode.add32(0x00000014), 0x8948c000); p.write4(shellcode.add32(0x00000018), 0x415741e5); p.write4(shellcode.add32(0x0000001c), 0x41554156); p.write4(shellcode.add32(0x00000020), 0x83485354); p.write4(shellcode.add32(0x00000024), 0x320f18ec); p.write4(shellcode.add32(0x00000028), 0x89d58949); p.write4(shellcode.add32(0x0000002c), 0x64b948c0); p.write4(shellcode.add32(0x00000030), 0x77737069); p.write4(shellcode.add32(0x00000034), 0x49000000); p.write4(shellcode.add32(0x00000038), 0x4120e5c1); p.write4(shellcode.add32(0x0000003c), 0x000200bc); p.write4(shellcode.add32(0x00000040), [...] read more
When I turn on my PC and windows logo appears on the screen, suddenly a black screen shows up with this content: PC needs to restart. Please hold down the power button. Error Code: 0x0000005C Parameters: 0x0000000000000110 0xFFFFFFFFFFD0A258 0x0000000000000019 0xFFFFFFFFC0000001 * I've tried to reinstall the windows from a windows [...] read more
I have my base memory address "GameAssembly.dll"+00DA5A84 and some offets. Adding this up I got the address I need. (The red rectangle). This one changes every time that the game is reset. Figure1 [https://i.stack.imgur.com/GcBvW.png] Once I got the memory address I can do the following: public void isImpostor(IntPtr addrs, int [...] read more
I have an UWP application which is working fine on various machines but on one particular machine, it is crashing silently. When I debugged the installed app through visual studio I figured out that it is not getting the resources on the XAML file e.g {ThemeResource ComboBoxDropdownContentMargin} {Binding TemplateSettings.DropDownContentMinWidth, RelativeSource={RelativeSource [...] read more
I'm receving RTP Data in a buffer and trying to decode the data inside this buffer using avcodec_decode_video2(). However I seem to be getting an error when calling this function: Exception thrown at 0x10086F50 (avcodec-57.dll) in RTSP Video Application.exe: 0xC0000005: Access violation reading location 0x0000005C. void video_decode(unsigned char * RTPData) [...] read more
I have some questions about prologue and call instruction. 1) Do I understand correctly that: Call instruction always use to call a function, although the function call is not always implemented by using the call (it may be realized by using push+jmp) Most functions have a prologue, and it often [...] read more
I'm trying to assemble using nasm on Cygwin 32 bits (following Part IV of Dandamudi, Sivarama P. Guide to Assembly Language Programming in Linux. New York: Springer, 2005). However, I get the following errors: $ nasm -f win32 sample.asm $ nasm -f win32 io.mac $ ld -m i386pe io.obj -lc [...] read more
I am working (still) on an implementation of a Chain Reaction game. I have a lot of particles bouncing around the screen, and the user can tap the screen to create a single 'sticky' particle. When any normal particle hits the user's sticky particle, that normal particle needs to become [...] read more
I am having a problem trying to create a procedure for my component that uses a procedure contained in a DLL (TExecute) which also needs a declaration in the current code. So this procedure has a pointer as parameter to know what to do with the evaluation. The following code [...] read more
The Problem is the following: There is the call of a constructor, where a pointer is an argument m_pszBuf= new char[260]; //Still valid , to prove i'm printing the address std::cout <<"Address "<< (void*)m_pszBuf <<std::endl; device = new Device(m_pszBuf); Device::Device(char* _ptr){ strcpy(dest,_ptr); } Interesting is, before the call of the [...] read more
I'm very new to C and am working on a utility that scans folders for duplicate files and then does some stuff to them. When I have the list of duplicate file names, I need to build a string with the full path and file name to manipulate the files, [...] read more
I think this is kind of unusual thing to ask, but I need this. Well, I know I can do this: string str = "45 AC 1B 5C"; And then convert it into something meaningful, but what if I don't want to bother with conversion and want to set string [...] read more