$3 BadUSB

preview_player
Показать описание


Remember to like comment and subscribe!!! Please leave questions in the comments if you have any.

----------------------------------------------------------------------------------------------
Рекомендации по теме
Комментарии
Автор

Looking forward to new content from you, this is by far the best tutorial for creating your own badUSB/USB rubber ducky I've ever seen

SaltyViper
Автор

Thank you so much for this! Arduino micro just arrived today and I got this working in under 2 minutes.

thefakecanadian
Автор

I did this project and the esp8266 deauther project and they both work perfectly because of you! Gonna have so much fun!

-pyrosef-
Автор

Fantastic video. There are so many people looking to hack USBs to make there own versions of these, this is a life saver

Hello
Автор

BTW, If you hold the the button on the board (RESET), it will prevent the sketch(the code) from running. It will be held in the boot-loader stage until released. If there is no button, you can solder a small button on the RST pin to a GND pin.

nickldominator
Автор

I'm here from Jackk Tutorials ... Good work both of you :)

naami
Автор

Thank you. Can you tell me what language I need to use when writing to your compiler ?

cuongdiamond_
Автор

Nice video man! Keep up the work! A question tho, what payload did you use to demonstrate shown at 00:58 ? Thanks

Pianonymouz
Автор

Thank you sir, where have you been all my life!

brant
Автор

This channel will grow very fast, keep up the good work!

infinitemtg
Автор

JackkTutorials sent me I immediately subscribed and I'm going to watch all of your vids. :)

thegai
Автор

i do I put it together, i just bought all the components, and realized you dont have a tutorial on how to put it together?

LebaneseLizard
Автор

thanks a lot! Btw you could add a little switch or button on the input/output pins and add a check in the code to execute only if pressed/switched on. Or add different coloured small leds + 2 buttons and upload multiple options of the keyboard input selectable by one button and executable by the other. This is actually much better than the original rubber ducky xD

MichalMonday
Автор

To prevent the arduino from executing the script on startup i recommend adding a line like this to you're code before compiling

pinMode(7, INPUT);


digitalWrite(7, 1);
bool buttonState = digitalRead(7);


if(buttonState == LOW) {





}

just add a cable from gorund to the pin 7 and it will just have a huge delay it will prevent it from executing any code

lilpp
Автор

How do you prevent the ducky from executing on your own computer when you plug it in?

vr
Автор

Your latest malduino is the same 44 pounds now !

yusufdomun
Автор

Having so much fun playing with this thank you so much

hughhumphris
Автор

When trying to upload I got this error:
Arduino: 1.8.5 (Windows 10), Board: "Digispark (Default - 16.5mhz)"

Sketch uses 2810 bytes (46%) of program storage space. Maximum is 6012 bytes.
Global variables use 106 bytes of dynamic memory.
An error occurred while uploading the sketch
Running Digispark Uploader...
Plug in device now... (will timeout in 60 seconds)

This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.


That is a copy of the error message. If someone could help me that would be great thanks.

undisclosedben
Автор

I love your stuff Seytonic. You should have way more subs.

briankelleher
Автор

Every script I try it says ‘Keyvoard’ not found. Does your sketch include line’#include <keyboard.h>’?’ What do I

noahlunberry