<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Brianna Morgan</title>
    <description>The latest articles on DEV Community by Brianna Morgan (@brianna_morgan_efe5e75511).</description>
    <link>https://dev.to/brianna_morgan_efe5e75511</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3523158%2F0411bc54-c62d-447f-92d5-c053faebfc99.jpg</url>
      <title>DEV Community: Brianna Morgan</title>
      <link>https://dev.to/brianna_morgan_efe5e75511</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/brianna_morgan_efe5e75511"/>
    <language>en</language>
    <item>
      <title>A Simple macOS Tool for Securely Overwriting Files (Without the CLI Headaches)</title>
      <dc:creator>Brianna Morgan</dc:creator>
      <pubDate>Sat, 25 Apr 2026 23:23:08 +0000</pubDate>
      <link>https://dev.to/brianna_morgan_efe5e75511/a-simple-macos-tool-for-securely-overwriting-files-without-the-cli-headaches-50pc</link>
      <guid>https://dev.to/brianna_morgan_efe5e75511/a-simple-macos-tool-for-securely-overwriting-files-without-the-cli-headaches-50pc</guid>
      <description>&lt;p&gt;Secure file deletion on macOS is one of those things everyone thinks they have handled — until they actually need it. Whether you're dealing with sensitive documents, logs, exports, or personal files, securely overwriting data is still a real requirement for many workflows.&lt;/p&gt;

&lt;p&gt;The problem?&lt;br&gt;
Most built‑in or third‑party solutions are either outdated, overly complex, or require command‑line steps that non‑technical users won’t touch. And many GUI tools haven’t kept up with modern macOS changes.&lt;/p&gt;

&lt;p&gt;A colleague of mine built Overwrite Pro to solve exactly this. It’s a lightweight macOS utility that securely overwrites files using safe overwrite patterns, with a clean drag‑and‑drop interface and zero telemetry.&lt;/p&gt;

&lt;p&gt;🔐 Why this matters&lt;br&gt;
Secure deletion isn’t just for high‑security environments. It’s useful for:&lt;/p&gt;

&lt;p&gt;developers handling sensitive test data&lt;/p&gt;

&lt;p&gt;journalists or researchers working with confidential files&lt;/p&gt;

&lt;p&gt;privacy‑focused users&lt;/p&gt;

&lt;p&gt;IT admins sanitizing files before transfer&lt;/p&gt;

&lt;p&gt;anyone who wants to ensure deleted files stay deleted&lt;/p&gt;

&lt;p&gt;On macOS, simply dragging a file to the Trash doesn’t overwrite anything — it just marks the space as available. Overwrite Pro performs an actual overwrite on disk before deletion.&lt;/p&gt;

&lt;p&gt;🧰 What Overwrite Pro does&lt;br&gt;
Securely overwrites files using safe, irreversible patterns&lt;/p&gt;

&lt;p&gt;Works entirely offline — no telemetry, no analytics, no external services&lt;/p&gt;

&lt;p&gt;Uses native macOS APIs for reliability&lt;/p&gt;

&lt;p&gt;Supports drag‑and‑drop for quick workflows&lt;/p&gt;

&lt;p&gt;Has a clean, minimal UI that fits macOS&lt;/p&gt;

&lt;p&gt;Runs fast and stays lightweight&lt;/p&gt;

&lt;p&gt;🖥️ Why it was built&lt;br&gt;
The goal wasn’t to create a full “security suite.” It was to build a small, focused tool that does one job well: permanently destroy files in a way that’s simple, reliable, and privacy‑respecting.&lt;/p&gt;

&lt;p&gt;📦 App Store&lt;br&gt;
If you want to check it out, here’s the link &lt;a href="https://apps.apple.com/us/app/overwrite-pro/id6760554978" rel="noopener noreferrer"&gt;Overwrite Pro&lt;/a&gt;&lt;br&gt;
Would love feedback from anyone working in security, IT, or privacy. What features would make a tool like this more useful in your workflow?&lt;/p&gt;

</description>
      <category>privacy</category>
      <category>security</category>
      <category>showdev</category>
      <category>tooling</category>
    </item>
    <item>
      <title>Why I Needed a Safe Way to Inspect QR Codes on iOS (and the Tool That Solved It)</title>
      <dc:creator>Brianna Morgan</dc:creator>
      <pubDate>Sat, 25 Apr 2026 23:19:32 +0000</pubDate>
      <link>https://dev.to/brianna_morgan_efe5e75511/why-i-needed-a-safe-way-to-inspect-qr-codes-on-ios-and-the-tool-that-solved-it-20f9</link>
      <guid>https://dev.to/brianna_morgan_efe5e75511/why-i-needed-a-safe-way-to-inspect-qr-codes-on-ios-and-the-tool-that-solved-it-20f9</guid>
      <description>&lt;p&gt;QR codes have quietly become one of the easiest ways to deliver malicious links. They show up in phishing kits, physical social‑engineering attempts, fake parking meters, restaurant menus, and even printed scam flyers. If you work in cybersecurity or DFIR, you’ve probably run into situations where you need to inspect a QR code without opening it.&lt;/p&gt;

&lt;p&gt;The problem?&lt;br&gt;
Most QR apps on iOS automatically open the link or make external requests. Many also include analytics or third‑party SDKs — not ideal when you’re handling suspicious payloads.&lt;/p&gt;

&lt;p&gt;A colleague of mine built QR Lume, a small iOS utility designed specifically for this problem. It lets you safely inspect the raw contents of a QR code inside Apple’s sandbox, with zero telemetry and no third‑party tracking.&lt;/p&gt;

&lt;p&gt;🔍 What it does&lt;br&gt;
Shows the raw QR payload without opening anything&lt;/p&gt;

&lt;p&gt;Runs fully inside Apple’s native sandbox&lt;/p&gt;

&lt;p&gt;Makes no external requests unless you choose to&lt;/p&gt;

&lt;p&gt;Contains no analytics, no tracking, no third‑party SDKs&lt;/p&gt;

&lt;p&gt;Supports scanning from camera or photo library&lt;/p&gt;

&lt;p&gt;Includes a hex + string viewer for deeper inspection&lt;/p&gt;

&lt;p&gt;🛡️ Why this matters&lt;br&gt;
QR‑based phishing is growing, and mobile devices are often the weakest link. Having a safe, offline way to inspect QR data is useful for:&lt;/p&gt;

&lt;p&gt;DFIR triage&lt;/p&gt;

&lt;p&gt;Mobile security testing&lt;/p&gt;

&lt;p&gt;Investigating suspicious physical QR codes&lt;/p&gt;

&lt;p&gt;Teaching junior analysts safe inspection workflows&lt;/p&gt;

&lt;p&gt;Privacy‑minded users who want to see what they’re scanning&lt;/p&gt;

&lt;p&gt;📱 The app&lt;br&gt;
If you’re curious, here’s the App Store link:&lt;a href="https://apps.apple.com/us/app/qrlume/id6762032298" rel="noopener noreferrer"&gt;QR Lume on the App Store&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Would love feedback from anyone working in mobile security, DFIR, or privacy. What features would make a tool like this even more useful in your workflow?&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
