Blackbone icon indicating copy to clipboard operation
Blackbone copied to clipboard

Mapping on Windows 10 1803

Open L3D451R7 opened this issue 6 years ago • 6 comments

Seems that #4fc7cc1 commit doesn't work on 1803. When i test i have error "sequence number not found in library".

code of Error logging:

if (!image) {
			LPSTR lpMsgBuf = nullptr;

			if (FormatMessageA(
				FORMAT_MESSAGE_ALLOCATE_BUFFER |
				FORMAT_MESSAGE_FROM_SYSTEM |
				FORMAT_MESSAGE_FROM_HMODULE |
				FORMAT_MESSAGE_IGNORE_INSERTS,
				GetModuleHandleA("ntdll.dll"),
				image.status, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
				(LPSTR)&lpMsgBuf, 0, NULL) != 0)
			{
				Log(std::string(lpMsgBuf));

				LocalFree(lpMsgBuf);
			}
		}

L3D451R7 avatar May 12 '18 15:05 L3D451R7

Works fine on my 2 machines. Waht's exactly failing?

DarthTon avatar May 21 '18 10:05 DarthTon

well, mapping of image fails. image size is 2.5mb and no protectors or something.

L3D451R7 avatar May 30 '18 15:05 L3D451R7

Any logs or trace messages?

DarthTon avatar May 31 '18 18:05 DarthTon

Only this message i sent "sequence number not found in library"

L3D451R7 avatar Jun 20 '18 03:06 L3D451R7

I also have problems with MapImage () on Windows 10 build 1803, weight image > 300kb

lyapka avatar Jun 23 '18 05:06 lyapka

{Partial Copy} Due to protection conflicts not all the requested bytes could be copied.

or sometimes

{Ordinal Not Found} The ordinal %ld could not be located in the dynamic link library %hs.

this is what NTSTATUS gaves me. dll size is 3mb

L3D451R7 avatar Jul 09 '18 16:07 L3D451R7