diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b2fbee1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,58 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*.pyc +# C extensions +*.so +.idea/ + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*,cover + +# Translations +*.mo +*.pot + +# Django stuff: +*.log + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ \ No newline at end of file diff --git a/README.md b/README.md index 37b157a..6dce02b 100644 --- a/README.md +++ b/README.md @@ -4,28 +4,14 @@ BOTNET SSH Manager ### Description The Botdr4g0n is a focused tool for DDOS attack on SSH BOT management and installation tools for distributed attacks. -still has appeal as a tool to add AES to encrypt attack and leave the data protected by a key. Use key [tab] for complete command in tool. +### Installation +```bash +git clone https://github.com/mh4x0f/botdr4g0n.git +cd botdr4g0n +pip install -r requirements.txt +``` +### Screenshots -### license - -The MIT License (MIT) -Version 1.1 -Copyright (c) 2014 Marcos Nesster (mh4x0f) -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file +![screenshot1](https://dl.dropboxusercontent.com/u/97321327/botdr4g0n/botdragon.png "screenshot1") \ No newline at end of file diff --git a/common/ConsoleUI.py b/common/ConsoleUI.py index 7f60d19..f478a24 100644 --- a/common/ConsoleUI.py +++ b/common/ConsoleUI.py @@ -7,10 +7,8 @@ #use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of #the Software, and to permit persons to whom the Software is furnished to do so, #subject to the following conditions: - #The above copyright notice and this permission notice shall be included in all #copies or substantial portions of the Software. - #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS #FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR diff --git a/common/ssh.py b/common/ssh.py index d75ca84..c97c26d 100644 --- a/common/ssh.py +++ b/common/ssh.py @@ -7,10 +7,8 @@ #use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of #the Software, and to permit persons to whom the Software is furnished to do so, #subject to the following conditions: - #The above copyright notice and this permission notice shall be included in all #copies or substantial portions of the Software. - #THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS #FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..414094b --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +tabulate +pxssh +sqlite3 \ No newline at end of file