Skip to main content
Question

Rapid_7 agent app

  • September 28, 2023
  • 2 replies
  • 21 views

Forum|alt.badge.img+2

I have installed rapid7 using jamf cloud. But the application is not showing up under each user's app installed. I know on windows, you can see it from intune and also you can see the app in control panel of any windows machine.

On macs, you have to look at a specific directory to see if the agent is installed. 

Do you guys have any idea why that is happening?

2 replies

jhbush
Forum|alt.badge.img+26
  • Esteemed Contributor
  • 539 replies
  • September 29, 2023

This might be of some help.

#!/bin/sh ###################################################### # A script to collect the Version of Rapid7 Insight. # ###################################################### DIRECTORY="/opt/rapid7/ir_agent/" if [ -e "${DIRECTORY}" ]; then RESULT=$(/opt/rapid7/ir_agent/components/insight_agent/insight_agent --version | awk '/Semantic/ {print $3}') fi echo "<result>${RESULT}</result>" exit 0

Forum|alt.badge.img+2
  • Author
  • New Contributor
  • 1 reply
  • September 29, 2023

This might be of some help.

#!/bin/sh ###################################################### # A script to collect the Version of Rapid7 Insight. # ###################################################### DIRECTORY="/opt/rapid7/ir_agent/" if [ -e "${DIRECTORY}" ]; then RESULT=$(/opt/rapid7/ir_agent/components/insight_agent/insight_agent --version | awk '/Semantic/ {print $3}') fi echo "<result>${RESULT}</result>" exit 0

@jhbush, Thanks for the help.

That would helpful in some other way I guess. I just don't understand why Rapid_7 insight agent does not show under the user machine on Jamf cloud for a quick look.

But thanks again.