Skip to content

Instantly share code, notes, and snippets.

@vijay922
vijay922 / install_go.sh
Created May 6, 2019 12:40 — forked from haccer/install_go.sh
Bash script to install the latest version of Go (For linux)
#!/bin/bash
# Bash script to install the latest version of Go (For linux)
# Get current version of Go for 64-bit Linux
CUR=$(curl -s https://golang.org/dl/ | grep linux-amd64 | grep 'download downloadBox' | cut -d'"' -f4)
# Download Go
wget $CUR
# Get filename
@vijay922
vijay922 / scanio.sh
Created May 6, 2019 12:40 — forked from haccer/scanio.sh
PoC script to mass-locate vulnerable subdomains using results from Rapid7's Project Sonar
#!/bin/bash
# Usage : ./scanio.sh <save file>
# Example: ./scanio.sh cname_list.txt
# Premium
function ech() {
spinner=( "|" "/" "-" "\\" )
while true; do
for i in ${spinner[@]}; do
echo -ne "\r[$i] $1"
@vijay922
vijay922 / LFI.pl
Created May 22, 2019 05:11 — forked from Kaizen1337/LFI.pl
LocalFile
#!/usr/bin/perl
use HTTP::Request;
use LWP::UserAgent;
system("title The JavaHaxor Group");
system("color 1e");
system ("cls");
print " |=======================================================|\n";
print " |= _ ______ _____ =|\n";
print " |= | | | ____|_ _| =|\n";
@vijay922
vijay922 / Youtubd-dl.sh
Created August 21, 2020 04:47 — forked from MShahine/Youtubd-dl.sh
This File Contain The Youtube-DL That Allows To Download Youtube Videos And The Feature Of It Is Get The Best Format And Download The File.
function ytd {
FORM=$(youtube-dl -F "$1" | grep "(best)")
DIM=$(echo $FORM | sed 's/^[0-9][0-9][0-9]*\s*//g' | sed 's/^[a-z0-9][a-z0-9]*\s*//g' | cut -d ' ' -f 1)
NUM=$(echo $FORM | cut -d ' ' -f 1)
printf "Dimensions are: $DIM\n"
youtube-dl -f $NUM "$1"
printf "$FORM" &> /tmp/log
}