-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathace.py
119 lines (95 loc) · 4.07 KB
/
ace.py
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
#!/usr/bin/python3
import io
import os
import importlib
from typing import List
import argparse
from model import *
from recipes import *
from log import setupLogging
from web import serve
from helpers import *
from utilities import *
def contentFilterTest(baseUrl):
allRoutes: List[AceRoute] = []
recipeInfos: List[RecipeInfo] = []
logging.info("All recipes (content-filter test)")
recipes = getRecipePyFiles()
for recipe in recipes:
module_name = recipe[:-3] # remove the '.py' extension
module = importlib.import_module('.' + module_name, package='recipes.' + module_name)
if hasattr(module, module_name):
recipeMethod = getattr(module, module_name)
if recipeMethod is None:
print("Unknown recipe: {}".format(module_name))
else:
logging.info("-[ Make recipe: {}".format(recipe))
routes = recipeMethod(baseUrl)
allRoutes = allRoutes + routes
# open its yaml
path = os.path.join("recipes", module_name, recipe + '.yaml')
recipeInfo = getRecipeInfo(path, routes)
if recipeInfo is not None:
recipeInfos.append(recipeInfo)
serve(allRoutes, recipeInfos)
def startRecipe(recipeName, baseUrl):
recipeMethod = None
recipeInfos = []
logging.info("Creating recipe: {}".format(recipeName))
recipes = getRecipePyFiles()
for recipe in recipes:
module_name = recipe[:-3] # remove the '.py' extension
module = importlib.import_module('.' + module_name, package='recipes.' + module_name)
if hasattr(module, recipeName):
recipeMethod = getattr(module, recipeName)
# open its yaml
path = os.path.join("recipes", module_name, recipe + '.yaml')
recipeInfo = getRecipeInfo(path, [])
if recipeInfo is not None:
recipeInfos.append(recipeInfo)
if recipeMethod is None:
logging.error("Unknown recipe: {}".format(recipeName))
logging.error(" Make sure it exists in recipes/")
logging.error(" Make sure it follows naming standard:")
logging.error(" recipes/<new>/<new>.py::func <new>()")
else:
routes = recipeMethod(baseUrl)
if len(routes) > 0:
serve(routes, recipeInfos)
def main():
enableOut()
setupLogging()
print("ACE FireFist - Attack Chain Emulator")
print(" github.comm/dobin/ace-firefist")
parser = argparse.ArgumentParser()
parser.add_argument('--recipe', type=str, required=True, help='Which recipe to use ("all" for all)')
parser.add_argument('--listenip', type=str, required=True, help='IP to listen on')
parser.add_argument('--scan', type=str, help='Scan AceFiles with avred-server')
parser.add_argument('--listenport', type=int, help='Port to listen on', default=5000)
parser.add_argument('--templateinfo', action='store_true', help='Show information about used templates')
parser.add_argument('--externalurl', type=str, help='External URL of the server (if behind reverse proxy)')
args = parser.parse_args()
if args.scan:
enableScanning(args.scan)
if args.listenip:
setListenIp(args.listenip)
if args.listenport:
setListenPort(args.listenport)
if args.templateinfo:
enableTemplateInfo()
if args.externalurl:
baseUrl = args.externalurl
else:
if config.LISTEN_IP == "0.0.0.0":
logging.error("Cant use 0.0.0.0 as listen IP. Please specify a IP.")
logging.error("Use \"--externalurl http://evil\" to specfiy the URL as seen by the client, if necessary")
return
logging.info("Use \"--externalurl http://evil\" to specfiy the URL as seen by the client, if necessary")
baseUrl = "http://{}:{}".format(config.LISTEN_IP, config.LISTEN_PORT)
logging.info("Using baseUrl: {}".format(baseUrl))
if args.recipe == "all":
contentFilterTest(baseUrl)
else:
startRecipe(args.recipe, baseUrl)
if __name__ == "__main__":
main()