All Projects → fulldecent → System Bus Radio

fulldecent / System Bus Radio

Licence: mit
Transmits AM radio on computers without radio transmitting hardware.

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
Makefile
30231 projects
shell
77523 projects

Projects that are alternatives of or similar to System Bus Radio

Gr Recipes
Main GNU Radio recipe repository for use with PyBOMBS
Stars: ✭ 90 (-98.46%)
Mutual labels:  radio, software-defined-radio
OpenAVRc Dev
The Next Step ...
Stars: ✭ 60 (-98.97%)
Mutual labels:  radio, transmitter
Pagermon
Multimon-ng pager message parser and viewer
Stars: ✭ 154 (-97.36%)
Mutual labels:  radio, software-defined-radio
Rfsec Toolkit
RFSec-ToolKit is a collection of Radio Frequency Communication Protocol Hacktools.无线通信协议相关的工具集,可借助SDR硬件+相关工具对无线通信进行研究。Collect with ♥ by HackSmith
Stars: ✭ 1,085 (-81.39%)
Mutual labels:  radio, communication
gr-etcetera
Additional PyBOMBS recipes that aren't in gr-recipes
Stars: ✭ 71 (-98.78%)
Mutual labels:  radio, software-defined-radio
Soapy power
Obtain power spectrum from SoapySDR devices (RTL-SDR, Airspy, SDRplay, HackRF, bladeRF, USRP, LimeSDR, etc.)
Stars: ✭ 88 (-98.49%)
Mutual labels:  radio, software-defined-radio
SDR Matlab LTE
📡 Using Software Designed Radio to transmit LTE downlink signals at 2.4 GHz
Stars: ✭ 21 (-99.64%)
Mutual labels:  radio, software-defined-radio
Airspy Fmradion
Software decoder for FM/AM broadcast radio with AirSpy R2 / Mini, Airspy HF+, and RTL-SDR
Stars: ✭ 59 (-98.99%)
Mutual labels:  radio, software-defined-radio
RTLion
Multipurpose RTL-SDR Framework for RTL2832 based DVB-T receivers
Stars: ✭ 88 (-98.49%)
Mutual labels:  radio, software-defined-radio
HIGH-TO-LOW
in this repository you will find codes in C and their equivalence in MIPS Assembly
Stars: ✭ 20 (-99.66%)
Mutual labels:  microprocessor, low-level
8086-cheatsheet
8086 Microprocessor Cheat sheet with Programs
Stars: ✭ 81 (-98.61%)
Mutual labels:  microprocessor, low-level
Rtl Sdr
library for turning a RTL2832 based DVB dongle into a Software DefinedReceiver; mirror from https://git.osmocom.org/rtl-sdr/
Stars: ✭ 336 (-94.24%)
Mutual labels:  radio, software-defined-radio
ElectricalEngineering.jl
Julia electrical engineering package
Stars: ✭ 22 (-99.62%)
Mutual labels:  engineering, electrical-engineering
Pybombs
PyBOMBS (Python Build Overlay Managed Bundle System) is the GNU Radio install management system for resolving dependencies and pulling in out-of-tree projects.
Stars: ✭ 316 (-94.58%)
Mutual labels:  radio, software-defined-radio
Qspectrumanalyzer
Spectrum analyzer for multiple SDR platforms (PyQtGraph based GUI for soapy_power, hackrf_sweep, rtl_power, rx_power and other backends)
Stars: ✭ 677 (-88.39%)
Mutual labels:  radio, software-defined-radio
Web Series
📚 现代 Web 开发语法基础与工程实践,涵盖 Web 开发基础、前端工程化、应用架构、性能与体验优化、混合开发、React 实践、Vue 实践、WebAssembly 等多方面。
Stars: ✭ 666 (-88.58%)
Mutual labels:  engineering
Applozic Android Sdk
Android Real Time Chat & Messaging SDK
Stars: ✭ 611 (-89.52%)
Mutual labels:  communication
Luaradio
A lightweight, embeddable software-defined radio framework built on LuaJIT
Stars: ✭ 509 (-91.27%)
Mutual labels:  radio
Trunk Recorder
Records calls from a Trunked Radio System (P25 & SmartNet)
Stars: ✭ 505 (-91.34%)
Mutual labels:  radio
Chaos Monkey Spring Boot
Chaos Monkey for Spring Boot
Stars: ✭ 646 (-88.92%)
Mutual labels:  engineering

System Bus Radio

This program transmits radio on computers / phones without radio transmitting hardware.

Why?

Some computers are intentionally disconnected from the rest of the world. This includes having their internet, wireless, bluetooth, USB, external file storage and audio capabilities removed. This is called "air gapping". Even in such a situation, this program can transmit radio.

Publicly available documents already discuss exfiltration from secured systems using various electromagnetic radiations. This is documented in the TEMPEST guidelines published by the US National Security Agency and the US Department of Defense. This project simply adds to that discussion.

How to use it

NEW: Try it in your browser, click here: http://fulldecent.github.io/system-bus-radio/

Enter the Using _mm_stream_si128 folder and compile using make. (There are also other flavors you can make and try in different folders!)

make

Run this using a 2015 model MacBook Air. Then use a Sony STR-K670P radio receiver with the included antenna and tune it to 1580 kHz on AM.

You should hear the "Mary Had a Little Lamb" tune playing repeatedly. Other equipment and tuning may work as well. On the equipment above, the author has achieved clear transmission over two meters of open air or one meter through drywall. Different results will be achievable with different equipment.

Are you using an antenna? At the beginning, the author placed the antenna directly on top of the number 4 key and that worked best (on any AM frequency). It was a round antenna. Then once they knew it worked they moved the antenna back. Moving it back reduced the number of frequencies that it worked on, and eventually only that one (1580 kHz) worked. Different hardware will certainly have different frequency response. Here are some results that have been sent in by readers. Please mail [email protected] with your results (including makes and models of all equipment involved) or edit this file directly and create a pull request.

NEW: See our [basic RTL SDR guide] to receive system bus signals using another computer with RTL SDR hardware.

Technical Explanation

This program runs instructions on the computer that cause electromagnetic radiation. The emissions are of a broad frequency range. To be accepted by the radio, those frequencies must:

  • Be emitted by the computer processor and other subsystems
  • Escape the computer shielding
  • Pass through the air or other obstructions
  • Be accepted by the antenna
  • Be selected by the receiver

By trial and error, the above frequency was found to be ideal for that equipment.

The actual emissions are caused by the _mm_stream_si128 instruction that writes through to a memory address. Inspiration for using this instruction was provided in:

Guri, M., Kachlon, A., Hasson, O., Kedma, G., Mirsky, Y. and Elovici, Y., 2015. GSMem: data exfiltration from air-gapped computers over GSM frequencies. In 24th USENIX Security Symposium (USENIX Security 15) (pp. 849-864).

https://www.usenix.org/node/190937

Please note that replacing _mm_stream_si128 with a simple x++; will work too. The author's experience has been that _mm_stream_si128 produces a stronger signal. There may be other ideas that work even better, and it would be nice to improve this method to be more portable (not require SSE extensions).

The program uses square wave modulation, which is depicted below:

|<--------------------TIME-------------------->|
|                                              |
|‾|_|‾|_|‾|_____________|‾|_|‾|_|‾|_____________
|                       |   |   |
|<------SIGNAL--------->|   |   |
                            |   |
                            |<->| CARRIER

Notes on high precision time APIs:

Press coverage

🍷 Project tip jar: https://amazon.com/hz/wishlist/ls/EE78A23EEGQB

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].