Add:
madSettings.AppendBugReports:=false;
to:
procedure TmnForm.SetMESettings;
Search found 20 matches
- Mon Jan 23, 2023 4:18 pm
- Forum: madExcept
- Topic: Encrypt the attached bug report file
- Replies: 17
- Views: 14779
- Wed Jan 18, 2023 9:50 pm
- Forum: madExcept
- Topic: Encrypt the attached bug report file
- Replies: 17
- Views: 14779
Re: Encrypt the attached bug report file
I created a small test application for "RegisterExceptActionHandler" with encrypt and decrypt code. Using Delphi 10.2.3.
Also convert to base64 and back.
Also convert to base64 and back.
- Thu Apr 07, 2022 10:36 pm
- Forum: madExcept
- Topic: Encrypt the attached bug report file
- Replies: 17
- Views: 14779
- Fri Mar 04, 2022 4:01 pm
- Forum: madExcept
- Topic: Encrypt the attached bug report file
- Replies: 17
- Views: 14779
Re: Encrypt the attached bug report file
Too add; >If not, it's more effective for people who want that feature to implement it themselves in a little bug report handler. Never done a bug report handler. Is there an example/help file I should look at? As to decoding, I was thinking I would create a small app, drag and drop the file on it, ...
- Fri Mar 04, 2022 1:11 pm
- Forum: madExcept
- Topic: Encrypt the attached bug report file
- Replies: 17
- Views: 14779
Re: Encrypt the attached bug report file
>I'm just wondering how many users really want/need it, because you're the first one asking for it (as far as I remember).
I came to the site looking for that exact feature. Vote yes, for me.
I came to the site looking for that exact feature. Vote yes, for me.

- Fri Dec 06, 2019 1:57 pm
- Forum: madSecurity
- Topic: Blowfish and data intergity...
- Replies: 2
- Views: 40306
Re: Blowfish and data intergity...
Yeah I thought the same. Then I wavered. HA
My main concern was when the data was saved to a file, someone tampered with the file.
I think I will add a CRC.
Thanks for your help and the mad suite.
My main concern was when the data was saved to a file, someone tampered with the file.
I think I will add a CRC.
Thanks for your help and the mad suite.
- Fri Dec 06, 2019 5:38 am
- Forum: madSecurity
- Topic: Blowfish and data intergity...
- Replies: 2
- Views: 40306
Blowfish and data intergity...
Hello, It is late and I might not have my thinking cap snug. Using the Encrypt/Decrypt on some strings. I encrypt data, save it to a file or send across some network. The encrypted data becomes corrupted. The password is the same on both ends and Decrypt just applies the password to the data. The re...
- Sat Aug 20, 2016 12:36 am
- Forum: madSecurity
- Topic: RenameFile, FileSetAttr, CopyFile...
- Replies: 5
- Views: 13760
Re: RenameFile, FileSetAttr, CopyFile...
Well no joy. I did not find any new flags/types/etc. for newer OS. I found other strange things with W10. Nothing to do with security. I could rename a file and the file would disappear to Explorer. It was not hidden. But, try to create or copy a file, with the same name, to the directory and the OS...
- Thu Aug 18, 2016 5:40 pm
- Forum: madSecurity
- Topic: RenameFile, FileSetAttr, CopyFile...
- Replies: 5
- Views: 13760
Re: RenameFile, FileSetAttr, CopyFile...
Thanks for the responses.
No joy on the change of permissions. I tried a bunch of stuff.
I will post a message in the newsgroup and post back when I have it solved.
No joy on the change of permissions. I tried a bunch of stuff.
I will post a message in the newsgroup and post back when I have it solved.
- Thu Aug 18, 2016 3:41 pm
- Forum: madSecurity
- Topic: RenameFile, FileSetAttr, CopyFile...
- Replies: 5
- Views: 13760
Re: RenameFile, FileSetAttr, CopyFile...
All the RenameFile, FileSetAttr, CopyFile calls. The first call is setting the permissions and I am not sure if it fails. I do know the "full control" checkbox in the security tabs is not set. Then I call FileSetAttr if the file exist so I can delete it and it fails with access denied. The...
- Thu Aug 18, 2016 3:29 pm
- Forum: madSecurity
- Topic: RenameFile, FileSetAttr, CopyFile...
- Replies: 5
- Views: 13760
RenameFile, FileSetAttr, CopyFile...
Hello, Delphi XE. madSecurity 1.2 I am renaming a file in directory X, copying a new file to directory X and renaming it. Using MadExcept security wrappers I set the permissions. This works on XP and W7. It fails on W8 and W10. UAC is off on all computers. I have admin rights on all computers but, I...
- Tue May 17, 2016 9:57 pm
- Forum: madSecurity
- Topic: Set permissions...
- Replies: 18
- Views: 29816
Re: Set permissions...
OK just to close it off and for others that might search for a solution. I had to create a "Deny" ACE and also set the same permissions for the directory containing the file I do not want the user to delete. Also the permissions I selected prevent the user from modifying the directory cont...
- Tue May 17, 2016 6:47 pm
- Forum: madSecurity
- Topic: Set permissions...
- Replies: 18
- Views: 29816
Re: Set permissions...
More testing iso.DAcl.Deallocate; Does clear out all groups and the icon for the file actually changes to have a little lock in the bottom left corner. Then iso.DAcl.SetFileAccess(Everyone,false); Adds just the one group. Not sure how to test if I can delete the file because I created the file and c...
- Tue May 17, 2016 6:33 pm
- Forum: madSecurity
- Topic: Set permissions...
- Replies: 18
- Views: 29816
Re: Set permissions...
I did a test.
ShowMessage(IntToStr(iso.DAcl.ItemCount)); <---- shows 4
iso.DAcl.Clear;
iso.DAcl.Flush;
ShowMessage(IntToStr(iso.DAcl.ItemCount)); <---- shows 0
But the four are not deleted from the file.
ShowMessage(IntToStr(iso.DAcl.ItemCount)); <---- shows 4
iso.DAcl.Clear;
iso.DAcl.Flush;
ShowMessage(IntToStr(iso.DAcl.ItemCount)); <---- shows 0
But the four are not deleted from the file.
- Tue May 17, 2016 6:28 pm
- Forum: madSecurity
- Topic: Set permissions...
- Replies: 18
- Views: 29816
Re: Set permissions...
>You did do the "ProtectedDAcl := false", too, didn't you?
Yes.
Clear does delete some other groups, just not the listed four.
Yes.
Clear does delete some other groups, just not the listed four.