r/flipperhacks

New Flipper One Multi-Tool Computer Is Built for Tinkerers
▲ 281 r/flipperhacks+4 crossposts

New Flipper One Multi-Tool Computer Is Built for Tinkerers

While the Zero was built for offline point-to-point access-control protocols, the Flipper One is for 5G, Ethernet, satellite, and Wi-Fi connectivity. There are two WAN/LAN ports running at 1Gbps, USB Ethernet support up to 5Gbps, and Wi-Fi 6E support, while additional modules provide 5G

The Flipper One features a high-performance 8-core RK3576 SoC, a Mali-G52 GPU, and an NPU for running LLMs or other models locally. That’s all paired with 8GB of RAM, with the CPU running Linux OS. Meanwhile, a low-power microcontroller unit running Raspberry Pi with an RP2350 powers the display controls, touchpad, LED lights, and other aspects of the device.

pcmag.com
u/toungepunckedpetunia — 9 hours ago
▲ 511 r/flipperhacks+72 crossposts

New moderators needed - comment on this post to volunteer to become a moderator of this community.

Hello everyone - this community is in need of a few new mods, and you can use the comments on this post to let us know why you’d like to be a mod here. 

Priority is given to redditors who have past activity in this community or other communities with related topics. It’s okay if you don’t have previous mod experience and our goal, when possible, is to add a group of moderators so you can work together to build the community.

Please use at least 3 sentences to explain why you’d like to be a mod and share what moderation experience you have (if any).  

If you are interested in learning more about being a moderator on Reddit, please visit redditforcommunity.com. This guide to joining a mod team is a helpful resource. 

Comments from those making repeated asks to adopt communities or that are off topic will be removed. 

u/ModCodeofConduct — 5 days ago
▲ 46 r/flipperhacks+1 crossposts

I made a Flipper0NE!!!!

flipperzero UARTd to a rpi0 with kali. input on the dpad is so PAINful though....

u/qqmajikpp — 7 days ago

My rolljam attack did not succed.Why?

I used ECRF V2 for my jammer and my flipper zero to catch the signal from the fob.I caught the signal and the car did not unlock because the jammer was jamming it.When i stopped the jammer and sent the unused code.The car still did not open.Why?

Thanks!

reddit.com
u/_nazwa_ — 9 days ago

Looks for a USB Intervalometer app for photography

I am a photographer, using my camera to often times shoot astrophotography and other kinds of time lapses and scenes where an Intervalometer is very important. But I always have the bad habit of leaving my Intervalometer behind, and with mine recently breaking, i looked at the flipper (which always sits in my pocket) and wondered if this device can do the job.

I noticed that there is an IR Intervalometer app, sending an infrared signal to a camera with a reciever to do that job, however my camera uses a wired connection to its MicroUSB port for such devices. And I couldn't find any USB Intervalometers for the Flipper Zero.

Does anyone here know of a good/functional app for the F0 that will allow me to use it as an Intervalometer on my camera?

reddit.com
u/Virotine — 11 days ago

Field Testing the Single-Chip RollJam: Overcoming Near-Field Desensitization (Hardware vs Software solutions) 📡

Hey everyone, c0d3r_SubGHz here with a development update on the Single-Chip RollJam PoC.

Thanks to some incredible field testing from early adopters in the community, we ran into a fascinating physical limitation and found two ways to bypass it.

The Problem: Near-Field Desensitization Since the v1.0 uses a custom bare-metal SPI driver to blast Continuous Wave (CW) Jamming (a literal wall of RF fire) instead of the old TDM switching, the external module is extremely loud. Because the internal RX antenna and the external TX antenna are just an inch apart, the jammer effectively "blinds" the Flipper's internal receiver. It can't hear the target's keyfob over its own noise.

Here is how we are beating physics:

Solution 1: The Hardware Approach (See Picture 📸) As figured out by us, using an SMA extension cable to physically distance the jamming antenna from the Flipper's body prevents desensitization. The external module screams, the target car's AGC gets blinded, but the Flipper's internal radio stays clean enough to capture the rolling code.

Solution 2: The Software Approach (Jam Offset) If you don't want to carry cables around, I coded a dynamic 'Jam Offset' feature in the app's UI. By pushing the jamming frequency further away (e.g., +/- 120kHz to 900kHz from the center freq), you give the Flipper's internal receiver enough "breathing room" to catch the preamble, while still being close enough to corrupt the signal reaching the car's ECU.

Side note: I decided to keep the transition between Signal A and Signal B manual (requiring a button click) rather than auto-switching. This acts as a safety buffer so residual RF noise or bounced signals don't instantly trigger a garbage Signal B capture.

Massive thanks to the community for the data. Pushing the CC1101 hardware to its absolute limit is a fun ride.

(As always, due to subreddit rules, I don't post binaries here. Full documentation and project access are in my Bio/Profile).

u/c0d3r-SubGHz — 10 days ago

Managed to achieve stable Single-Chip RollJam. Wrote a custom Bit-Banging SPI driver, DWT Cycle-Accurate Replay, and Continuous Jamming. (PoC Video)

Ciao a tutti, sono c0d3r_SubGHz.

Tutti dicevano che RollJam stabile sul Flipper era troppo inaffidabile a causa della latenza del sistema operativo e dei punti ciechi di commutazione RX/TX. Ho passato gli ultimi mesi a riscrivere l'approccio da zero. Ecco come ho risolto il problema in questa PoC:

  1. SPI software personalizzato (Bit-Banging): furi_hal blocca il bus SPI hardware, mandando in crash il sistema operativo se si tenta di sostituire i moduli a caldo. Ho scritto un driver SPI software bare-metal per il CC1101 per bypassare completamente il sistema operativo del Flipper.

  2. Jamming asincrono continuo e offset dinamico: Ho abbandonato il vecchio metodo TDM (switching). Il modulo esterno ora emette un "muro di fuoco" continuo (CW sul pin GD0) utilizzando un offset di frequenza selezionabile dinamicamente (da -900 kHz a +900 kHz). Il Flipper ascolta simultaneamente, completamente insensibile al jammer ma captando perfettamente il telecomando bersaglio.

  3. Filtraggio intelligente di squelch e tono pilota: L'app filtra dinamicamente il rumore. Attende un preambolo di oltre 1000 µs e si aggancia a 16 impulsi validi prima di registrare, eliminando dinamicamente i frame corrotti.

  4. Eccesso di interferenza post-cattura: Una volta catturato il segnale, emette istantaneamente un muro di interferenza di 1,5 secondi per coprire il tempo di reazione del dito umano e prevenire sblocchi accidentali.

  5. Riproduzione DWT bare-metal: La riproduzione viene eseguita all'interno di un blocco FURI_CRITICAL_ENTER() utilizzando il contatore di cicli DWT ARM (DWT->CYCCNT) per l'aggancio di fase assoluto e la trasmissione a jitter zero sul pin GD0.

A causa delle regole del subreddit relative ai binari compilati e agli exploit, non posso ospitare il .fap su repository pubblici.

La documentazione completa su GitHub e il link di accesso al Project Hub sono disponibili nella mia biografia/profilo Reddit.

reddit.com
u/c0d3r-SubGHz — 13 days ago