This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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.") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################################################################### | |
# | |
# Swiss crypto tool is created purely in python.It supports | |
# different hashing algorithm and different encryption algorithm | |
# too.User can also send a secure email by encrypting their body | |
# with private key using this tool. | |
# This script is compatible with python2.7. | |
# Before running this script please install pycrypto library and try | |
# to resolve all dependencies issues. | |
# Author : Sharad Kumar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
######################################### | |
#This script is made for Tutorialspoint.# | |
#This will fetch all the url's of targe.# | |
#website. # | |
#Usage - # | |
# ./url_spidy.py target_address # | |
# # | |
######################################### | |
import urllib2 | |
from bs4 import BeautifulSoup |