System Process List
System Services
System Logs
Network Connections
Scheduled Tasks
Shared Resources
Files Modified in the Last Three Days
Display Process and Service Information
Display Processes and Owners
Yara Scripts (Supports detection of shell, ransomware, mining, etc.)
Yara Script Collection:
https://github.com/InQuest/awesome-yara/tree/master
https://segmentfault.com/q/1010000043271331
Common Pitfalls When Installing the Yara Library
libyara.dll No results found
Solution: Perform a global search for libyara.dll
Simply copy the libyara.dll file here to the correct directory (Python 3 root directory).
For reference:https://blog.csdn.net/weixin_43781139/article/details/131087788
- Retrieve external network connection status
- Display processes
- Task startup entries
- Check abnormal ports
- Check scheduled tasks
- Monitor processes communicating with target IPs
- Sort CPU usage in descending order
- Query historical commands
- Files modified within the last 7 days
- Login records
- Number of IPs brute-forcing root accounts on the host
- Identifying IPs involved in brute-force attacks
- Determining the brute-force username dictionary
- Successful login dates, usernames, and IPs
- Query sudo-privileged accounts
- Detect files using YARA rules
- Execute all commands and export results with one click
- Find files added within the last 72 hours
- Exit
ubuntu
Installing Yara error OSError: /usr/lib/libyara.so: cannot open shared object file: No such file or directory
Simply copy the libyara.so file to this directory. /usr/lib/libyara.so
root User Permissions cp -r libyara.so /usr/lib/
cenetos
cenetos7 Direct installation of Yara fails; it only succeeds in a virtual environment. Subsequent tests will not produce errors.
Using a virtual environment (optional):
If you haven't already set up a virtual environment, consider creating one to isolate the Python environment for this project:
python3 -m venv myenv source myenv/bin/activate
Note: Select a command 16. Use YARA rules to scan files
Do not add single/double quotes to the path, otherwise it will cause an error.
