From 1c4c8e51bb488ad331a7a1cf1e04b2a2de2ee207 Mon Sep 17 00:00:00 2001 From: Narsty Date: Thu, 18 May 2023 22:46:24 -0500 Subject: [PATCH] Add files via upload --- Obscurity/DarkNet Angel Restore.txt | 40 +++++++++++++++++++++++++++++ Obscurity/DarkNet Angel.txt | 38 +++++++++++++++++++++++++++ 2 files changed, 78 insertions(+) create mode 100644 Obscurity/DarkNet Angel Restore.txt create mode 100644 Obscurity/DarkNet Angel.txt diff --git a/Obscurity/DarkNet Angel Restore.txt b/Obscurity/DarkNet Angel Restore.txt new file mode 100644 index 0000000..e8110ec --- /dev/null +++ b/Obscurity/DarkNet Angel Restore.txt @@ -0,0 +1,40 @@ +REM Restores the original MAC address. +REM removes the DNS configuration. +REM disables firewall stealth mode. +REM and disengages the cloaking device. +REM 7 seconds to enter password + + +REM Run ifconfig en0 in the terminal to get your original MAC address +REM It will be displayed in the format xx:xx:xx:xx:xx:xx. +REM Replace in the script with the actual MAC address you obtained. + + +REM Author: Narsty +REM Title: DarkNet Angel Restore +REM Target: MacOS +REM Version: 1.0 +REM Category: Obscurity + + +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 500 +STRING sudo ifconfig en0 ether Original_mac_address +ENTER +DELAY 7000 +STRING sudo rm /etc/resolver/local +ENTER +DELAY 2000 +STRING sudo defaults write /Library/Preferences/com.apple.alf stealthenabled -bool false +ENTER +DELAY 2000 +STRING sudo sysctl -w net.inet.tcp.rfc6298valtso=1 +ENTER +DELAY 2000 +STRING exit +ENTER diff --git a/Obscurity/DarkNet Angel.txt b/Obscurity/DarkNet Angel.txt new file mode 100644 index 0000000..3a40cbb --- /dev/null +++ b/Obscurity/DarkNet Angel.txt @@ -0,0 +1,38 @@ +REM spoofs the MAC address +REM randomizes DNS requests +REM enables firewall stealth mode +REM and engages the cloaking device +REM 7 seconds to enter password + + +REM Open the Terminal application on your macOS. +REM Run the following command: sudo mkdir /etc/resolver +REM This will create the /etc/resolver directory needed to randomize DNS request. + +REM Author: Narsty +REM Title: DarkNet Angel +REM Target: MacOS +REM Version: 1.0 +REM Category: Obscurity + +DELAY 1000 +GUI SPACE +DELAY 500 +STRING terminal +DELAY 500 +ENTER +DELAY 1000 +STRING sudo ifconfig en0 ether 00:11:22:33:44:55 +ENTER +DELAY 7000 +STRING sudo sh -c 'echo "nameserver 127.0.0.1" > /etc/resolver/local' +ENTER +DELAY 2000 +STRING sudo defaults write /Library/Preferences/com.apple.alf stealthenabled -bool true +ENTER +DELAY 2000 +STRING sudo sysctl -w net.inet.tcp.rfc6298valtso=0 +ENTER +DELAY 2000 +STRING exit +ENTER