subprocess module call
Medium
- Category
- Dangerous Code Execution
- Content
# 2. 清理浏览器缓存(如果有) try: subprocess.run(['pkill', '-f', 'chrome.*--type=renderer'], check=False, stderr=subprocess.DEVNULL) except: pass- Confidence
- 97% confidence
- Finding
- The 'one-click boost' action kills Chrome renderer processes via pkill, which is a state-changing and potentially destructive operation unrelated to passive system monitoring. Even without shell injection, terminating user applications can cause data loss, disrupt browsing sessions, and exceed the expected permissions/scope of this skill.
