Add files via upload

This commit is contained in:
Narsty
2023-05-18 22:46:24 -05:00
committed by GitHub
parent 35d5b0a4fa
commit 1c4c8e51bb
2 changed files with 78 additions and 0 deletions
+40
View File
@@ -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 <original_mac_address> 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
+38
View File
@@ -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