Search found 1058 matches

by iconic
Wed Nov 29, 2023 8:17 pm
Forum: madCodeHook
Topic: [question] error code 31..
Replies: 3
Views: 660

Re: [question] error code 31..

@jgh0721 Thanks for letting us know what your resolution was, it helps others on the forum too. As far as Windows OS is concerned... some Win32 API will normalize separators such as a / instead of a \ but other APIs may not (especially some native API). Sanitization and normalization is expected to ...
by iconic
Sun Oct 22, 2023 2:38 pm
Forum: madExcept
Topic: MadExcept not intergrating into applications
Replies: 3
Views: 783

Re: MadExcept not intergrating into applications

Does the same thing happen after a clean uninstall and reinstall?

--Iconic
by iconic
Wed Sep 27, 2023 1:10 am
Forum: madExcept
Topic: What Delphi versions are supported?
Replies: 3
Views: 784

Re: What Delphi versions are supported?

Delphi 7 was added to madExcept at the end of 2002 (not long after D7 was released), it works fine for Delphi 7 last I checked. Delphi 7 is also only 32-bit so eventually you may want to upgrade your IDE/Compiler. As far as your error and file access, ensure that the file actually exists before acce...
by iconic
Fri Aug 25, 2023 12:11 am
Forum: madExcept
Topic: Hiding a leak
Replies: 3
Views: 1158

Re: Hiding a leak

Hello,

The information is available for you to parse yourself after it's POSTed, after the info is collected. So yes, you'd need to do such a specific task of (parsing out the information) afterwards to alter the report info.

--Iconic
by iconic
Fri Aug 18, 2023 6:30 pm
Forum: madCodeHook
Topic: code not interceptable
Replies: 4
Views: 24470

Re: code not interceptable

I've answered a similar question here a few years ago involving the same returned error code and it was also involving interface hooking. I recommended the OP replace the virtual method address directly in the vTable/VMT and it worked fine for him. Please see http://forum.madshi.net/viewtopic.php?f=...
by iconic
Fri Aug 18, 2023 3:04 am
Forum: madCodeHook
Topic: code not interceptable
Replies: 4
Views: 24470

Re: code not interceptable

What API are you hooking in PhotosApp.exe on Windows 11 and is your project code in Delphi or c/c++? The main 2 or 3 things I can think of off the top of my head are the code design does not allow for disassembly that allows for this, it might be prone to a crash or too short, and the 2nd thing I ca...
by iconic
Sat Aug 12, 2023 8:28 pm
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

I've tested the print monitor driver that comes with the demo and is pre-signed by Madshi in Safe Mode. I was only able to load the driver in Safe Mode after adding the proper entries to SafeBoot key and disabling SecureBoot. When SecureBoot was enabled and test signing was off it failed unfortunate...
by iconic
Fri Aug 11, 2023 10:55 pm
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

Quick update, I've just run a couple of tests on Windows 10 Pro 22H2 x64 and a couple of standard drivers (not function or filter drivers, just basic) loaded fine for me in SafeMode even with SecureBoot enabled. I also checked if the driver was *truly* loaded and it was, the product worked as expect...
by iconic
Fri Aug 11, 2023 2:16 am
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

Your entries in the Registry seem ok to me after looking at them. It may be worth deleting the "Start Type" still present in your entry. If this is a newer Windows "Safe Boot" issue then clearly other 3rd-party drivers are also affected. On Windows 7 all works fine which usually ...
by iconic
Fri Aug 11, 2023 1:25 am
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

Hello, If you look at my original post I mention the error code STATUS_NOT_SAFE_MODE_DRIVER specifically. But, NtLoadDriver() still works fine here on Windows 7 Pro x64 in Safe Mode/Safe Boot. If MCH's driver is loading fine for you in "normal" boot it must definitely be an issue with Safe...
by iconic
Thu Aug 10, 2023 11:28 pm
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

Hello, This is definitely a Windows Safe Mode issue with your driver. I know this because I booted up Windows 7 Pro x64 and was able to load MCH's driver without issue *only* after adding the entry to the SafeBoot Registry area. I could load and unload perfectly fine. If you try loading the MCH driv...
by iconic
Thu Aug 10, 2023 5:59 pm
Forum: madCodeHook
Topic: Cannot load driver in safe mode
Replies: 9
Views: 1940

Re: Cannot load driver in safe mode

Hello, Safe Mode's purpose is to load only required system drivers in hopes of keeping 3rd party drivers from loading unless you're a filter driver or other driver tied into the system at a lower layer. This increases the chances of the system properly booting in case of some other buggy driver that...
by iconic
Wed Jul 26, 2023 1:03 am
Forum: madExcept
Topic: Identify socket error in report
Replies: 2
Views: 1405

Re: Identify socket error in report

@wandersonpaiva, I would likely guess it's accessing an already freed (and likely NILed) object, but it's hard to say of course with your exception log in this thread alone. I am curious however why you're using ScktComp with TClient/ServerSocket? It's riddled with issues and isn't nearly as develop...
by iconic
Tue Jun 27, 2023 10:33 pm
Forum: madExcept
Topic: MadExcept Viewer Not Displaying Files.
Replies: 6
Views: 1823

Re: MadExcept Viewer Not Displaying Files.

A simple reboot fixed the problem
Great! :D In looking into drag and drop we now can add support for instances that can be elevated so it will also work properly, otherwise I'd have not looked at the D'nD code to begin with.

--Iconic
by iconic
Tue Jun 27, 2023 7:56 pm
Forum: madExcept
Topic: MadExcept Viewer Not Displaying Files.
Replies: 6
Views: 1823

Re: MadExcept Viewer Not Displaying Files.

SteveG, Are you by chance running MadExcept Viewer with elevated rights (administrative rights)? If so, drag and drop support in the app would require a modified window filter due to UIPI from Vista up. I checked the viewer code and it does not add the necessary window messages to support such a cas...