HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: IDS and kill command
Operating System - HP-UX
1830898
Members
3019
Online
110017
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Topic Options
- 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
10-27-2004 10:07 AM
10-27-2004 10:07 AM
IDS and kill command
Hi,
Is it possible monitoring the execution of the command kill with ids??
Thanks
David
Is it possible monitoring the execution of the command kill with ids??
Thanks
David
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2004 11:11 AM
10-27-2004 11:11 AM
Re: IDS and kill command
You can kill any running process.
Identify the process id from ps -ef grep ids
and kill the process id.
kill
Regards,
SEP
Identify the process id from ps -ef grep ids
and kill the process id.
kill
Regards,
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2004 03:01 AM
10-28-2004 03:01 AM
Re: IDS and kill command
Thanks, but i don´t want kill the ids daemon i want monitoring the kill command with my HIDS9000 aplication in my HPUX 11.11 server.
Thanks
Dav
Thanks
Dav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-28-2004 03:26 AM
10-28-2004 03:26 AM
Re: IDS and kill command
If you convert your system to trusted mode, it is possible. What you need to do is, convert the system to trusted mode and enable auditing. with auditing monitor usage of kill sys call.
The detailed procedure for setting up accounting can be searched in forums. Converting system to trsuetd mode is doing /etc/tsconvert -c;/usr/lbin/modprpw -V
If you can not convert to trsuetd mode, we can do some script work to log all instances of kill command.
what you do is mv original kill command to some other dir/location. Instead of kill command have a script like follows.
#!/usr/bin/ksh
command = $(echo $0)
args = $(echo $*)
echo "${date} $(echo ${logname}) ${command} " >> /tmp/kill.log
/path/to/original/kill ${args}
The script has not been tested and may need some tuning.
Anil
The detailed procedure for setting up accounting can be searched in forums. Converting system to trsuetd mode is doing /etc/tsconvert -c;/usr/lbin/modprpw -V
If you can not convert to trsuetd mode, we can do some script work to log all instances of kill command.
what you do is mv original kill command to some other dir/location. Instead of kill command have a script like follows.
#!/usr/bin/ksh
command = $(echo $0)
args = $(echo $*)
echo "${date} $(echo ${logname}) ${command} " >> /tmp/kill.log
/path/to/original/kill ${args}
The script has not been tested and may need some tuning.
Anil
There is no substitute to HARDWORK
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP