Posted on 06-23-2020 11:03 AM
Hi all,
I'd like to have this available in Self Service. When I try it the way I have some applications set up, it just drops the DMG contents into the "/" directory. The DMG for Wireshark contains additional packages for ChmodBPF, so do I need to add those packages individually to Jamf? Should I use Composer to group the .app and the ChmodBPF packages into one Package? Just curious on how others are doing it, and if you have a good way, I'd rather not recreate the wheel here.
TIA,
Joey
Posted on 06-23-2020 12:14 PM
I used composer to make a package of /Applications/Wireshark.dmg
usually .dmg installers cannot be added directly into jamf and work properly
06-24-2020 11:58 PM - edited 03-23-2022 08:52 PM
This is what I did back in January:
Install Wireshark on a test system
You will be dragging the app to /Applications
Get rid of com.apple.quaratine attribute and change ownership to root:wheel for Wireshark.app in terminal (recurse)
Also install the ChmodBPF.pkg that's included with the download DMG from Wireshark
Change the file /Library/Application Support/Wireshark/ChmodBPF/ChmodBPF
so that
g+rw
becomes
go+rw
test by restarting and checking local and domain accounts
When happy use JAMF Composer to make a custom installation package
Drag the Wireshark.app to the bottom area of the sidebar on the left of Composer
Then add the following as a Postinstall script
#!/bin/sh ## postinstall pathToScript=$0 pathToPackage=$1 targetLocation=$2 targetVolume=$3 # The ChmodBPF installer writes to the following locations: #/Library/LaunchDaemons/org.wireshark.ChmodBPF.plist. A launch daemon that adjusts permissions on the system’s packet capture devices (/dev/bpf*) when the system starts up. #/Library/Application Support/Wireshark/ChmodBPF. A copy of the launch daemon property list, and the script that the launch daemon runs. #The installer group named “access_bpf” is created. The user who opened the package is added to the group. /usr/sbin/installer -dumplog -verbose -pkg /Applications/Wireshark.app/Contents/Resources/Extras/Install\ ChmodBPF.pkg -target / sed -i.backup 's/g+rw/go+rw/' /Library/Application\ Support/Wireshark/ChmodBPF/ChmodBPF # Uncomment the line below to add the wireshark executables to system path # /usr/sbin/installer -dumplog -verbose -pkg /Applications/Wireshark.app/Contents/Resources/Extras/Add Wireshark to the system path.pkg -target / exit 0 ## Success exit 1 ## Failure
The above script will install ChmodBPF.pkg and modify ChmodBPF so that all users can access it
Posted on 11-03-2020 11:10 AM
Thanks for the script @dlondon. As a note for anyone copying and pasting, there is an extra invisible char at the line
/usr/sbin/installer -dumplog -verbose -pkg /Applications/Wireshark.app/Contents/Resources/Extras/Install ChmodBPF.pkg -target /
So just remove the leading whitespace before using.
Posted on 10-26-2021 03:19 PM
Thanks, this worked great. I just had to edit two items in the script for it to work for me. Had to add the two red forward slashes shown below since there was a space.
/usr/sbin/installer -dumplog -verbose -pkg /Applications/Wireshark.app/Contents/Resources/Extras/Install\ ChmodBPF.pkg -target / sed -i.backup 's/g+rw/go+rw/' /Library/Application\ Support/Wireshark/ChmodBPF/ChmodBPF
Posted on 03-23-2022 08:54 PM
Thanks - corrected the script
Posted on 12-11-2021 03:44 AM
Whats the path to update Wireshark 3.4.x. to 3.6?
I try to configure patch management to update 3.4.9 to 3.6.0 but not sure if this is correct. And what about users with 3.4.10? Just tell them to install version 3.6?
Any suggestions?
Thanks
Posted on 12-16-2021 07:32 AM
I have not used patch management for Wireshark but just looked and Jamf does not have v3.6 listed yet, only up to v3.4. I have been just packaging the new DMG as a PKG via Composer and placing that in Self Service. I will definitely try patch management once Jamf approves the new version.
Posted on 12-17-2021 07:47 AM
I just added Wireshark 3.6 to my Patch Management definitions and it works great. I just had to download and package the new PKG and upload it to Jamf.
Posted on 01-02-2022 06:37 AM
I found a solution by myself. I used the definition tab to just add the 3.6.1.pkg to the 3.4 branch. Works like a charm. So if a 3.4 user try to update he gets the 3.6.1 package.
Posted on 03-23-2022 02:53 PM
Bouncing my question off of the initial question... Can I leave the application sole (without installing ChmodBPF and using a post install script) in Composer and have users install Chmod BPF after once they have installed Wireshark from Self Service?
Posted on 08-12-2022 06:55 AM
I am assuming this is the same for Intel and M1 builds, right?
Posted on 08-12-2022 11:15 AM
Yes, I have this deployed to 3 M1 Silicon Macbooks as well.
Posted on 09-27-2022 06:34 AM
Did anyone use this deployment to start an automated packet capture on Ethernet, right after the install? I'm trying to troubleshoot an ADE/DEP issue, where some of the policies in the sequence are just stopped in kind of a waiting state and the Splashbuddy cannot finish, and I'm thinking to deploy the Wireshark right before the Splashbuddy, but I don't know how I could start the packet capture at that point