Giter VIP home page Giter VIP logo

swiftguard's Introduction

Application Banner

Anti-forensic macOS tray application designed to safeguard your system by monitoring USB ports. It ensures your device's security by automatically initiating either a system shutdown or hibernation if an unauthorized device connects or a connected device is unplugged. It offers the flexibility to whitelist designated devices, to select an action to be executed and to set a countdown timer, allowing to disarm the shutdown process.

Donate BuyMeACoffee

 

Contents

 

Features

  • Monitoring: Continuously monitors USB ports for device activity, even in sleep mode.
  • Whitelisting: Allows users to whitelist authorized devices, ensuring hassle-free connectivity.
  • Discrete: Operates in the macOS system tray, minimizing interruptions.
  • Customizable: Allows users to configure various settings, including action (shutdown/hibernate), countdown timer and auto start.
  • Lightweight: Designed to consume minimal system resources for optimal performance.
  • Privacy: Only connects to the internet to check for updates at startup.
  • Open Source: Provides transparency and allows community contributions for continuous development.

 

Screenshots

Application Screenshots

Left: Manipulation button to defuse the alarm. Right: Whitelist and Settings menu.


 

Why should you care?

A few reasons to use this tool:

  • Anti-Forensic Measures: In case the police or other thugs break in. The police often use a mouse jiggler to prevent the screen saver or sleep mode from being activated.
  • Prevent Data Exfiltration: You do not want someone adding or copying documents to or from your computer via USB.
  • Public Environments: If you frequently use your Mac in public places like libraries or cafes, swiftGuard acts as an additional layer of security against physical attacks in a potentially vulnerable setting.
  • Server Protection: You want to improve the security of your home or company server (e.g. your Raspberry Pi, NAS, etc.).
  • Data Protection Regulations: Many industries and organizations are subject to strict data protection regulations. swiftGuard helps maintain compliance by preventing unauthorized data transfers and access through USB ports.

Tip: You might also want to use a cord to attach a USB key to your wrist. Then plug the key into your computer and run swiftGuard. If your computer is robbed, the USB is removed and the computer shuts down immediately.

 

Installation

  1. Obtain the most recent version by downloading it from Releases.
  2. Open the downloaded swiftGuard.dmg file.
  3. Drag the swiftGuard application into the Applications folder.
  4. Open the swiftGuard application from the Applications folder (by right-clicking and selecting Open, see Note below)
  5. swiftGuard should now appear in the macOS system tray.
  6. Test at least once if the shutdown or hibernation is executed correctly. On first run you will be asked to grant the necessary permissions by macOS.
  7. Automatic startup at login can be enabled in the app's settings menu.

 

Important: Make sure you use FileVault, macOS's built-in disk encryption feature, to encrypt your entire disk, ensuring that your data remains secure even if your device falls into the wrong hands. Otherwise, unauthorized users may gain access to your data easily: System Preferences > Security & Privacy > Security > FileVault > Do NOT enable iCloud Recovery!

Note: If you get a warning that the application is from an unidentified developer, you have to open System Preferences > Security & Privacy > Security and click Open Anyway to allow the application to run.

See INSTALL.md for further details and instructions if you are upgrading from an older version.  

Usage

GUI

  1. Open the swiftGuard application from the Applications folder.
  2. Click on the application icon in the macOS system tray to open the main menu.
  3. Click the Guarding/Inactive entry to start or pause the guarding of your USB ports.
  4. The Devices menu displays all allowed and connected devices. Allowed devices are indicated with a checkmark, even if they are not connected.
  5. To add or remove a device from the whitelist, simply click on the corresponding device entry.
  6. If manipulation is detected, an alert (Manipulation) will appear in the main menu. Clicking on it will reset the alarm. The Exit button will not work.
  7. In the Settings menu you can set a delay (0 - 60 seconds) and an action (Shutdown or Hibernate). The delay determines how long swiftGuard will wait for you to reset/defuse the alarm before executing the action.

 

Notes:

  • swiftGuard alerts you if devices are removed that were connected before or while the application was started, except you add them to the whitelist.
  • Connecting new devices will always trigger an alert, if these devices are not whitelisted.
  • If you encounter any problems, please check the log file in the ~/Library/Logs/swiftGuard folder.
  • Your settings and whitelisted devices are stored in the ~/Library/Preferences/swiftGuard/swiftguard.ini file.

 

CLI

You can run swiftGuard as a simple Python script from the command line without a graphical user interface (GUI). This is useful when operating swiftGuard on a headless system or saving system resources. However, you will lose the ability to defuse the shutdown process via the GUI, but you can kill the swiftGuard process from the command line instead. The preferences and whitelists are stored in the same location as the GUI version and can be edited manually. For further information, please refer to the src/swiftguard/cli.py file.

  1. Open a terminal and navigate to the desired install directory.

    cd ~/Desktop
  2. Clone the repository.

    git clone https://github.com/Lennolium/swiftGuard.git
  3. Navigate to the swiftGuard directory.

    cd swiftGuard
  4. Create a virtual environment and activate it.

    python3 -m venv venv
    source venv/bin/activate
    pip install poetry
  5. Install poetry in the venv.

    pip install poetry
  6. Install swiftguard in development mode.

    poetry install

    This installs swiftguard and its python packages in the virtual environment venv/bin/swiftguard and venv/lib/python3.11/site-packages in development mode, so you can change code in the src/swiftguard folder and immediately test it in the terminal.

  7. Run it in CLI mode.

    swiftguard

    GUI mode: swiftguardgui

Notes:

  • Settings/Whitelist: ~/Library/Preferences/swiftGuard/swiftguard.ini
  • Logs: ~/Library/Logs/swiftGuard/swiftguard.log Logs are rotated every 2 MB with a maximum of 5 files. You can set the log level (Debug=1, ..., Critical=5) and the log output (file, syslog, stdout; required: file) in the swiftguard.ini file.

 

Development

As an open-source project, I strive for transparency and collaboration in my development process. I greatly appreciate any contributions members of our community can provide. Whether you are fixing bugs, proposing features, improving documentation, or spreading awareness - your involvement strengthens the project. Please review the code of conduct to understand how we work together respectfully.

 

Roadmap

Now Next Later
Unit tests Linux support CI/CD
Code quality Bluetooth and WiFi detection (Apple Watch) Website/Docs/Wiki
Custom system wide hotkey for defusing Auto update (yet: just notifying) Encrypted configuration
E-Mail notification Native Apple silicon support Code sign (Apple)
Countdown dialog More actions (wipe ram, delete files/folders, email) User defined actions
Passwort protected defusing (Dialog) Translations Professional security audit

 

Security & Code Quality

Regarding swiftGuard is a security application and therefore security is of the utmost importance. I am committed to ensuring that it is secure and reliable for all users. I am grateful for any feedback regarding security issues and will do my best to address them as quickly as possible. Please refer to the security policy for more information.

Additionally, I let my code be checked by several code quality and security tools (Bandit, Black, Codacy, CodeQL, PMD CPD, Prospector, Pylint, Pysa, Pyre, Trivy and Radon). The results can be found by clicking on the badges below. These routines are no replacement for a manual code and security audit, but they help to find errors and vulnerabilities. Please note that the results of these tools are not always accurate and may contain false positives.

 

Contributors

Thank you so much for giving feedback, implementing features and improving the code and project!

 

Credits

This application is heavily inspired and based on project usbkill by Hephaestos and BusKill by Michael Altfield. I want to thank him and all the other great contributors of usbkill for their great work, inspiration and help. I firmly believe in the principles of the open source community, which call for the sharing and enhancement of one another work. The purpose of this project is to revive an abandoned project and to support others in learning and comprehending the fundamentals of Python, Qt and macOS, and to develop their own projects.

Many more credits are in the acknowledgments file.

 

License

Provided under the terms of the GNU GPL3 License © Lennart Haack 2023.

See LICENSE file for details. For the licenses of used third party libraries and software, please refer to the ACKNOWLEDGMENTS file.

swiftguard's People

Contributors

lennolium avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

swiftguard's Issues

menubar icon has the wrong color

Issue description

The menubar icon is white instead of black
Bildschirmfoto 2023-10-16 um 16 24 07

Environment

  • Operating System Version: macOS 14.0
  • Additional Information:

Steps to reproduce the issue

  1. Look at menubar

What is expected?

It should look like the other icons

Additional details / screenshots

Bildschirmfoto 2023-10-16 um 16 24 07

Opening weirdness

Ayo ! I've got a problem ! I don't know if it's the right place to ask I'm sorry

I installed SwiftGuard v2 and launched it but I can't see it... nowhere...
the app should appear in the macos system tray but there is nothing. And when I try to delete it from my apps I get told that the app is open so that I can't delete it... but it's nowhere so I can't close it... wtf
Obviously I need some help 😭

Quitting the application via "exit" or command + Q doesn't work

Application Banner

Issue Submit Form

Provide the following Info properly, which will help me to resolve your issue quickly.


Issue description

I cannot close the app via the exit button or using command + Q, I can only force quit it via the activity monitor. This happens every time. 

 

Environment

  • Operating System Version: macOS Sonoma 14.0
  • swiftGuard Version: 0.0.2
  • App Launched by: App
  • Additional Information:

 

Steps to reproduce the issue

1.  Start app
2.  try to close app
3. 

 

Did you find a fix?

It should close the app.

 

Additional details / screenshots



 

Checklist

  • I have searched the Issues of this repository and believe that this is not a duplicate.
  • I have checked the documentation/wiki and found no answer.
  • I have attempted to find the simplest possible steps to reproduce the issue.
  • I have included screenshots / logs / repro-steps in this issue.
  • I have checked the logs and found no relevant messages (only if applicable).
  • I am not reporting a personal or third party security vulnerability. Instead, please visit the Security Policy.
  • (Optional) I want to appear in the commit description as a contributor of this feature or fix.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.