You may buy it by this affiliate link on aliexpress store.
http://oss.digirati.com.br/f3/
f3 - Fight Flash Fraud
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |
set(PRJ_NAME CLion_STM_LED) | |
set(MCU_FAMILY STM32F1xx) | |
set(MCU_LINE STM32F103xB) | |
set(MCU_LINKER_SCRIPT STM32F103RBTx_FLASH.ld) | |
cmake_minimum_required(VERSION 3.6) | |
project(${PRJ_NAME} C ASM) | |
add_definitions(-D${MCU_LINE}) |
/* | |
* Copyright (C) 2011 Red Hat, Inc; 2016 Joel Ong | |
* | |
* This program is free software; you can redistribute it and/or | |
* modify it under the terms of the GNU General Public License as | |
* published by the Free Software Foundation; either version 2 of the | |
* License, or (at your option) any later version. | |
* | |
* This program is distributed in the hope that it will be useful, but | |
* WITHOUT ANY WARRANTY; without even the implied warranty of |
void setup() { | |
Serial.begin(115200); | |
pinMode(13,OUTPUT); | |
digitalWrite(13,HIGH); | |
delay(10000); | |
Serial.println("GLITCH RDY"); | |
} | |
int glitchCtr = 0; | |
int secCtr = 1; |
int led1 = 2; | |
int led2 = 3; | |
void setup() { | |
Serial.begin(115200); | |
pinMode(led1,OUTPUT); | |
pinMode(led2,OUTPUT); | |
for(int i = 0;i < 3; i++) | |
{ | |
flashGreen(100); |
/* A Verilog VGA module without state machines or weird bit assignments. | |
* Works with 50MHz clock, 800x600@72Hz. */ | |
module vga(clk, in_R, in_G, in_B, out_R, out_G, out_B, Hsync, Vsync, video_on, x, y); | |
input clk, in_R, in_G, in_B; | |
output wire out_R, out_G, out_B, Hsync, Vsync, video_on; | |
output reg[9:0] x, y; | |
/* counters. increment y at the start of hsync. reset x at the end of front porch. */ |
#include <ESP8266WiFi.h> //Содержится в пакете | |
#include <ESP8266WebServer.h> //Содержится в пакете | |
#include <ESP8266SSDP.h> | |
#include <EEPROM.h> | |
// IP адрес устройства | |
IPAddress apIP(192, 168, 4, 1); | |
// Web интерфейс для устройства | |
ESP8266WebServer HTTP(80); |
You may buy it by this affiliate link on aliexpress store.
http://oss.digirati.com.br/f3/
f3 - Fight Flash Fraud
#!/bin/bash | |
if [[ $EUID -ne 0 ]]; then | |
echo "This script must be run as root" 1>&2 | |
exit 1 | |
fi | |
cd ~/ | |
#bring up vcan interface | |
modprobe can |
The list below is compiled to inform, guide, and inspire budding security researchers. Oh and to pick something for bedtime reading too.
Included in the list are works on the following topics related to MCU/SoC security:
At the end of the list, there is also a section with links to articles of potential general interest, not addressing vulnerabilities in any specific device.