Files
MacOS-DuckyScripts/README.md
T
2023-07-07 23:06:04 -05:00

8.1 KiB

Image Description

This repository is EXCLUSIVE to MacOs BADUSB Scripts Giphy Image Coding
Giphy Image

🔹They are Plug & Play🔹

Big shoutout and huge thanks to 47LeCoste ClaraCrazy 0iphor13 Hak5 I-Am-Jakoby and UberGuidoZ

Check Out the Xremote (Cross Remote) by leedave to Chain Infared and SubGHz Together! 📱

XRemote(BETA)

If you're a visual learner like me, check out this detailed tutorial: How 2 Flipper Guide

Thanks to wrenchathome

    Step by Step Directions to get you up and running will be posted Below!

    Coding

    🔹 First, always read the Remarks. You will see "REM," which is used to explain the purpose of each line or provide instructions to the user. It's very important to always READ the REMs!

    🔹 Here are a few strings you will normally see in my scripts as well as their function/purpose:

    The VendorID and ProductID combination helps the operating system identify the specific device (in this case the FLipper Zero) and load the appropriate drivers or configurations I.E. (Apple keyboard).

    
    'ID 05ac:021e Apple:Keyboard'
    
    

    This code enables the `ignorespace` option for the command history, preventing commands with a leading space from being stored in the shell history. Big shoutout to FalsePhilosopher for helping me create this string!

    
    'echo -e "export HISTCONTROL=ignorespace\nunset HISTFILE" >> ~/.bashrc && source ~/.bashrc && exec bash 
    
    This string removes the specific command from the history, ensuring minimal traces are left behind. This helps maintain discretion and privacy.
    
      history -d $(history | tail -n 2 | head -n 1 | awk '{ print $1 }')' 
    

    🔹 Step by Step Directions