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
| [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", |
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
| package main | |
| import ( | |
| "net/url" | |
| "fmt" | |
| "net/http" | |
| "time" | |
| "sync" | |
| "flag" | |
| "bufio" |
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 | |
| ##Variables | |
| declare domain=$1 | |
| declare include_subdomains="true" | |
| declare include_expired="true" | |
| declare next_page="none" | |
| declare -a results | |
| declare url="" | |
| declare page=1 | |
| declare total_page=0 |
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 | |
| # Converter.sh by @xdavidhu | |
| # This is a script inspired by the Bug Hunter's Methodology 3 by @Jhaddix | |
| # With this script, you can convert domain lists to resolved IP lists without duplicates. | |
| # Usage: ./converter.sh [domain-list-file] [output-file] | |
| echo -e "[+] Converter.sh by @xdavidhu\n" | |
| if [ -z "$1" ] || [ -z "$2" ]; then | |
| echo "[!] Usage: ./converter.sh [domain-list-file] [output-file]" | |
| exit 1 |
OlderNewer