Skip to content

Instantly share code, notes, and snippets.

View vraghuvaran's full-sized avatar

Raghuvaran Velichala vraghuvaran

View GitHub Profile
@vraghuvaran
vraghuvaran / BigInt.cpp
Last active May 1, 2020 11:04 — forked from ar-pa/BigInt.cpp
bignum class for C++
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 1e2 + 14, lg = 15;
/*
######################################################################
####################### THE BIG INT ##########################
*/
@vraghuvaran
vraghuvaran / url_spidy.py
Last active February 18, 2019 00:53 — forked from SharadKumar97/url_spidy.py
This script will fetch out all the hyperlinks from particular website.
#########################################
# #
#This will fetch all the url's of targe.#
#website. #
#Usage - #
# ./url_spidy.py target_address #
# #
#########################################
import urllib2
from bs4 import BeautifulSoup
@vraghuvaran
vraghuvaran / set_cookie.py
Last active February 18, 2019 00:54 — forked from SharadKumar97/set_cookie.py
This script will insert a cookie with a key value pair in your system .
@vraghuvaran
vraghuvaran / stego.py
Created February 17, 2019 09:10 — 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.")