├── .gitignore ├── README.md ├── beecli.py ├── lib ├── __init__.py ├── core │ ├── __init__.py │ ├── api.py │ ├── batch.py │ ├── download.py │ ├── fetch.py │ ├── logger.py │ └── search.py ├── parse │ ├── __init__.py │ └── cmdline.py └── utils │ ├── __init__.py │ └── common.py ├── modules ├── baseframe.py ├── poc_2015_0086.py └── utils │ ├── __init__.py │ ├── common │ ├── __init__.py │ ├── color.py │ ├── file.py │ ├── socket.py │ └── str.py │ ├── generator │ ├── __init__.py │ └── generate_user_pwd.py │ ├── http │ ├── __init__.py │ ├── forgeheaders.py │ └── http.py │ └── payload │ ├── __init__.py │ ├── password_top100 │ ├── password_top1000 │ └── webshell │ ├── __init__.py │ ├── asp.py │ ├── aspx.py │ ├── jsp.py │ ├── php.py │ ├── webshell.py │ └── wordpress_backdoor_path.txt ├── requirements.txt └── screenshots ├── example_one.png ├── example_three.png └── example_two.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/README.md -------------------------------------------------------------------------------- /beecli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/beecli.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /lib/core/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /lib/core/api.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /lib/core/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/core/batch.py -------------------------------------------------------------------------------- /lib/core/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/core/download.py -------------------------------------------------------------------------------- /lib/core/fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/core/fetch.py -------------------------------------------------------------------------------- /lib/core/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/core/logger.py -------------------------------------------------------------------------------- /lib/core/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/core/search.py -------------------------------------------------------------------------------- /lib/parse/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /lib/parse/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/parse/cmdline.py -------------------------------------------------------------------------------- /lib/utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # coding: utf-8 3 | -------------------------------------------------------------------------------- /lib/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/lib/utils/common.py -------------------------------------------------------------------------------- /modules/baseframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/baseframe.py -------------------------------------------------------------------------------- /modules/poc_2015_0086.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/poc_2015_0086.py -------------------------------------------------------------------------------- /modules/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/common/__init__.py -------------------------------------------------------------------------------- /modules/utils/common/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/common/color.py -------------------------------------------------------------------------------- /modules/utils/common/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/common/file.py -------------------------------------------------------------------------------- /modules/utils/common/socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/common/socket.py -------------------------------------------------------------------------------- /modules/utils/common/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/common/str.py -------------------------------------------------------------------------------- /modules/utils/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/generator/generate_user_pwd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/generator/generate_user_pwd.py -------------------------------------------------------------------------------- /modules/utils/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/http/__init__.py -------------------------------------------------------------------------------- /modules/utils/http/forgeheaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/http/forgeheaders.py -------------------------------------------------------------------------------- /modules/utils/http/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/http/http.py -------------------------------------------------------------------------------- /modules/utils/payload/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/utils/payload/password_top100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/password_top100 -------------------------------------------------------------------------------- /modules/utils/payload/password_top1000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/password_top1000 -------------------------------------------------------------------------------- /modules/utils/payload/webshell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/__init__.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/asp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/asp.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/aspx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/aspx.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/jsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/jsp.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/php.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/php.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/webshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/webshell.py -------------------------------------------------------------------------------- /modules/utils/payload/webshell/wordpress_backdoor_path.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/modules/utils/payload/webshell/wordpress_backdoor_path.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/example_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/screenshots/example_one.png -------------------------------------------------------------------------------- /screenshots/example_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/screenshots/example_three.png -------------------------------------------------------------------------------- /screenshots/example_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RickGray/BeeCli/HEAD/screenshots/example_two.png --------------------------------------------------------------------------------