HP-UX 11i Security Containment


 
Thread Tools Search this Thread
Operating Systems HP-UX HP-UX 11i Security Containment
# 1  
Old 04-21-2006
HP-UX 11i Security Containment

Has there been much success (or failure for that matter) around implementing these three core techbologies? Has it delievered what it has promised (fine grain privileges, compartments, and role based access control)?

I haven't found very much commentary here or around the Internet on the subject.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. HP-UX

Eclipse 3.1 on HP-UX 11i

Hey guys how do you run eclipse on HP-UX 11i? there's a startup.jar and an eclipse file ( which is not an executable ) I get different errors try to run the jar file with different java versions. I have all the possible java vm's installed. (0 Replies)
Discussion started by: binary0x01
0 Replies

2. HP-UX

Where can i get hp-ux 11i v3

I have to access to hp integrity bl870c server blade and i have no hp-ux 11i v2 or 11i v3 DVD's where can i get a DVD or download it . as i have no direct contact with vendor . thanks (4 Replies)
Discussion started by: h@foorsa.biz
4 Replies

3. HP-UX

Installing HP 11i v3

Hi, I want to install HP 11i v3 OS on PA-RISC systems, which already have HP11i v1 operating system. I want to know that what are software and hardware requirements I will need for doing this? Thanks in Advance Mike (1 Reply)
Discussion started by: Mike1234
1 Replies

4. HP-UX

HP UX 11i and HP C8000

Hey, i want install HP UX 11i on HP C8000. When i start the C8000 i get a prompt. On this Prompt i write BOot P1 P1 is my DVD-ROM (IDE). I get the Message "ERROR: Not a boot path". When i write SEArch the Prompt said: P0 scsiA.6 HP73.4MAT3073NP P1 ide.1 ... (2 Replies)
Discussion started by: numx
2 Replies

5. HP-UX

About compatibility of HP-UX 11i

Could you please tell me if Informix 7.20 UD2 works on HP-UX 11i and if applications that works on HP-UX 10.20 and Informix 7.20 UD2 works on HP-UX 11i. Thanks a lot. (0 Replies)
Discussion started by: Irene Martínez
0 Replies

6. HP-UX

How to use CSTM on HP-Ux 11i V2

Hi, Newbie here......I am an new guy on HP-Ux... may i ask all the the guru's and who has eperienced here to enlightened me on how to use the CSTM command. My goal is to view the current HW installed on the Server. Thanks in advance. (1 Reply)
Discussion started by: renobal
1 Replies

7. HP-UX

HP 11i 64

Hi, could somebody confirm that HP 11i 64 is a 64 bits system ? Thank you (1 Reply)
Discussion started by: aribault
1 Replies

8. HP-UX

HP-UX 11i v2 for PA-RISC

Hello, i trying to get HP-UX 11i v2 for PA-RISC. I`im to poor to buy this system, so I`am asking that someone can help me. best regards email removed (1 Reply)
Discussion started by: mruczas
1 Replies

9. HP-UX

HP-UX 11i

Need to find the changes made in hp-ux11iv2 and how to migrate from hp-ux11i to hp-ux11iv2. Thanks in advance. (1 Reply)
Discussion started by: mhbd
1 Replies

10. UNIX for Dummies Questions & Answers

hp-ux 11i

Need to find the changes made in hp-ux11iv2 and how to migrate from hp-ux11i to hp-ux11iv2. Thanks in advance. (1 Reply)
Discussion started by: mhbd
1 Replies
Login or Register to Ask a Question
msgctl(2)							System Calls Manual							 msgctl(2)

NAME
msgctl() - message control operations SYNOPSIS
DESCRIPTION
provides a variety of message control operations as specified by cmd. The following cmds are available: Place the current value of each member of the data structure associated with msqid into the structure pointed to by buf. The contents of this structure are defined in glossary(9). This command requres the privilege to operate on a message queue not permitted by access modes. This command requires the privi- lege to operate on a message queue in a different compartment. Set the value of the following members of the data structure associated with msqid to the corresponding value found in the structure pointed to by buf: This cmd can only be executed by a process that has the privilege or has an effective user ID equal to the value of either or in the data structure associated with msqid. Only a user with the privilege can raise the value of WARNING: Programs compiled on HP-UX revisions prior to HP-UX 11i v1 use old 16-bit msqid_ds structure fields (obtained via which can describe queue sizes only up to 64 KBytes. Care must be taken such that queues shared with such programs are not made larger than 64 KBytes(65535). Or, those existing programs should be recompiled. Or, the system administrator should restrict the kernel tunable parameter to 64 KBytes or less. Remove the message queue identifier specified by msqid from the system and destroy the message queue and data structure associated with it. This cmd can only be exe- cuted by a process that has the privilege or has an effective user ID equal to the value of either or in the data structure associated with msqid. Security Restrictions Some or all of the actions associated with this system call are subject to compartmental restrictions. See compartments(5) for more infor- mation about compartmentalization on systems that support that feature. Compartmental restrictions can be overridden if the process possesses the privilege (PRIV_COMMALLOWED). Processes owned by the superuser may not have this privilege. Processes owned by any user may have this privilege, depending on system configuration. Some or all of the actions associated with this system call require the or privileges (PRIV_DACREAD, PRIV_LIMIT or PRIV_OWNER). Processes owned by the superuser have these privileges. Processes owned by other users may have one or more of these privileges, depending on system configuration. See privileges(5) for more information about privileged access on systems that support fine-grained privileges. RETURN VALUE
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and is set to indicate the error. ERRORS
fails if one or more of the following is true: msqid is not a valid message queue identifier. cmd is not a valid command, or the command contains invalid parameters. cmd is equal to and Read operation permission is denied to the calling process (see message operation permissions in glos- sary(9)). cmd is equal to or and the calling process does not have the privilege or the effective user ID of the calling process is not equal to the value of either or in the data structure associated with msqid. cmd is equal to an attempt is being made to increase to the value of and the user does not have the privilege. buf points to an illegal address. Reliable detection of this error is implementation dependent. SEE ALSO
ipcrm(1), ipcs(1), msgget(2), msgop(2), ftok(3C), privileges(5). STANDARDS CONFORMANCE
msgctl(2)