Security Affairs
Dark Caracal Deploys New Go Malware With Ethereum-Based C2 Fallback|Australian Police Charge Two Over TeamPCP Credential Theft|Meta to Pay Up to $18B Over Teen Social Media Use|CISA Warns Water Utilities: Find Your Exposed PLCs Before Attackers Do|OpenAI banned Russian ChatGPT accounts backing covert influence operation|CISA Red Team Fully Compromised Two Critical Infrastructure Orgs|FBI Seizes China-Linked Hacking Platforms QScan and QTRouter Used Against Critical Infrastructure|U.S. CISA adds Gitea flaw to its Known Exploited Vulnerabilities catalog|88 ID Verification Breaches Show the Cost of Collecting Identity Data|WhatsApp Adds Stronger Security as Passkeys Hit 1 Billion|Operation Jackal: 58 Arrests Expose the Money Laundering Machine Behind Global Scams|Norway ’s Digital Government Infrastructure Hit by a new DDoS Attack|Dark Caracal Deploys New Go Malware With Ethereum-Based C2 Fallback|Australian Police Charge Two Over TeamPCP Credential Theft|Meta to Pay Up to $18B Over Teen Social Media Use|CISA Warns Water Utilities: Find Your Exposed PLCs Before Attackers Do|OpenAI banned Russian ChatGPT accounts backing covert influence operation|CISA Red Team Fully Compromised Two Critical Infrastructure Orgs|FBI Seizes China-Linked Hacking Platforms QScan and QTRouter Used Against Critical Infrastructure|U.S. CISA adds Gitea flaw to its Known Exploited Vulnerabilities catalog|88 ID Verification Breaches Show the Cost of Collecting Identity Data|WhatsApp Adds Stronger Security as Passkeys Hit 1 Billion|Operation Jackal: 58 Arrests Expose the Money Laundering Machine Behind Global Scams|Norway ’s Digital Government Infrastructure Hit by a new DDoS Attack|
Advertisement

Ad Placeholder

Full Width × 90

Hacking

Steganography to hide secret messages in user’s tweets

Discover how it is possible to apply steganography to hide secret messages in common tweets (or any text) with steg.js-of-the-dump. In the past we have discussed many times on the adoption of steganography to hide messages within images and video, a technique exploited also by authors of malware to hide configuration file and command sent by the C&C […]

Steganography to hide secret messages in user’s tweets

Discover how it is possible to apply steganography to hide secret messages in common tweets (or any text) with steg.js-of-the-dump.

In the past we have discussed many times on the adoption of steganography to hide messages within images and video, a technique exploited also by authors of malware to hide configuration file and command sent by the C&C servers to bots.

This time I desire to discuss the possibility to hide secret messages in apparently harmless and normal tweets with a steganographic method. The post describes how to hide secret messages in user’s tweets (or any text) with steg-of-the-dump.js

The technique is based on the replacement of the letters of the tweet with similar looking letters (Unicode homoglyphs) that are used to hide the hidden content.

Be aware because the technique just allow to hide messages inside a clear content, it doesn’t encrypt the text and this means that if a third party access to the message and knows about the hidden messages it could easily read it.

The technique shown is valid for any communication platform that doesn’t corrupt the message, for example, inserting extra code, this means that this application of steganography works for Twitter and in emails, meanwhile Facebook will probably corrupt it.

The hidden message may only contain only the following subset of characters ;

abcdefghijklmnopqrstuvwxyz123456789'0.:/\%-_?&; (6-bit charset)

The post provides an implementation of the script used to hide the text in the tweets, it allows simply encoding and decoding the messages.

Steganography Twitter hiden messages

The post also provides a suggestion to try to manually recover corrupted tweets, first try adding spaces at the beginning of the message to realign the 6-bit boundary, another possibility is to add the spaces to that area of the tweet that is suspected to be corrupted.

A possible use for this king of steganography is hiding commands sent by C&C making the hard to be detected by a visual inspection of the tweets, consider that a growing number of botnet today makes use of social media platform as communication channell to avoid detection and this methods could help botmasters.

Enjoy to use the library!

Pierluigi Paganini

(Security Affairs –  Steganography,  twitter)