Search found 1068 matches

by iconic
Tue Mar 21, 2023 12:30 am
Forum: madExcept
Topic: Exception not caught in Delphi 11.2 Alexandria 64 bit
Replies: 54
Views: 1135290

Re: Exception not caught in Delphi 11.2 Alexandria 64 bit

I don't think that it's the cert being bad or anything like that I agree, however something related is the most likely determinant. Unfortunately, we have no way of identifying whatever metrics they're using to decide risk factors. The days of plain signature-based detection is long over and most A...
by iconic
Sun Mar 19, 2023 11:12 pm
Forum: madExcept
Topic: Exception not caught in Delphi 11.2 Alexandria 64 bit
Replies: 54
Views: 1135290

Re: Exception not caught in Delphi 11.2 Alexandria 64 bit

@aehimself As a test only, does it happen if you remove the cert embedded in madCollection.exe? Some quick code I wrote to do this programmatically, easy to port to c/c++ if required. // Uses ImageHlp function RemoveDigitalCerts(const lpFileName: PWChar): BOOL; var hFile: THandle; begin // file migh...
by iconic
Sat Mar 18, 2023 11:07 pm
Forum: madExcept
Topic: Exception not caught in Delphi 11.2 Alexandria 64 bit
Replies: 54
Views: 1135290

Re: Exception not caught in Delphi 11.2 Alexandria 64 bit

Definitely disappointing indeed, seems some of these AVs are all of a sudden flagging a product setup that's been around for over 2 decades. More confusing is that the Installer is even signed with SHA-256 and the cert was never abused :confused: :o :confused: I guess all you can really do is contin...
by iconic
Fri Mar 03, 2023 2:13 am
Forum: madExcept
Topic: Senders email address missing
Replies: 5
Views: 7581

Re: Senders email address missing

Resource Hacker (ResHacker) is one of the oldest and best out there :D It was also written in Delphi which is a plus for deployability and performance. I've used it extensively over the ages, great tool!

--Iconic
by iconic
Wed Jan 04, 2023 2:14 am
Forum: fun talk
Topic: Happy New Year!
Replies: 21
Views: 142768

Re: Happy New Year!

Happy 2023 and warm wishes to everyone here on the forum! :redBalloon: :greenBalloon: :blueBalloon:

--Iconic
by iconic
Fri Nov 25, 2022 10:35 pm
Forum: madExcept
Topic: Delphi 11.2 and freezing on Exception window clicking on line of code.
Replies: 10
Views: 7157

Re: Delphi 11.2 and freezing on Exception window clicking on line of code.

Please remove your Google Drive upload immediately, madExcept is not open source and a paid license is required. I know you need an invite approval however there are better ways to send your mod to Madshi such as private email directly to him.

--Iconic
by iconic
Tue Oct 04, 2022 6:17 pm
Forum: madCodeHook
Topic: Help Solve a Problem Ring3 Hooks
Replies: 4
Views: 5813

Re: Help Solve a Problem Ring3 Hooks

Please refrain from posting any more about unhooking on this forum. As the madCodeHook author (Madshi) said, madCodeHook is a Hooking library not an Unhooking library. Sorry, we can't help you with this as it does not pertain to our products, perhaps try asking on another forum.

--Iconic
by iconic
Fri Sep 09, 2022 1:22 am
Forum: madCodeHook
Topic: Double hook issue
Replies: 4
Views: 5529

Re: Double hook issue

Glad your issue is resolved by Madshi's suggestion, for future reference, see below please =] 6. Each API hook needs its own callback function and its own "NextHook" variable. Don't try to save code by using callback functions and/or NextHook variables twice. Hooking rules can be located h...
by iconic
Tue Jul 12, 2022 10:49 pm
Forum: madExcept
Topic: How to pause a code and return later ?
Replies: 3
Views: 3854

Re: How to pause a code and return later ?

Hello, The code you gave me works but for that I will have to program all my ShowModal and MessageBox screens Yes, you're 100% correct about this as each instance would need to have code added. However, why not just create a thin wrapper around (e.g: ShowModal or MessageBox) and have the code in a l...
by iconic
Sat Jul 09, 2022 9:05 pm
Forum: madExcept
Topic: How to pause a code and return later ?
Replies: 3
Views: 3854

Re: How to pause a code and return later ?

Hello, TBH with you this is a very ugly thing to do and a lot can go wrong. If you're wanting to do something like return to code that needs to be executed then you might be able to get away with this using a 'label' and 'goto' statement. In theory it should work unless I didn't fully understand you...
by iconic
Tue Jun 28, 2022 4:42 am
Forum: madExcept
Topic: MadExcept not sending the latest BugReport
Replies: 2
Views: 3118

Re: MadExcept not sending the latest BugReport

What do your "email & upload settings" tab show? Have you tried HTTP for uploading bug reports? This is usually what Madshi would recommend where some type of failure is involved AFAIK, it's also rather reliable compared to other methods. Please let us know, TIA!

--Iconic
by iconic
Wed Apr 06, 2022 1:36 am
Forum: madExcept
Topic: MadExcept does not create reports
Replies: 24
Views: 33170

Re: MadExcept does not create reports

Yes, I second that. Please get well soon! Once you do please let us know how Madshi's recommendations worked for you. We can go from there if needed and run some individual tests.

--Iconic
by iconic
Sun Apr 03, 2022 1:00 am
Forum: madExcept
Topic: MadExcept does not create reports
Replies: 24
Views: 33170

Re: MadExcept does not create reports

Hello, Thank you for more information about a potential bug. My original quick reply were merely facts about drives and folders not existing on every client machine and the fact that a full drive does not allow for new logs to be created, this is why you've decided to redirect the Desktop path to th...
by iconic
Sat Apr 02, 2022 6:55 am
Forum: madExcept
Topic: MadExcept does not create reports
Replies: 24
Views: 33170

Re: MadExcept does not create reports

I've changed some setting, after that So, in my understanding madExcept created reports for anyone until then? If madExcept can't produce a log file in the location specified it will fail, period. That goes for any new file being created on a disk that may be full. My apologies in case I misunderst...
by iconic
Wed Feb 02, 2022 12:25 am
Forum: madCodeHook
Topic: 577 occurs when calling LoadInjectionDriver in Windows 7-x64
Replies: 9
Views: 10258

Re: 577 occurs when calling LoadInjectionDriver in Windows 7-x64

power888, Without a SHA-1 signature on your binary Windows 7 x64 will never be happy. That's the easiest way that it can be stated unfortunately :? Microsoft phased out SHA-1 for security reasons and the CA's (Cert Authorities) carried on with SHA-1 until they could not any longer. Some devs grabbed...