十块钱RMB | 用Digispark制作一个简单的Badusb

网友投稿 2019-04-15 11:06

Digispark是一个这样的很小的开发板

https://cdn.china-scratch.com/timg/190417/110AH615-0.jpg

淘宝上10元左右一个

https://cdn.china-scratch.com/timg/190417/110AJ131-1.jpg

准备

  • Digispark ATtiny 85

  • Arduino IDE 1.8.4 (parrot 中的ide是2.x版本的没有Board Manager)

    https://www.arduino.cc/en/Main/Software

  • Digispark驱动程序 (Windows)

    https://github.com/digistump/DigistumpArduino/releases

配置Arduino IDE

打开 文件->首选项

把这个网址添加到附加开发板管理网址

https://raw.githubusercontent.com/digistump/arduino-boards-index/master/package_digistump_index.json

https://cdn.china-scratch.com/timg/190417/110AK007-2.jpg

点击确定(好)

然后打开开发板管理器

https://cdn.china-scratch.com/timg/190417/110AGO2-3.jpg

这时会自动更新一些东西,建议挂上代理,不然很慢

在Arduino中添加Digispark的支持

等待开发板管理器加载完成,搜索digistump并安装第一个Digistump AVR Boards

https://cdn.china-scratch.com/timg/190417/110ATM7-4.jpg

等待安装完成,完成后会有绿色表示

https://cdn.china-scratch.com/timg/190417/110AW427-5.jpg

安装Windows下的驱动

打开上面的链接,下载Digistump.Drivers

https://cdn.china-scratch.com/timg/190417/110AU624-6.jpg

解压后执行Install Drivers.exe即可

https://cdn.china-scratch.com/timg/190417/110AU3X-7.jpg

代码

拿一个最简单的键盘功能来演示

badusb现成代码最多的就是给大黄鸭准备的代码

在这里可以看到一些示例代码

比如第一个Hello World的样例代码,把hello world改成Happy Hacking

DELAY 3000
GUI r
DELAY 500
STRING notepad
DELAY 500
ENTER
DELAY 750
STRING Happy Hacking !!!
ENTER

然后用这里的在线工具

把大黄鸭代码转换成Digispark的代码(注意Board要选Digispark)

/*
 * Generated with <3 by Dckuino.js, an open source project !
*/
#include
#include "DigiKeyboard.h"
const char line1[] PROGMEM = "notepad";
const char line2[] PROGMEM = "Happy Hacking!!!";
char buffer[256];
#define GetPsz(x) (strncpy_P(buffer, (char*)x, 256))
#define KEY_UP_ARROW 0x52
#define KEY_DOWN_ARROW 0x51
#define KEY_LEFT_ARROW 0x50
#define KEY_RIGHT_ARROW 0x4F
#define KEY_LEFT_GUI 0xE3
#define KEY_ESC 0x29
#define KEY_TAB 0x2B
void digiBegin() {
DigiKeyboard.sendKeyStroke(0,0);
DigiKeyboard.delay(50);
}
void digiEnd() {
const int led=1;
pinMode(led, OUTPUT);
while (1) {
 digitalWrite(led, !digitalRead(led));
DigiKeyboard.delay(1000);
}
}
void printText(char *txt) {
DigiKeyboard.print(txt);
DigiKeyboard.update();
}
void setup() {
digiBegin();
DigiKeyboard.delay(3000);
DigiKeyboard.sendKeyStroke(KEY_R,MOD_GUI_LEFT);
DigiKeyboard.delay(500);
// notepad
printText(GetPsz(line1));
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
DigiKeyboard.delay(750);
// Happy Hacking!!!
printText(GetPsz(line2));
DigiKeyboard.sendKeyStroke(KEY_ENTER);
digiEnd();
}
/* Unused endless loop */
void loop() {}

上传

Ardunio IDE中选择工具->开发板->Digispark (Default - 16.5mhz)

https://cdn.china-scratch.com/timg/190417/110A93330-8.jpg

然后点击项目->上传等待编译完成

https://cdn.china-scratch.com/timg/190417/110AaV1-9.jpg

然后插入Digispark 开始上传

https://cdn.china-scratch.com/timg/190417/110A94050-10.jpg

一旦上传完成,你会看到电脑自动的打开了运行然后打开了notepad,自动写了一句话

https://cdn.china-scratch.com/timg/190417/110A94352-11.jpg

https://cdn.china-scratch.com/timg/190417/110A95R4-12.jpg

--end--

声明:本文章由网友投稿作为教育分享用途,如有侵权原作者可通过邮件及时和我们联系删除:freemanzk@qq.com