hardware/gsm-lte-modules/SKILL.md
GSM, LTE, and NB-IoT module interfacing: SIM800/SIM7000 AT commands, logic shifting, and power constraints.
npx skillsauth add aeondave/malskill gsm-lte-modulesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Goal: Interface cellular modems (SIM800L, SIM7000G, A7670) with microcontrollers to send text messages, perform HTTP(s) requests, or establish PPP TCP/IP bridges.
Cellular modems emit bursts of RF transmission that pull up to 2A peaks.
RX pin of the modem string.Modems are driven via serial AT commands. Terminate all commands with \r\n.
AT // Check communication. Expect: OK
AT+CPIN? // Check if SIM is unlocked. Expect: +CPIN: READY
AT+CSQ // Check Signal Quality. (0-31, 99 is no signal).
AT+CGATT? // Check GPRS attachment. Expect: +CGATT: 1
AT+SAPBR=3,1,"Contype","GPRS"
AT+SAPBR=3,1,"APN","internet" // Set APN of your carrier
AT+SAPBR=1,1
AT+HTTPINIT
AT+HTTPPARA="URL","http://example.com/api"
AT+HTTPACTION=0 // 0 = GET
AT+HTTPREAD // Read the response payload
AT+HTTPTERM
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.