Skip to content

Instantly share code, notes, and snippets.

View AnimeshShaw's full-sized avatar
🏠
Working from home

Animesh Shaw AnimeshShaw

🏠
Working from home
View GitHub Profile
@AnimeshShaw
AnimeshShaw / brute-finger-listusers.sh
Created June 23, 2019 12:24
A Simple bash script to list all users using finger service on *nix via bruteforce.
#!/bin/bash
input="/usr/share/metasploit-framework/data/wordlists/unix_users.txt"
if [ "$1" == "" ]; then
echo "Ennter Host IP."
else
while IFS= read -r item
do
output=$(finger $item@$1)
<html>
<head><title>Testing HTML Injection...</title></head>
<body>
<p><h1>Hello World!</h1></p>
<!--<script>alert(/xss stored/);</script>-->
<body>
</html>

Keybase proof

I hereby claim:

  • I am animeshshaw on github.
  • I am animeshshaw (https://keybase.io/animeshshaw) on keybase.
  • I have a public key ASB2lYdV7LWTZJVQI6hEaxul62brmAoodXCFhMNRHmW0WQo

To claim this, I am signing this object:

@AnimeshShaw
AnimeshShaw / Buffer Overflow Tutorial in Kali.md
Created April 5, 2017 15:09 — forked from apolloclark/Buffer Overflow Tutorial in Kali.md
Buffer overflow demonstration in Kali Linux, based on the Computerphile video
By Tanguy Andreani
Twitter: @andreani_tanguy
Website: https://globalnewsys.wordpress.com/
Date: 1 July 2014
More than 1200 websites !
Blogs on Computer Security:
https://antelox.blogspot.com/
@AnimeshShaw
AnimeshShaw / GitHub-Forking.md
Created October 10, 2016 16:53 — forked from Chaser324/GitHub-Forking.md
GitHub Standard Fork & Pull Request Workflow

Whether you're trying to give back to the open source community or collaborating on your own projects, knowing how to properly fork and generate pull requests is essential. Unfortunately, when I started going through the process of forking and issuing pull requests, I had some trouble figuring out the proper method for doing so and made quite a few mistakes along the way. I found a lot of the information on GitHub and around the internet to be rather piecemeal and incomplete - part of the process described here, another there, common hangups in a different place, and so on.

In an attempt to coallate this information for myself and others, this short tutorial is what I've found to be fairly standard procedure for creating a fork, doing your work, issuing a pull request, and merging that pull request back into the original project.

Creating a Fork

Just head over to the GitHub page and click the "Fork" button. It's just that simple. Once you've done that, you can use your favorite git client to clone your

@AnimeshShaw
AnimeshShaw / inputTypeNumberPolyfill.js
Created June 29, 2016 06:34 — forked from nbouvrette/inputTypeNumberPolyfill.js
Stand alone JavaScript polyfill allow only numbers on input of type number.
/**
* Stand alone polyfill allow only numbers on input of type number.
*
* While input filtering is already supported by default by some browsers, maximum length has not been implemented by
* any. This script will solve both issue and make sure that only digits can be entered in input elements of type
* number. If the optional attribute `max` is set, it will calculate it's length and mimic the `maxlength` behavior on
* input of type text.
*
* Supports:
*
@AnimeshShaw
AnimeshShaw / GoogleUrlShortener.py
Created April 13, 2016 15:40
A python script to shorten or expand urls using Google Url Shortener API.
import json
import requests
import argparse
import sys
class GUrlShorten():
def __init__(self, key):
self.API_KEY = key
@AnimeshShaw
AnimeshShaw / PPS-FilesBot.py
Created June 28, 2015 19:52
Python-Programming-Society File Download Bot
"""
Python Programming Society Files Downloader
===========================================
Python Programmers Society is a Facebook group which connects people who love
to program in Python and want to spread the word about the fastest growing
programming language in the world.
Total Members :- 36,600+ and Counting.