Skip to content

Instantly share code, notes, and snippets.

View SharadKumar97's full-sized avatar
🎯
Focusing

SharadKumar97

🎯
Focusing
View GitHub Profile
@SharadKumar97
SharadKumar97 / stego.py
Created July 12, 2017 08:59
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.")
@SharadKumar97
SharadKumar97 / swiss_crypto.py
Last active December 29, 2020 07:56
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.
#########################################################################
#
# 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
@SharadKumar97
SharadKumar97 / set_cookie.py
Last active June 6, 2019 13:12
This script will insert a cookie with a key value pair in your system .
@SharadKumar97
SharadKumar97 / url_spidy.py
Last active December 29, 2020 07:56
This script will fetch out all the hyperlinks from particular website.
#########################################
#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