Service and Process Management — Linux Fundamentals Module — HTB Walkthrough
TIER 0 MODULE: LINUX FUNDAMENTALS
SECTION: Service and Process Management
Please open your pwnbox or connect to the vpn, and connect with ssh in order to complete the tasks.
ssh htb-student@<target-ip>
# Enter password 'HTB_@cademy_stdnt!' when asked!
If you are not registered in HTB Academy, then use this link to register now: https://referral.hackthebox.com/mzxKOJt
1. Use the “systemctl” command to list all units of services and submit the unit name with the description “Load AppArmor profiles managed internally by snapd” as the answer.
They already told us what to do.
Use the command systemctl
. And find the description as “Load AppArmor profiles managed internally by snapd”.
systemctl
It displays so many entries, so we filter out with grep
command.
systemctl | grep "Load AppArmor profiles managed internally by snapd"
And we got the answer.
Answer: snapd.apparmor.service
☣️ HAPPY ETHICAL HACKING ☣️
DISCLAIMER: THIS CONTENT DOES NOT BELONG TO ME, I AM JUST WRITING A WALK-THROUGH OF A FREE MODULE OF HACK THE BOX ACADEMY. (WRITING WALKTHROUGHS OF FREE MODULES IS PERMITTED BY HTB ACADEMY)