├── .github ├── images └── logo1.png ├── LICENSE ├── README.md ├── banner └── banner.txt ├── bark ├── bin └── bark ├── requirements.txt └── tools ├── L4 ├── memcached.py ├── memcached_servers.txt ├── njrat.py ├── ntp.py ├── ntp_servers.txt ├── pod.py ├── syn.py ├── tcp.py └── udp.py ├── L7 ├── http.py ├── referers.txt ├── slowloris.py └── user_agents.json ├── SMS ├── main.py ├── names.json ├── numberTools.py ├── proxy.json ├── randomData.py ├── sendRequest.py ├── services.json └── user_agents.json ├── addons ├── clean.py └── logo.py ├── ipTools.py └── randomData.py /.github/images: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/.github/logo1.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/README.md -------------------------------------------------------------------------------- /banner/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/banner/banner.txt -------------------------------------------------------------------------------- /bark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/bark -------------------------------------------------------------------------------- /bin/bark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/bin/bark -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | phonenumbers 2 | requests 3 | scapy 4 | wget 5 | argparse 6 | -------------------------------------------------------------------------------- /tools/L4/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/memcached.py -------------------------------------------------------------------------------- /tools/L4/memcached_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/memcached_servers.txt -------------------------------------------------------------------------------- /tools/L4/njrat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/njrat.py -------------------------------------------------------------------------------- /tools/L4/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/ntp.py -------------------------------------------------------------------------------- /tools/L4/ntp_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/ntp_servers.txt -------------------------------------------------------------------------------- /tools/L4/pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/pod.py -------------------------------------------------------------------------------- /tools/L4/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/syn.py -------------------------------------------------------------------------------- /tools/L4/tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/tcp.py -------------------------------------------------------------------------------- /tools/L4/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L4/udp.py -------------------------------------------------------------------------------- /tools/L7/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L7/http.py -------------------------------------------------------------------------------- /tools/L7/referers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L7/referers.txt -------------------------------------------------------------------------------- /tools/L7/slowloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L7/slowloris.py -------------------------------------------------------------------------------- /tools/L7/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/L7/user_agents.json -------------------------------------------------------------------------------- /tools/SMS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/main.py -------------------------------------------------------------------------------- /tools/SMS/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/names.json -------------------------------------------------------------------------------- /tools/SMS/numberTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/numberTools.py -------------------------------------------------------------------------------- /tools/SMS/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/proxy.json -------------------------------------------------------------------------------- /tools/SMS/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/randomData.py -------------------------------------------------------------------------------- /tools/SMS/sendRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/sendRequest.py -------------------------------------------------------------------------------- /tools/SMS/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/services.json -------------------------------------------------------------------------------- /tools/SMS/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/SMS/user_agents.json -------------------------------------------------------------------------------- /tools/addons/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/addons/clean.py -------------------------------------------------------------------------------- /tools/addons/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/addons/logo.py -------------------------------------------------------------------------------- /tools/ipTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/ipTools.py -------------------------------------------------------------------------------- /tools/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sloobot/Bark/HEAD/tools/randomData.py --------------------------------------------------------------------------------