├── .github └── workflows │ └── semgrep.yml ├── Misc ├── ip.bat ├── php_func_enumerator.php ├── resource_abusive_bot_blocking.htaccess └── script_kiddie_blocker.htaccess ├── OSX └── codesign_remover.sh ├── PS1 └── http.ps1 ├── Python ├── char_to_num.py ├── custom_enc_decoder.py ├── hash_generator.py ├── ip_dword.py ├── palindrome_in_year.py ├── rotme.py ├── shodan_hostenum.py ├── wadl_statistics_reporter.py └── wordpress_attachment.py ├── README.md ├── Shell ├── check_bulk_response.sh ├── dec2hex ├── doh_query.sh ├── dvcsfinder.sh ├── genymotion.sh ├── gitrebase ├── hex2dec ├── http ├── ip ├── isolated_window ├── loop.sh ├── pdfencrypt ├── pdflinkchecker.sh ├── publicip.sh ├── vagrant_supercharged ├── websites.sh ├── wp-user-enum.sh └── zipclean ├── found_online ├── extract └── gc └── poly └── http.ps1 /.github/workflows/semgrep.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/.github/workflows/semgrep.yml -------------------------------------------------------------------------------- /Misc/ip.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Misc/ip.bat -------------------------------------------------------------------------------- /Misc/php_func_enumerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Misc/php_func_enumerator.php -------------------------------------------------------------------------------- /Misc/resource_abusive_bot_blocking.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Misc/resource_abusive_bot_blocking.htaccess -------------------------------------------------------------------------------- /Misc/script_kiddie_blocker.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Misc/script_kiddie_blocker.htaccess -------------------------------------------------------------------------------- /OSX/codesign_remover.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/OSX/codesign_remover.sh -------------------------------------------------------------------------------- /PS1/http.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/PS1/http.ps1 -------------------------------------------------------------------------------- /Python/char_to_num.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/char_to_num.py -------------------------------------------------------------------------------- /Python/custom_enc_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/custom_enc_decoder.py -------------------------------------------------------------------------------- /Python/hash_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/hash_generator.py -------------------------------------------------------------------------------- /Python/ip_dword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/ip_dword.py -------------------------------------------------------------------------------- /Python/palindrome_in_year.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/palindrome_in_year.py -------------------------------------------------------------------------------- /Python/rotme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/rotme.py -------------------------------------------------------------------------------- /Python/shodan_hostenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/shodan_hostenum.py -------------------------------------------------------------------------------- /Python/wadl_statistics_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/wadl_statistics_reporter.py -------------------------------------------------------------------------------- /Python/wordpress_attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Python/wordpress_attachment.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/README.md -------------------------------------------------------------------------------- /Shell/check_bulk_response.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/check_bulk_response.sh -------------------------------------------------------------------------------- /Shell/dec2hex: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | printf "%X\n" $1 3 | -------------------------------------------------------------------------------- /Shell/doh_query.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/doh_query.sh -------------------------------------------------------------------------------- /Shell/dvcsfinder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/dvcsfinder.sh -------------------------------------------------------------------------------- /Shell/genymotion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/genymotion.sh -------------------------------------------------------------------------------- /Shell/gitrebase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/gitrebase -------------------------------------------------------------------------------- /Shell/hex2dec: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo $((0x$1)) 3 | -------------------------------------------------------------------------------- /Shell/http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/http -------------------------------------------------------------------------------- /Shell/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/ip -------------------------------------------------------------------------------- /Shell/isolated_window: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/isolated_window -------------------------------------------------------------------------------- /Shell/loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/loop.sh -------------------------------------------------------------------------------- /Shell/pdfencrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/pdfencrypt -------------------------------------------------------------------------------- /Shell/pdflinkchecker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/pdflinkchecker.sh -------------------------------------------------------------------------------- /Shell/publicip.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | curl https://api.ipify.org 3 | echo "" -------------------------------------------------------------------------------- /Shell/vagrant_supercharged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/vagrant_supercharged -------------------------------------------------------------------------------- /Shell/websites.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/websites.sh -------------------------------------------------------------------------------- /Shell/wp-user-enum.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/wp-user-enum.sh -------------------------------------------------------------------------------- /Shell/zipclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/Shell/zipclean -------------------------------------------------------------------------------- /found_online/extract: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/found_online/extract -------------------------------------------------------------------------------- /found_online/gc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/found_online/gc -------------------------------------------------------------------------------- /poly/http.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anantshri/script-collection/HEAD/poly/http.ps1 --------------------------------------------------------------------------------