Skip to content

Instantly share code, notes, and snippets.

View mjarpitanand's full-sized avatar
:octocat:
Focusing

arpit anand mjarpitanand

:octocat:
Focusing
  • Rely
  • Banglore
View GitHub Profile
@mjarpitanand
mjarpitanand / stego.py
Created November 15, 2017 12:14 — forked from SharadKumar97/stego.py
This script will hide any text behind any file.
# This script hide's text behind any media file like jpg file, mp3 file ecetera.
# This script accepts two parameter for hiding text and one parameter for finding text.
# Please install steganography python library by - pip install steganography
# This script is compatible with python 2.7
from __future__ import absolute_import,unicode_literals
import argparse
from steganography.steganography import Steganography
parser=argparse.ArgumentParser()
parser.add_argument("--carrier",help="Give path of carrier file which will contain our text.")