mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2026-09-18 15:21:29 +00:00
Added submodule back in (raw files)
This commit is contained in:
@@ -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
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
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
|
||||
@@ -0,0 +1,40 @@
|
||||
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
|
||||
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
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
|
||||
@@ -0,0 +1,38 @@
|
||||
REM This script encrypts a file of your choice on the desktop (can change path)
|
||||
REM The encrypted file will be named "ENCRYPTED.enc"
|
||||
REM then it removes the original file.
|
||||
|
||||
REM Replace "< >" with the correct file name & choose any password you'd like.
|
||||
REM Must include file type in the file name. Example (.pdf .txt .doc .mp4)
|
||||
|
||||
|
||||
REM To decrypt the file and return it to its original state enter the command below
|
||||
REM Must include file type in the name. Example (.pdf .txt .doc)
|
||||
REM password must be the same as when you encrypted
|
||||
|
||||
|
||||
REM openssl enc -aes-256-cbc -d -in ~/Desktop/ENCRYPTED.enc -out ~/Desktop/<FILE NAME HERE.pdf> -pass pass:<PASSWORD HERE>
|
||||
|
||||
|
||||
REM Title: File Encryption
|
||||
REM Author: Narsty
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
DELAY 500
|
||||
GUI space
|
||||
DELAY 500
|
||||
STRING terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING openssl enc -aes-256-cbc -salt -in ~/Desktop/<FILE NAME HERE.pdf> -out ~/Desktop/ENCRYPTED.enc -pass pass:<PASSWORD HERE>
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING rm ~/Desktop/<FILE NAME HERE.pdf>
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 250
|
||||
GUI w
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
REM This script sets up a network fragmentation technique using Scapy.
|
||||
REM It generates ICMP packets with a randomized payload length and performs fragmentation.
|
||||
REM The payload is created by randomly selecting printable ASCII characters within a specific range.
|
||||
REM The script constructs an IP packet with the specified destination IP address and ICMP payload.
|
||||
REM It then fragments the packet into smaller fragments using a fragment size of 200 bytes.
|
||||
REM The fragmented packets are sent with a delay of 0.1 seconds between each fragment.
|
||||
REM The script continuously loops and sends the fragments to simulate fragmented network traffic.
|
||||
|
||||
REM Network fragmentation can introduce complexity
|
||||
REM and potential challenges for packet inspection and reassembly.
|
||||
REM This technique aims to add an additional layer of obfuscation
|
||||
REM to the network traffic by breaking it into smaller fragments.
|
||||
REM However, it does not guarantee complete anonymity or provide absolute security.
|
||||
|
||||
REM Adjust the range values in the payload generation
|
||||
REM to control the length of the randomized payload.
|
||||
REM The current range is set to generate payloads between 500 and 1500 characters.
|
||||
REM Modify destination IP address in the 'IP(dst="10.0.0.1")' section to match your desired target.
|
||||
REM Modify the fragment size (fragsize) and the delay between fragments (inter) as needed for your testing purposes.
|
||||
|
||||
|
||||
REM Requirements: Python 3 and Scapy. You can install Scapy using the command 'pip3 install scapy'.
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Fragmentation Traffic Generator
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING python3 -c 'import random; from scapy.all import *; payload = "".join(chr(random.randint(32, 126)) for _ in range(random.randint(500, 1500))); packet = IP(dst="10.0.0.1") / ICMP() / payload; fragments = fragment(packet, fragsize=200); send(fragments, inter=0.1, loop=True)'
|
||||
DELAY 500
|
||||
ENTER
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
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
|
||||
|
||||
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 1000
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING terminal
|
||||
DELAY 500
|
||||
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
|
||||
@@ -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 Open Tor Browser
|
||||
|
||||
REM Please note that some commands may require administrative privileges (sudo).
|
||||
REM Replace <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
|
||||
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
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
|
||||
@@ -0,0 +1,51 @@
|
||||
REM Ducky Script for Network Obscurity and Disabling Interfaces
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: MacNetGhost
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 1000
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING terminal
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING sudo ifconfig en0 down
|
||||
ENTER
|
||||
DELAY 7000
|
||||
STRING sudo ifconfig en1 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en2 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en3 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en4 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en5 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en6 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en7 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en8 down
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en9 down
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING exit
|
||||
ENTER
|
||||
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
REM Ducky Script to Restore Disabled Network Interfaces
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: MacNetGhostRestore
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 1000
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING terminal
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING sudo ifconfig en0 up
|
||||
ENTER
|
||||
DELAY 7000
|
||||
STRING sudo ifconfig en1 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en2 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en3 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en4 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en5 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en6 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en7 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en8 up
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING sudo ifconfig en9 up
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING exit
|
||||
ENTER
|
||||
@@ -0,0 +1,41 @@
|
||||
REM This script sets up a network padding technique.
|
||||
REM Using Scapy to send padded IP packets with random payload length.
|
||||
REM Each packet is padded with a random number of 'A' characters to obfuscate the payload.
|
||||
REM This helps to add padding to the network traffic and increase the overall packet size.
|
||||
REM Keep in mind that while network padding can add some level of privacy,
|
||||
REM it doesn't guarantee complete anonymity or security.
|
||||
|
||||
REM By default, it sends 600 packets with random payload length and padding.
|
||||
REM Current script runs for about 5 minutes
|
||||
REM Change the range value in the 'send([packet] * 600)' line 33
|
||||
REM For example, changing it to 'send([packet] * 1200)' will last about 10 minutes.
|
||||
REM Adjust the inter parameter to control the delay between each packet.
|
||||
REM The current value is set to 0.5 seconds, but you can modify it as needed for your testing purposes.
|
||||
|
||||
REM Requirements: Python 3 and Scapy. You can install Scapy using the command 'pip3 install scapy'.
|
||||
REM warnings can be ignored as they indicate that no IPv4 address is currently assigned to those interfaces.
|
||||
REM The script will continue to function as intended
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Network Padding Fury
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING python3 -c 'import random, time; from scapy.all import *; packet = IP() / Padding(load="A" * random.randint(100, 200)); send([packet] * 600, inter=0.5)'
|
||||
ENTER
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
REM Disabling Shadowsocks and Proxy Server
|
||||
REM These commands disable the system-level proxy settings & stop the Shadowsocks service
|
||||
REM Adjust this command based on how you started the service
|
||||
|
||||
REM you can use the ps command in the terminal to check if the Shadowsocks process is running.
|
||||
REM command 'ps -ef | grep shadowsocks'
|
||||
REM you can also kill the PID to end the Shadowsocks Process
|
||||
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Shadowsocks Proxy Ninja Reverse
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING brew services stop shadowsocks-libev
|
||||
ENTER
|
||||
DELAY 3000
|
||||
STRING networksetup -setsocksfirewallproxystate Wi-Fi off
|
||||
ENTER
|
||||
DELAY 3000
|
||||
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
REM Shadowsocks encrypts your network traffic and routes it through the proxy server
|
||||
REM making it difficult for third parties to analyze or decipher your data.
|
||||
REM This can help protect your network traffic from being easily monitored or intercepted.
|
||||
|
||||
REM Requirements: Shadowsocks can be installed using command 'brew install shadowsocks-libev'
|
||||
|
||||
REM you can use the ps command in the terminal to check if the Shadowsocks process is running.
|
||||
REM command 'ps -ef | grep shadowsocks'
|
||||
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Shadowsocks Proxy Ninja
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING brew services start shadowsocks-libev
|
||||
ENTER
|
||||
DELAY 5000
|
||||
STRING networksetup -setsocksfirewallproxy Wi-Fi 127.0.0.1 1080
|
||||
ENTER
|
||||
DELAY 250
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
REM Returns your wifi network back to normal.
|
||||
REM Must use the Kill command with the PID number to end tor 'Kill PID#'
|
||||
|
||||
|
||||
REM You can use the ps command in the terminal to check if the Shadowsocks
|
||||
REM and Tor processes are running.
|
||||
REM Command to check Shadowsocks: 'ps -ef | grep shadowsocks'
|
||||
REM Command to check Tor: 'ps -ef | grep tor'
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Shadowsocks Tor Proxy Reverse
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING networksetup -setsocksfirewallproxystate Wi-Fi off
|
||||
ENTER
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,33 @@
|
||||
REM This script sets up a Shadowsocks Tor Proxy on your Mac
|
||||
REM Encrypts your network traffic and routes it through the Tor network.
|
||||
REM By combining the encryption of Shadowsocks with the anonymity of Tor.
|
||||
REM This setup enhances your online privacy and security.
|
||||
|
||||
REM Requirements: Install Shadowsocks by running 'brew install shadowsocks-libev'
|
||||
REM Requirements: Install Tor by running 'brew install tor'
|
||||
|
||||
REM You can use the ps command in the terminal to check if the Shadowsocks
|
||||
REM and Tor processes are running.
|
||||
REM Command to check Shadowsocks: 'ps -ef | grep shadowsocks'
|
||||
REM Command to check Tor: 'ps -ef | grep tor'
|
||||
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Shadowsocks Tor Proxy
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 1000
|
||||
STRING networksetup -setsocksfirewallproxy Wi-Fi 127.0.0.1 9050
|
||||
ENTER
|
||||
DELAY 250
|
||||
|
||||
@@ -0,0 +1,37 @@
|
||||
REM Script that uses obfuscation to stealthily create a local HTTP server
|
||||
REM hosting a simple web page on the machine.
|
||||
REM access the server by opening a web browser and navigating to localhost:9090
|
||||
|
||||
|
||||
|
||||
REM Creates a new directory in the tmp folder named "ghost_server"
|
||||
REM Creates a new HTML file named "index.html" with the message "Hello, this is the Silent Server!".
|
||||
REM Starts a http.server server using Python's built-in SimpleHTTPServer module on port 9090.
|
||||
REM The nohup command allows the server to continue running even after the terminal is closed
|
||||
REM the output is redirected to /dev/null so that it doesn't appear in the terminal.
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: Silent Server Creator
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 500
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING mkdir /tmp/ghost_server && cd /tmp/ghost_server
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING echo '<h1>Hello, this is the Phantom Server!</h1>' > index.html
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING nohup python3 -m http.server 9090 > /dev/null 2>&1 &
|
||||
ENTER
|
||||
DELAY 500
|
||||
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
REM This script sets up a TCP randomization technique
|
||||
REM Using Scapy to randomize the TCP packets by introducing random delays
|
||||
REM between sending each packet.
|
||||
REM This helps to obfuscate the packet timing.
|
||||
REM Also adds an element of randomness to the network traffic.
|
||||
REM Keep in mind that while it adds some level of randomness,
|
||||
REM it doesn't guarantee complete anonymity or security.
|
||||
|
||||
|
||||
REM This runs 1000 randomized TCP packets which last about 5 minutes.
|
||||
REM You can change the 'send_packet(packet) for _ in range(1000)' parameter to extend the time.
|
||||
REM For example if you change to 2000 this will last about 10 minutes.
|
||||
REM Adjust the values of min_delay and max_delay as per your requirement.
|
||||
|
||||
REM Requirements:Python 3, and Scapy can install using the command 'pip3 install scapy'
|
||||
REM warnings can be ignored as they indicate that no IPv4 address is currently assigned to those interfaces.
|
||||
REM The script will continue to function as intended
|
||||
|
||||
|
||||
REM Author: Narsty
|
||||
REM Title: TCP Randomizer
|
||||
REM Target: MacOS
|
||||
REM Version: 1.0
|
||||
REM Category: Obscurity
|
||||
|
||||
ID 05ac:021e Apple:Keyboard
|
||||
DELAY 500
|
||||
GUI SPACE
|
||||
DELAY 500
|
||||
STRING Terminal
|
||||
DELAY 1000
|
||||
ENTER
|
||||
DELAY 500
|
||||
STRING python3 -c 'import random, time; from scapy.all import *; min_delay = 0.1; max_delay = 0.5; packet = IP() / TCP(); send_packet = lambda pkt: (time.sleep(random.uniform(min_delay, max_delay)), send(pkt)); [send_packet(packet) for _ in range(1000)]'
|
||||
DELAY 1000
|
||||
ENTER
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user