├── LICENSE ├── README.md ├── banner └── banner.txt ├── bin └── quack ├── install.sh ├── quack ├── requirements.txt ├── tools ├── SMS │ ├── __pycache__ │ │ ├── main.cpython-37.pyc │ │ ├── numberTools.cpython-37.pyc │ │ ├── randomData.cpython-37.pyc │ │ └── sendRequest.cpython-37.pyc │ ├── main.py │ ├── names.json │ ├── numberTools.py │ ├── proxy.json │ ├── randomData.py │ ├── sendRequest.py │ ├── services.json │ └── user_agents.json ├── addons │ ├── __pycache__ │ │ ├── clean.cpython-37.pyc │ │ └── logo.cpython-37.pyc │ ├── clean.py │ └── logo.py ├── ipTools.py ├── other │ ├── http.py │ ├── memcached.py │ ├── memcached_servers.txt │ ├── njrat.py │ ├── ntp.py │ ├── ntp_servers.txt │ ├── pod.py │ ├── referers.txt │ ├── slowloris.py │ ├── syn.py │ ├── tcp.py │ ├── udp.py │ └── user_agents.json └── randomData.py └── uninstall.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/README.md -------------------------------------------------------------------------------- /banner/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/banner/banner.txt -------------------------------------------------------------------------------- /bin/quack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/bin/quack -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/install.sh -------------------------------------------------------------------------------- /quack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/quack -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | phonenumbers 2 | requests 3 | scapy 4 | wget 5 | argparse -------------------------------------------------------------------------------- /tools/SMS/__pycache__/main.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/__pycache__/main.cpython-37.pyc -------------------------------------------------------------------------------- /tools/SMS/__pycache__/numberTools.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/__pycache__/numberTools.cpython-37.pyc -------------------------------------------------------------------------------- /tools/SMS/__pycache__/randomData.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/__pycache__/randomData.cpython-37.pyc -------------------------------------------------------------------------------- /tools/SMS/__pycache__/sendRequest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/__pycache__/sendRequest.cpython-37.pyc -------------------------------------------------------------------------------- /tools/SMS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/main.py -------------------------------------------------------------------------------- /tools/SMS/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/names.json -------------------------------------------------------------------------------- /tools/SMS/numberTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/numberTools.py -------------------------------------------------------------------------------- /tools/SMS/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/proxy.json -------------------------------------------------------------------------------- /tools/SMS/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/randomData.py -------------------------------------------------------------------------------- /tools/SMS/sendRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/sendRequest.py -------------------------------------------------------------------------------- /tools/SMS/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/services.json -------------------------------------------------------------------------------- /tools/SMS/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/SMS/user_agents.json -------------------------------------------------------------------------------- /tools/addons/__pycache__/clean.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/addons/__pycache__/clean.cpython-37.pyc -------------------------------------------------------------------------------- /tools/addons/__pycache__/logo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/addons/__pycache__/logo.cpython-37.pyc -------------------------------------------------------------------------------- /tools/addons/clean.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | 5 | os.system("clear") 6 | -------------------------------------------------------------------------------- /tools/addons/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/addons/logo.py -------------------------------------------------------------------------------- /tools/ipTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/ipTools.py -------------------------------------------------------------------------------- /tools/other/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/http.py -------------------------------------------------------------------------------- /tools/other/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/memcached.py -------------------------------------------------------------------------------- /tools/other/memcached_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/memcached_servers.txt -------------------------------------------------------------------------------- /tools/other/njrat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/njrat.py -------------------------------------------------------------------------------- /tools/other/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/ntp.py -------------------------------------------------------------------------------- /tools/other/ntp_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/ntp_servers.txt -------------------------------------------------------------------------------- /tools/other/pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/pod.py -------------------------------------------------------------------------------- /tools/other/referers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/referers.txt -------------------------------------------------------------------------------- /tools/other/slowloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/slowloris.py -------------------------------------------------------------------------------- /tools/other/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/syn.py -------------------------------------------------------------------------------- /tools/other/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/tcp.py -------------------------------------------------------------------------------- /tools/other/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/udp.py -------------------------------------------------------------------------------- /tools/other/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/other/user_agents.json -------------------------------------------------------------------------------- /tools/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/tools/randomData.py -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sowmiksudo/Quack/HEAD/uninstall.sh --------------------------------------------------------------------------------