├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── captcha ├── __init__.py └── pycaptcha.py ├── common ├── __init__.py └── base.py ├── crypto ├── __init__.py ├── classical │ ├── __init__.py │ ├── bacon.py │ ├── caesar_rail_fence_crack.py │ ├── casare.py │ ├── hillcode.py │ └── rail_fence_cipher.py ├── rc4.py ├── rot13.py └── rsa │ ├── __init__.py │ ├── rsa_crack.py │ ├── rsa_crack2.py │ └── rsa_helper.py ├── exploit ├── __init__.py ├── bash_cve_2014_6271.py ├── django_exp.py ├── image_magick.py ├── jboss.py └── joomla.py ├── funny ├── __init__.py ├── img.jpg └── similar_image.py ├── fuzzing ├── __init__.py ├── what_encode.py ├── what_format.dic └── what_format.py ├── misc ├── __init__.py ├── linux_file_monitor │ ├── README.md │ ├── __init__.py │ ├── monitor.py │ ├── optparse.py │ └── pyinotify.py ├── php_remove_webshell.py ├── waf.py └── win_file_monitor │ ├── __init__.py │ ├── md5py.py │ ├── monitor.py │ ├── optparse.py │ ├── pathtools │ ├── __init__.py │ ├── path.py │ ├── patterns.py │ └── version.py │ ├── run.bat │ └── watchdog │ ├── __init__.py │ ├── events.py │ ├── observers │ ├── __init__.py │ ├── api.py │ ├── fsevents.py │ ├── fsevents2.py │ ├── inotify.py │ ├── inotify_buffer.py │ ├── inotify_c.py │ ├── kqueue.py │ ├── polling.py │ ├── read_directory_changes.py │ └── winapi.py │ ├── tricks │ └── __init__.py │ ├── utils │ ├── __init__.py │ ├── bricks.py │ ├── compat.py │ ├── decorators.py │ ├── delayed_queue.py │ ├── dirsnapshot.py │ ├── echo.py │ ├── event_backport.py │ ├── importlib2.py │ ├── platform.py │ ├── unicode_paths.py │ └── win32stat.py │ ├── version.py │ └── watchmedo.py ├── network ├── __init__.py ├── netcat.py └── tcp_proxy.py ├── password ├── README.md ├── __init__.py ├── birthday_dict.py ├── ftp.py ├── ip.txt ├── jenkins │ ├── README.md │ ├── comm_dic.txt │ └── jenkins.py ├── mysql.py ├── mysql_with_cmd.py ├── password.dic ├── postgresql.py ├── redis_crack.py ├── ssh.py ├── ssh_password.txt ├── ssh_with_cmd.py ├── tomcat.py ├── username.dic └── win.py ├── requirements.txt ├── scanner ├── __init__.py ├── nmap_scanner.py ├── site_sacnner.py └── web_scanner │ ├── __init__.py │ ├── dictionary │ ├── asp.txt │ ├── aspx.txt │ ├── dir.txt │ ├── jsp.txt │ ├── mdb.txt │ └── php.txt │ └── scanner.py └── utils ├── __init__.py ├── dir_compare.py ├── file_hash_check.py └── make_md5_password.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/__init__.py -------------------------------------------------------------------------------- /captcha/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/captcha/__init__.py -------------------------------------------------------------------------------- /captcha/pycaptcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/captcha/pycaptcha.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/common/__init__.py -------------------------------------------------------------------------------- /common/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/common/base.py -------------------------------------------------------------------------------- /crypto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/__init__.py -------------------------------------------------------------------------------- /crypto/classical/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/__init__.py -------------------------------------------------------------------------------- /crypto/classical/bacon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/bacon.py -------------------------------------------------------------------------------- /crypto/classical/caesar_rail_fence_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/caesar_rail_fence_crack.py -------------------------------------------------------------------------------- /crypto/classical/casare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/casare.py -------------------------------------------------------------------------------- /crypto/classical/hillcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/hillcode.py -------------------------------------------------------------------------------- /crypto/classical/rail_fence_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/classical/rail_fence_cipher.py -------------------------------------------------------------------------------- /crypto/rc4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rc4.py -------------------------------------------------------------------------------- /crypto/rot13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rot13.py -------------------------------------------------------------------------------- /crypto/rsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rsa/__init__.py -------------------------------------------------------------------------------- /crypto/rsa/rsa_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rsa/rsa_crack.py -------------------------------------------------------------------------------- /crypto/rsa/rsa_crack2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rsa/rsa_crack2.py -------------------------------------------------------------------------------- /crypto/rsa/rsa_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/crypto/rsa/rsa_helper.py -------------------------------------------------------------------------------- /exploit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/__init__.py -------------------------------------------------------------------------------- /exploit/bash_cve_2014_6271.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/bash_cve_2014_6271.py -------------------------------------------------------------------------------- /exploit/django_exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/django_exp.py -------------------------------------------------------------------------------- /exploit/image_magick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/image_magick.py -------------------------------------------------------------------------------- /exploit/jboss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/jboss.py -------------------------------------------------------------------------------- /exploit/joomla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/exploit/joomla.py -------------------------------------------------------------------------------- /funny/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # created by restran on 2016/12/30 3 | -------------------------------------------------------------------------------- /funny/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/funny/img.jpg -------------------------------------------------------------------------------- /funny/similar_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/funny/similar_image.py -------------------------------------------------------------------------------- /fuzzing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/fuzzing/__init__.py -------------------------------------------------------------------------------- /fuzzing/what_encode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/fuzzing/what_encode.py -------------------------------------------------------------------------------- /fuzzing/what_format.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/fuzzing/what_format.dic -------------------------------------------------------------------------------- /fuzzing/what_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/fuzzing/what_format.py -------------------------------------------------------------------------------- /misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/__init__.py -------------------------------------------------------------------------------- /misc/linux_file_monitor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/linux_file_monitor/README.md -------------------------------------------------------------------------------- /misc/linux_file_monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/linux_file_monitor/__init__.py -------------------------------------------------------------------------------- /misc/linux_file_monitor/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/linux_file_monitor/monitor.py -------------------------------------------------------------------------------- /misc/linux_file_monitor/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/linux_file_monitor/optparse.py -------------------------------------------------------------------------------- /misc/linux_file_monitor/pyinotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/linux_file_monitor/pyinotify.py -------------------------------------------------------------------------------- /misc/php_remove_webshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/php_remove_webshell.py -------------------------------------------------------------------------------- /misc/waf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/waf.py -------------------------------------------------------------------------------- /misc/win_file_monitor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/md5py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/md5py.py -------------------------------------------------------------------------------- /misc/win_file_monitor/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/monitor.py -------------------------------------------------------------------------------- /misc/win_file_monitor/optparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/optparse.py -------------------------------------------------------------------------------- /misc/win_file_monitor/pathtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/pathtools/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/pathtools/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/pathtools/path.py -------------------------------------------------------------------------------- /misc/win_file_monitor/pathtools/patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/pathtools/patterns.py -------------------------------------------------------------------------------- /misc/win_file_monitor/pathtools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/pathtools/version.py -------------------------------------------------------------------------------- /misc/win_file_monitor/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/run.bat -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/events.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/api.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/fsevents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/fsevents.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/fsevents2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/fsevents2.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/inotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/inotify.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/inotify_buffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/inotify_buffer.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/inotify_c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/inotify_c.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/kqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/kqueue.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/polling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/polling.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/read_directory_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/read_directory_changes.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/observers/winapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/observers/winapi.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/tricks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/tricks/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/__init__.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/bricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/bricks.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/compat.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/decorators.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/delayed_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/delayed_queue.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/dirsnapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/dirsnapshot.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/echo.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/event_backport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/event_backport.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/importlib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/importlib2.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/platform.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/unicode_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/unicode_paths.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/utils/win32stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/utils/win32stat.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/version.py -------------------------------------------------------------------------------- /misc/win_file_monitor/watchdog/watchmedo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/misc/win_file_monitor/watchdog/watchmedo.py -------------------------------------------------------------------------------- /network/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/network/__init__.py -------------------------------------------------------------------------------- /network/netcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/network/netcat.py -------------------------------------------------------------------------------- /network/tcp_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/network/tcp_proxy.py -------------------------------------------------------------------------------- /password/README.md: -------------------------------------------------------------------------------- 1 | 2 | Web 站点的密码爆破可以尝试万能密码 3 | -------------------------------------------------------------------------------- /password/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/__init__.py -------------------------------------------------------------------------------- /password/birthday_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/birthday_dict.py -------------------------------------------------------------------------------- /password/ftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/ftp.py -------------------------------------------------------------------------------- /password/ip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/ip.txt -------------------------------------------------------------------------------- /password/jenkins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/jenkins/README.md -------------------------------------------------------------------------------- /password/jenkins/comm_dic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/jenkins/comm_dic.txt -------------------------------------------------------------------------------- /password/jenkins/jenkins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/jenkins/jenkins.py -------------------------------------------------------------------------------- /password/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/mysql.py -------------------------------------------------------------------------------- /password/mysql_with_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/mysql_with_cmd.py -------------------------------------------------------------------------------- /password/password.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/password.dic -------------------------------------------------------------------------------- /password/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/postgresql.py -------------------------------------------------------------------------------- /password/redis_crack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/redis_crack.py -------------------------------------------------------------------------------- /password/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/ssh.py -------------------------------------------------------------------------------- /password/ssh_password.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/ssh_password.txt -------------------------------------------------------------------------------- /password/ssh_with_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/ssh_with_cmd.py -------------------------------------------------------------------------------- /password/tomcat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/tomcat.py -------------------------------------------------------------------------------- /password/username.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/username.dic -------------------------------------------------------------------------------- /password/win.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/password/win.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/requirements.txt -------------------------------------------------------------------------------- /scanner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/__init__.py -------------------------------------------------------------------------------- /scanner/nmap_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/nmap_scanner.py -------------------------------------------------------------------------------- /scanner/site_sacnner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/site_sacnner.py -------------------------------------------------------------------------------- /scanner/web_scanner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/__init__.py -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/asp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/asp.txt -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/aspx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/aspx.txt -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/dir.txt -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/jsp.txt -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/mdb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/mdb.txt -------------------------------------------------------------------------------- /scanner/web_scanner/dictionary/php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/dictionary/php.txt -------------------------------------------------------------------------------- /scanner/web_scanner/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/scanner/web_scanner/scanner.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/dir_compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/utils/dir_compare.py -------------------------------------------------------------------------------- /utils/file_hash_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/utils/file_hash_check.py -------------------------------------------------------------------------------- /utils/make_md5_password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restran/hacker-scripts/HEAD/utils/make_md5_password.py --------------------------------------------------------------------------------