Skip to content

Instantly share code, notes, and snippets.

@dev7060
dev7060 / stego.py
Created June 6, 2019 13:11 — 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.")
@dev7060
dev7060 / swiss_crypto.py
Created June 6, 2019 13:12 — forked from SharadKumar97/swiss_crypto.py
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
@dev7060
dev7060 / swiss_crypto.py
Created June 6, 2019 13:12 — forked from SharadKumar97/swiss_crypto.py
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
@dev7060
dev7060 / url_spidy.py
Created June 6, 2019 13:12 — forked from SharadKumar97/url_spidy.py
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
@dev7060
dev7060 / set_cookie.py
Created June 6, 2019 13:12 — forked from SharadKumar97/set_cookie.py
This script will insert a cookie with a key value pair in your system .
@dev7060
dev7060 / md5.c
Last active July 18, 2019 16:14 — forked from creationix/md5.c
/*
* Simple MD5 implementation
*
* Compile with: gcc -o md5 -O3 -lm md5.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
@dev7060
dev7060 / active.md
Created July 24, 2019 17:35 — forked from paulmillr/active.md
Most active GitHub users (by contributions). http://twitter.com/paulmillr

Most active GitHub users (git.io/top)

The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Tue, 06 Dec 2016 17:06:46 GMT till Wed, 06 Dec 2017 17:06:46 GMT.

Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:

githubUsers
 .filter(user =&gt; user.followers &gt; 1000)
@dev7060
dev7060 / ladder.md
Created January 30, 2020 08:37 — forked from jamtur01/ladder.md
Kickstarter Engineering Ladder
@dev7060
dev7060 / largest_prime_factor_of_600851475143.c
Created February 22, 2020 03:26
largest prime factor of 600851475143
#include <iostream>
using namespace std;
int main() {
unsigned long long int num = 600851475143, factor=2, i, j;
for(i=2; i<=num; i++){
int flag=0;
if(num%i==0){
for(j=2; j<(i/2); j++){
if(i%j==0){
flag=1;
@dev7060
dev7060 / download.sh
Created June 23, 2020 09:18 — forked from mildred/download.sh
Download from archive.org Wayback Machine
#!/bin/bash
url=http://redefininggod.com
webarchive=https://web.archive.org
wget="wget -e robots=off -nv"
tab="$(printf '\t')"
additional_url=url.list
# Construct listing.txt from url.list
# The list of archived pages, including some wildcard url