Skip to content

Instantly share code, notes, and snippets.

@FR46M3N7-P4R71CL3
FR46M3N7-P4R71CL3 / blocked_accounts.txt
Last active May 9, 2025 16:35 — forked from the-solipsist/blocked_accounts.txt
Twitter/X accounts blocked in India due to legal demands by the Indian government
*@amitsanatani8
*@bhavikakapoor5
*@rupikaur_
@0lineconflicts
@abdullah795895
@abeer_jahangir
@adeelnonari
@afridi477
@aftabhu98917565
@ahmedalisubhani
@FR46M3N7-P4R71CL3
FR46M3N7-P4R71CL3 / KeyboardSideChannel.vbs
Last active October 9, 2024 13:18
A little VBScript to read the contents of a file, convert to Base-8, and use keyboard LEDs to transmit the data. Just a little, simple PoC to show how even an air-gapped computer (one that’s completely isolated from any network or external devices) can still leak information. The main objective is to maximize the amount of information that can b…
Set WshShell = CreateObject("WScript.Shell")
' Function to convert text to binary
Function TextToBinary(text)
Dim binary, i, char
For i = 1 To Len(text)
char = Asc(Mid(text, i, 1))
binary = binary & Right("00000000" & BinaryStr(char), 8)
Next
TextToBinary = binary