
killchain v0.2 ~ A unified console to perform the “kill chain” stages of attacks.
“Kill Chain” is a unified console with an anonymizer that will perform these stages of attacks:
+ Reconnaissance
+ Weaponization
+ Delivery
+ Exploit
+ Installation
+ Command & Control
+ And Actions
Changelog v0.2 : killchain.py; IPTables rules.
Menu Options :
1) Anonymizer — Load Tor Iptables rules, route all traffic thru Tor.
2) De-Anonymizer — Flush Tor Iptables rules set to default rules.
3) Set — Social-Engineer Toolkit (SET), attacks against humans.
4) OpenVas — Vulnerability scanning and vulnerability management.
5) Veil-Evasion — Generate metasploit payloads bypass anti-virus.
6) Websploit Framework — WebSploit Advanced MITM Framework.
7) Metasploit Framework — Executing exploit code against target.
8) WiFite — Automated wireless auditor, designed for Linux.
9) Exit Kill Chain
Installation:
1 2 3 4 5 6 7 |
git clone https://github.com/ruped24/killchain cd killchain python killchain.py update cd killchain git pull |
killchain.py script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 |
#!/usr/bin/env python # from __future__ import print_function from __future__ import absolute_import from random import randint from socket import gethostname from sys import exit, stderr from commands import getoutput from subprocess import call from time import sleep from os import environ, devnull from os.path import isfile fnull = open(devnull, 'w') __author__ = "Rupe" __date__ = "June 14 2015" __copyright__ = "Linux Professional Training" __version__ = "0.2" __license__ = "GPL" __email__ = "ruped24@gmail.com" class Colors: Escape = "\033" Lred = "[91m" Lgre = "[92m" Lyel = "[93m" class Header: headers = { 1: r""" ** ** ** ** ** ****** ** ** /** ** // /** /** **////**/** // /** ** ** /** /** ** // /** ****** ** ******* /**** /** /** /** /** /****** //////** /**//**///** /**/** /** /** /** /** /**///** ******* /** /** /** /**//** /** /** /** //** **/** /** **////** /** /** /** /** //**/** *** *** //****** /** /**//********/** *** /** // // // /// /// ////// // // //////// // /// // """, 2: r""" KK KK iii lll lll CCCCC hh iii KK KK lll lll CC C hh aa aa nn nnn KKKK iii lll lll CC hhhhhh aa aaa iii nnn nn KK KK iii lll lll CC C hh hh aa aaa iii nn nn KK KK iii lll lll CCCCC hh hh aaa aa iii nn nn """, 3: r""" $$\ $$\ $$\ $$\ $$\ $$$$$$\ $$\ $$\ $$ | $$ |\__|$$ |$$ | $$ __$$\ $$ | \__| $$ |$$ / $$\ $$ |$$ | $$ / \__|$$$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$$$$ / $$ |$$ |$$ | $$ | $$ __$$\ \____$$\ $$ |$$ __$$\ $$ $$< $$ |$$ |$$ | $$ | $$ | $$ | $$$$$$$ |$$ |$$ | $$ | $$ |\$$\ $$ |$$ |$$ | $$ | $$\ $$ | $$ |$$ __$$ |$$ |$$ | $$ | $$ | \$$\ $$ |$$ |$$ | \$$$$$$ |$$ | $$ |\$$$$$$$ |$$ |$$ | $$ | \__| \__|\__|\__|\__| \______/ \__| \__| \_______|\__|\__| \__| """, } class Tools: tool = { 'helper': 'which', 3: "setoolkit", 4: "openvas-setup", 5: "veil-evasion", 6: "websploit", 7: "msfconsole", 8: "wifite" } class TorIptables(object): def __init__(self): self.tor_config_file = '/etc/tor/torrc' self.torrc = ''' VirtualAddrNetwork 10.0.0.0/10 AutomapHostsOnResolve 1 TransPort 9040 DNSPort 53 ''' self.non_tor_net = ["192.168.0.0/16", "172.16.0.0/12"] self.non_tor = ["127.0.0.0/9", "127.128.0.0/10", "127.0.0.0/8"] self.tor_uid = getoutput("id -ur debian-tor") # Tor user uid self.trans_port = "9040" # Tor port def flush_iptables_rules(self): call(["iptables", '-F']) call(["iptables", "-t", "nat", "-F"]) def load_iptables_rules(self): self.flush_iptables_rules() self.non_tor.extend(self.non_tor_net) call(["iptables", "-t", "nat", "-A", "OUTPUT", "-m", "owner", "--uid-owner", "%s" % self.tor_uid, "-j", "RETURN"]) call(["iptables", "-t", "nat", "-A", "OUTPUT", "-p", "udp", "--dport", "53", "-j", "REDIRECT", "--to-ports", "53"]) for net in self.non_tor: call(["iptables", "-t", "nat", "-A", "OUTPUT", "-d", "%s" % net, "-j", "RETURN"]) call(["iptables", "-t", "nat", "-A", "OUTPUT", "-p", "tcp", "--syn", "-j", "REDIRECT", "--to-ports", "%s" % self.trans_port]) call(["iptables", "-A", "OUTPUT", "-m", "state", "--state", "ESTABLISHED,RELATED", "-j", "ACCEPT"]) for net in (self.non_tor): call(["iptables", "-A", "OUTPUT", "-d", "%s" % net, "-j", "ACCEPT"]) call(["iptables", "-A", "OUTPUT", "-m", "owner", "--uid-owner", "%s" % self.tor_uid, "-j", "ACCEPT"]) call(["iptables", "-A", "OUTPUT", "-j", "REJECT"]) # Restart Tor call(["service", "tor", "restart"], stderr=fnull) def who_did_it(): print(" {0}".format("#" * 64)) print(" {0}".format("Created by: %s." % __copyright__)) print(" {0}".format("For training purposes only.")) print(" {0}, {1}".format("Version %s" % __version__, "License %s" % __license__)) print(" {0}".format("Written by: %s" % __author__)) print(" {0}".format("#" * 64 + "\n\n")) def main_menu(): print(" {0}".format( c.Escape + c.Lyel + "1) Anonymizer -- Load Tor Iptables rules, route all traffic thru Tor.\n")) print(" {0}".format( "2) De-Anonymizer -- Flush Tor Iptables rules set to default rules.\n")) print(" {0}".format( "3) Set -- Social-Engineer Toolkit (SET), attacks against humans.\n")) print(" {0}".format( "4) OpenVas -- Vulnerability scanning and vulnerability management.\n")) print(" {0}".format( "5) Veil-Evasion -- Generate metasploit payloads bypass anti-virus.\n")) print(" {0}".format( "6) Websploit Framework -- WebSploit Advanced MITM Framework.\n")) print(" {0}".format( "7) Metasploit Framework -- Executing exploit code against target.\n")) print(" {0}".format( "8) WiFite -- Automated wireless auditor, designed for Linux.\n")) print(" {0}".format(c.Escape + c.Lred + "9) Exit Kill Chain\n")) def anon_status(): anon = getoutput("iptables -S -t nat | grep 53") if anon: print(" {0} {1}".format("Anonymizer status", c.Escape + c.Lgre + "[ON]\n")) else: print(" {0} {1}".format("Anonymizer status", c.Escape + c.Lred + "[OFF]\n")) if __name__ == '__main__': load_tables = TorIptables() try: raw_input except NameError: raw_input = input try: while True: stderr.write("\x1b[2J\x1b[H") call(['reset']) try: c = Colors() print(c.Escape + "[" + repr(randint(92, 97)) + "m" + Header().headers[randint(1, 3)] + "\n\n") who_did_it() anon_status() main_menu() try: tool = Tools().tool selected = int( raw_input(c.Escape + c.Lgre + gethostname() + "-gOtr00t" ":> ")) if selected < 1 or selected > 9: print("Select a number between 1 and 9") sleep(2) if selected is 9: exit(0) if selected is 1: if isfile(load_tables.tor_config_file): if not 'VirtualAddrNetwork' in open( load_tables.tor_config_file).read(): with open(load_tables.tor_config_file, 'a+') as torrconf: torrconf.write(load_tables.torrc) load_tables.load_iptables_rules() sleep(1) if selected is 2: load_tables.flush_iptables_rules() sleep(1) if selected is 3: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[3])]) sleep(1) if selected is 4: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[4])]) sleep(1) if selected is 5: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[5])]) sleep(1) if selected is 6: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[6])]) sleep(1) if selected is 7: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[7])]) sleep(1) if selected is 8: call(['clear']) call([getoutput(tool['helper'] + ' ' + tool[8])]) sleep(5) except ValueError: print("Select a number between 1 and 9") sleep(2) except SystemExit: exit(0) except OSError as err: print("\n [*] Check your path " + c.Escape + c.Lred + "%s\n %s" % (environ['PATH'], "[!] " + c.Escape + c.Lyel + "Can't find"), c.Escape + c.Lgre + tool[selected] + ", " + err[1], c.Escape + c.Lred + "Aborting!") sleep(2) pass |
Source: https://github.com/ruped24 | Our Post Before