Search found 10755 matches

by madshi
Thu Dec 14, 2023 10:12 am
Forum: madExcept
Topic: Add Application platform x32/x64 to the bug report
Replies: 1
Views: 22746

Re: Add Application platform x32/x64 to the bug report

You can very easily add it yourself: unit AddPlatformToBugReport; interface implementation uses madExcept; procedure AddPlatform(const exceptIntf: IMEException; var handled: boolean); begin {$ifdef win64} exceptIntf.BugReportHeader['platform'] := 'x64'; {$else} exceptIntf.BugReportHeader['platform']...
by madshi
Mon Dec 04, 2023 10:24 am
Forum: madExcept
Topic: After installing madExcept 5.1.3, Alexandria 11.3 does not start.
Replies: 14
Views: 140714

Re: After installing madExcept 5.1.3, Alexandria 11.3 does not start.

FWIW, I have all Delphi versions from Delphi 4 up to Delphi 12 installed on my dev PC, and it works just fine. So not really sure what the problem was exactly...
by madshi
Mon Dec 04, 2023 10:18 am
Forum: madExcept
Topic: Delphi 11.2 crash when installing madExcept_.bpl
Replies: 12
Views: 59451

Re: Delphi 11.2 crash when installing madExcept_.bpl

When loading which BPL exactly? Is it a "naked" Delphi 12 installation, with no other 3rd party packages installed yet? Or do you have other 3rd party packages installed? I'm wondering if it might be some sort of incompatability with other 3rd party packages? Also, could you please verify ...
by madshi
Thu Nov 23, 2023 10:49 am
Forum: madCodeHook
Topic: [question] error code 31..
Replies: 3
Views: 34023

Re: [question] error code 31..

That might mean that the DLL is not recognized by the driver. Can you confirm that the driver is actually running?

Did you sign the hook DLL at all, or not? If so, did you sign the hook DLL before or after calling madConfigDrv?
by madshi
Wed Nov 22, 2023 10:31 am
Forum: madExcept
Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
Replies: 7
Views: 58951

Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded

No problem at all, I'm happy to hear that madExcept is innocent... :D
by madshi
Wed Nov 22, 2023 10:07 am
Forum: madExcept
Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
Replies: 7
Views: 58951

Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded

Does this only happen if you create a new project? Or does it also happen if you restart the Delphi IDE, then switch between the 2 newly created projects and compile them alternatingly?
by madshi
Thu Nov 09, 2023 2:52 pm
Forum: madExcept
Topic: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded
Replies: 7
Views: 58951

Re: Unstable debug in 10.4.2 when madExceptWizard_.bpl is loaded

Unfortunately, I've no idea what the issue could be, and it would be extremely time consuming trying to figure this out. So my suggestion would be to use an ugly workaround: 1) Remove the package from the IDE. 2) Instead setup a "post build event" in the project settings, where you call &q...
by madshi
Wed Nov 08, 2023 5:31 pm
Forum: madExcept
Topic: ANN: madExcept 5.1.4 (with Delphi 12 support)
Replies: 2
Views: 32085

ANN: madExcept 5.1.4 (with Delphi 12 support)

Today I'm releasing madExcept 5.1.4 with Delphi 12 support:

http://madshi.net/madCollection.exe (installer 2.8.13.0)
by madshi
Wed Nov 08, 2023 5:30 pm
Forum: madCollection
Topic: Delphi 12
Replies: 16
Views: 49383

Re: Delphi 12

Available now:

http://madshi.net/madCollection.exe (madExcept 5.1.4)
by madshi
Wed Nov 08, 2023 5:29 pm
Forum: madExcept
Topic: MadExcept not intergrating into applications
Replies: 6
Views: 14360

Re: MadExcept not intergrating into applications

I'm sorry, I missed this thread.

Does this problem also happen with a brand new test project?

And have you tried running the compiled EXE outside of the IDE? Does it work then?
by madshi
Wed Nov 08, 2023 10:04 am
Forum: madCollection
Topic: Delphi 12
Replies: 16
Views: 49383

Re: Delphi 12

I think it's not officially released yet? I plan to add support very quickly after it's released.
by madshi
Tue Nov 07, 2023 7:52 am
Forum: madCodeHook
Topic: [request] inject dll on specified process(pid) by driver
Replies: 1
Views: 4732

Re: [request] inject dll on specified process(pid) by driver

The driver actually isn't able to inject into already running processes. It doesn't have the code for that. The madCodeHook injection driver only injects into newly created processes. Injecting into already running processes is the job of the user mode library. Are you doing the user mode injection ...
by madshi
Thu Nov 02, 2023 10:02 pm
Forum: madCodeHook
Topic: Hook Specific address
Replies: 7
Views: 12809

Re: Hook Specific address

Try hooking loc_4a3b80 instead of sub_42e843, that should work.
by madshi
Thu Nov 02, 2023 7:59 am
Forum: madCodeHook
Topic: Hook Specific address
Replies: 7
Views: 12809

Re: Hook Specific address

That error code means "code not interceptable", which means that madCodeHook thinks that it's not safe to hook that code.

Can you do this:

Code: Select all

uses madDisAsm;

var as1 : AnsiString;
begin
  ParseFunction(Pointer($0042E843), as1);
Then please post the contents of "as1" here.