Add files via upload

This commit is contained in:
Narsty
2023-05-18 23:30:45 -05:00
committed by GitHub
parent 94db072d8e
commit 9dc2c7e245
2 changed files with 97 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
REM Clear DNS Cach
REM Randomize User Agent
REM Disable Location Services
REM Clear Browsing History
REM Enable Private Browsing Mode
REM Disable Siri Suggestions
REM Randomize Hostname
REM Clear Terminal History
REM Please note that some commands may require administrative privileges (sudo).
REM Also, make sure to replace <spoofed_mac_address> with the desired MAC address
REM and <random_hostname> with a random hostname of your choice.
REM Author: Narsty
REM Title: MacCloak: Untraceable
REM Target: MacOS
REM Version: 1.0
REM Category: Obscurity
REM Open Tor Browser
DELAY 1000
GUI SPACE
DELAY 500
STRING terminal
DELAY 500
ENTER
DELAY 1000
STRING sudo dscacheutil -flushcache
DELAY 7000
ENTER
DELAY 500
STRING defaults write com.apple.Safari CustomUserAgent "\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3\""
DELAY 500
ENTER
DELAY 500
STRING sudo defaults write /Library/Preferences/com.apple.locationd.plist LocationServicesEnabled -bool false
ENTER
DELAY 500
STRING rm -rf ~/Library/Caches/com.apple.Safari/
ENTER
DELAY 500
STRING defaults write com.apple.Safari PrivateBrowsingEnabled -bool true
ENTER
DELAY 500
STRING defaults write com.apple.Siri SuggestionsEnabled -bool false
ENTER
DELAY 500
STRING sudo scutil --set HostName <random_hostname>
ENTER
DELAY 500
STRING open /Applications/TorBrowser.app
ENTER
DELAY 5000
STRING history -c
ENTER
+41
View File
@@ -0,0 +1,41 @@
REM restore the network settings and visibility.
REM Reverses the commands in MacCloak: Untraceable
REM replace <original_hostname> with the original hostname of your system.
REM Author: Narsty
REM Title: MacCloak/Reverse
REM Target: MacOS
REM Version: 1.0
REM Category: Obscurity
REM Open Tor Browser
DELAY 1000
GUI SPACE
DELAY 500
STRING terminal
ENTER
DELAY 1000
STRING sudo dscacheutil -flushcache
ENTER
DELAY 500
STRING defaults write com.apple.Safari CustomUserAgent "\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36\""
ENTER
DELAY 500
STRING sudo defaults write /Library/Preferences/com.apple.locationd.plist LocationServicesEnabled -bool true
ENTER
DELAY 500
STRING defaults write com.apple.Safari PrivateBrowsingEnabled -bool false
ENTER
DELAY 500
STRING defaults write com.apple.Siri SuggestionsEnabled -bool true
ENTER
DELAY 500
STRING sudo scutil --set HostName <original_hostname>
ENTER
DELAY 500
STRING open /Applications/Safari.app
ENTER
DELAY 5000
STRING history -c
ENTER