Steganography and Hiding Activities
Covert Communication
Using Covert TCP
For hiding data in TCP/IP packet headers.
Unexpected error with integration github-files: Integration is not installed on this space
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.cSending Message
./covert_tcp -dest 10.0.2.46 -source 10.0.2.42 -source_port 8888 -dest_port 9999 -file /root/Desktop/send/message.txtConfiguring Receiver
Setup
wget https://raw.githubusercontent.com/cudeso/security-tools/master/networktools/covert/covert_tcp.c
cc -o covert_tcp covert_tcp.cStarting 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.txtWhite 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.txtUsing 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.exeNow create a link to the ADS file to create backdoor:
mklink backdoor.exe readme.txt:calc.exeOpening the backdoor link will open the hidden file.
Last updated
Was this helpful?