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 am trying to implement a ring0 dll injector driver and implement by APC injection. the code work perfectly on win XP. by on win7, it keeps crashing the target process. here is the code: NTSTATUS InjectDll( IN ULONG ulProcessId, HANDLE hEvent, IN TCHAR * pszDllPath ) { NTSTATUS ntStatus; [...] read more
I have serious problems with machines running Windows Server 2003 x64 Edition. I've written an application which queries periodically the system status using the WMI database. The database is opened/closed for each request separately to make sure that any memory it has used get's free'd asap. Anyway, from time to [...] 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
3 year old Notebook HP Pavilion dv7 is displaying an error which is: > MACHINE_CHECK_EXCEPTION > > STOP: 0x0000009C (0x0000000000000000, 0xFFFFF880009F1C70, 0x0000000000000000, > 0x0000000000000000) I did some research on google and such and i know it is CPU or Power Supply but no further info or how to resolve the [...] read more
A WinXP box (SP3, 32-bit) reboots randomly after I initiate batch transcoding of some videos using console mencoder. Event log has the following record: > The computer has rebooted from a bugcheck. The bugcheck was: 0x0000009c > (0x00000005, 0x8054e5f0, 0xb2000010, 0x04000e0f). A dump was saved in: > C:\WINDOWS\Minidump\Mini100310-04.dmp. I understand [...] read more
How to get useful info about the crash in the released app created by Flutter? In the Firebase Crashlytics section can't show where the dart code crashed. I found App.framework and App.frameword.DSYM would be created when Archive production app. After run command below: dwarfdump --arch arm64 ./App.frameword.DSYM >> ./xxx-dart-symbol-map.log I [...] read more
I'm trying to implement polling functionality into my simple Linux kernel module called gpio_driver for my Raspberry Pi which should notify the user space poll function about the change of state of one of the GPIO pins (button push). What I did in my gpio_driver is set the internal pull [...] read more
First of all, let me tell you the context. I'm solving problems of the wargame called The lord of the BoF, which is based on RedHat Linux 6.2, which has no address space layout randomization(ASLR), NX bit, ASCII armor, etc.. And the gcc there does not make any dummy when [...] read more
I am trying to load a DLL from resource and use SetWindowsHook to inject DLL to all Process GetFullPathName doesnt Seem to Work in this case, Now i am asking what would I do to get the DLL Path in this case, My code looks like this. I am new [...] read more