- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Mailbox protection
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 07:56 PM
01-23-2007 07:56 PM
Is there a way to change the protection of audit_mbx (set audit/list) ? The default is "allow all", thus anyone can manipulate it.
I know I could do it after the set auduit/list with set sec but this requires a program change in my case, and that I want to avoid.
Wim
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 07:59 PM
01-23-2007 07:59 PM
Re: Mailbox protection
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 08:14 PM
01-23-2007 08:14 PM
Re: Mailbox protection
Your issue is that non-priv users potentiall could read this mailbox?
I think you need to specify the correct protection when the mailbox is created or use SET SECURITY.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 08:34 PM
01-23-2007 08:34 PM
Re: Mailbox protection
And yes, my issue is that anyone can manipulate the mailbox.
I hope their is some kind of (undocumented)logical to alter the audit mailbox creation behaviour.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 10:08 PM
01-23-2007 10:08 PM
Re: Mailbox protection
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2007 11:13 PM
01-23-2007 11:13 PM
Re: Mailbox protection
This did : help set sec /prot.
A list of what protection codes exist (object class device indicates a mailbox. May be this was choosen too general ?).
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 03:39 PM
01-24-2007 03:39 PM
Re: Mailbox protection
There are a couple of pages of details there.
The bits for shared devices are defined as:
Read, Write, Physical, Logical, Control. Unshared devices include Read, Write and Control.
If you fire up the search box on the PDF, there are numerous references to mailboxes within the security manual. Mostly located within the pages 92 and 96 in the V7.3-2 edition that's presently current.
ACLs are (an)approach here for protecting a device, though having an audit mailbox exposed in the fashion described looks to be a security bug, and one that appears worthy of a formal report. I'd hope that only suitably privileged users would be able to access and to read the mailbox and its data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 08:43 PM
01-24-2007 08:43 PM
Re: Mailbox protection
If it's your program then you can control the protection.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 09:29 PM
01-24-2007 09:29 PM
Re: Mailbox protection
My program spawns a "set aud/list". So, I will need to modify it if sox audit requires it.
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 09:50 PM
01-24-2007 09:50 PM
Re: Mailbox protection
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 09:58 PM
01-24-2007 09:58 PM
Re: Mailbox protection
Audit_server is signaled that it must use the mailbox. But not sure who executes it : a rtl or audit_server or ??? No file is accessed by setaudit.exe (set watch done).
Wim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 10:18 PM
01-24-2007 10:18 PM
Solution< audit/listen=audit_mbx where a udit_mbx is a
< logical created by the set command.
If I do a SET AUDIT/LIST=MBX I get an invalid device error. To specify a audit-listener mailbox I had to CREATE/MAILBOX mbx and do a SET AUDIT with the MBAxxx device name, specifying MBX leads again to an error (OpenVMS/Alpha V8.3).
regards Kalle
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 10:20 PM
01-24-2007 10:20 PM
Re: Mailbox protection
If you create a mailbox (specifying the device protection you require) and then enter a SET AUDIT/LISTENER command specifying the mailbox that you have created then this will give you what you require.
I tried this using OpenVMS Alpha V8.3 CREATE/MAILBOX command.
I think in your case the mailbox is being created by SET AUDIT as it does not already exist and it inherits the default protection.
Purely Personal Opinion
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2007 10:40 PM
01-24-2007 10:40 PM
Re: Mailbox protection
I didn't notice the crembx in the program (Fortran). That explains everything.
Thanks Kalle & Ian.
Wim