Thamizhiniyan C S
HomeWriteupsResourcesCheatsheets
CEH Practicals v12
CEH Practicals v12
  • Introduction
  • Foot Printing and Reconnaisance
  • Network Scanning and Enumeration
  • Service Enumeration
  • System Hacking
  • Steganography and Hiding Activities
  • Hacking Web Applications and Web Servers
  • Packet Analysis with Wireshark
  • Hacking Mobile Platforms
  • Wifi Hacking
  • S3 Bucket Enumeration
  • Cryptography
  • Malware Analysis
  • IoT Analysis and Hacking
  • Privilege Escalation
Powered by GitBook
On this page
  • Covert Communication
  • Using Covert TCP
  • White Space Steganography
  • Using Snow
  • Using Stegsnow
  • Image Steganography
  • Openstego
  • Stegonline
  • Alternate Data Streams

Was this helpful?

Steganography and Hiding Activities

PreviousSystem HackingNextHacking Web Applications and Web Servers

Last updated 1 year ago

Was this helpful?

Covert Communication

Using Covert TCP

For hiding data in TCP/IP packet headers.

Configuring Sender

Setup

echo "Secret Message!" > message.txt
wget https://raw.githubusercontent.com/cudeso/security-tools/master/networktools/covert/covert_tcp.c`
cc -o covert_tcp covert_tcp.c

Sending Message

./covert_tcp -dest 10.0.2.46 -source 10.0.2.42 -source_port 8888 -dest_port 9999 -file /root/Desktop/send/message.txt

Configuring Receiver

Setup

wget https://raw.githubusercontent.com/cudeso/security-tools/master/networktools/covert/covert_tcp.c
cc -o covert_tcp covert_tcp.c

Starting the Listener

./covert_tcp -dest 10.0.2.46 -source 10.0.2.42 -source_port 9999 -dest_port 8888 -server -file /home/s4msepi0l/Desktop/receive/receive.txt

White Space Steganography

Using Snow

For hiding and extracting hidden data from a text file.

Hiding Text

snow.exe -C -m "Someone this something" -p "test" original.txt modifiedOriginalFile.txt
  • -m : Message

  • -p : Password

Revealing Text

snow.exe -C -p "test" modifiedOriginalFile.txt

Using Stegsnow


Image Steganography

Openstego

For hiding and extracting hidden data from an image file.

Stegonline


Alternate Data Streams

Hiding files using alternate data streams.

  • Copy calc from system32 folder to your test folder, Now create a text file and append the cal.exe to the file:

type calc.exe > readme.txt:calc.exe
  • Now create a link to the ADS file to create backdoor:

mklink backdoor.exe readme.txt:calc.exe
  • Opening the backdoor link will open the hidden file.

The SNOW manual page
Ubuntu Manpage: stegsnow - whitespace steganography program
OpenStego
Logo
StegOnline
Logo
Logo