This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import os | |
import sys | |
import datetime | |
import os.path | |
if len(sys.argv)!=3: | |
print "This script takes two file \n 1. InputFile with hostnames \n 2. OutputFilename \n\n Example: python domain_2_ip.py [INPUT_FILE_NAME] [OUTPUT_FILE_NAME]" | |
else: | |
if os.path.exists(sys.argv[1]): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Usage: ./domain2ip.sh [domain-list-file] [output-file] | |
echo -e "[+] domain2ip.sh by @vijay922\n" | |
if [ -z "$1" ] || [ -z "$2" ]; then | |
echo "[!] Usage: ./domain2ip.sh [domain-list-file] [output-file]" | |
exit 1 | |
fi | |
echo "[+] Resolving domains to IPs..." | |
while read d || [[ -n $d ]]; do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# knocker.sh v0.1 | |
# last edit 11-03-2016 13:30 | |
# | |
# | |
# VARIABLES | |
######################################################################## | |
VERS=$(sed -n 2p $0 | awk '{print $3}' | sed 's/v//') | |
TMPFILE=/root/ports_knocker.tmp | |
rm -rf $TMPFILE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_ | |
..;/ | |
@ | |
0 | |
00 | |
01 | |
02 | |
03 | |
04 | |
05 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: UTF-8 -*- | |
import sys | |
version = sys.version_info | |
if version < (3, 0): | |
print('The current version is not supported, you need to use python3') | |
sys.exit() | |
import requests | |
import json,ast | |
from requests.packages.urllib3.exceptions import InsecureRequestWarning |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[awvs_url_key]#Basic settings | |
awvs_url=https://192.168.73.128:13443/ | |
api_key=1986ad8c0a5b3df4d7028d5f3c06e936c5d7211fb0ba444de82ed618e96251b54 | |
#URL file to be scanned | |
domain_file=url.txt | |
[scan_seting]#Scan configuration | |
##Scan speed, from slow to fast: sequential slow moderate fast, the faster the speed, the more omissions, the opposite is true. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# m4ll0k - github.com/m4ll0k | |
import requests | |
import urllib3 | |
import sys | |
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning) | |
injectable_headers = [ | |
"Proxy-Host","Request-Uri","X-Forwarded","X-Forwarded-By","X-Forwarded-For", |
OlderNewer