-
Notifications
You must be signed in to change notification settings - Fork 15
/
MaltegoTransform.py
211 lines (167 loc) · 6.35 KB
/
MaltegoTransform.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
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
#!/usr/bin/python
#######################################################
# Maltego Python Local Transform Helper #
# Version 0.3 #
# #
# Local transform specification can be found at: #
# http://ctas.paterva.com/view/Specification #
# #
# For more help and other local transforms #
# try the forum or mail me: #
# #
# http://www.paterva.com/forum #
# #
# Andrew MacPherson [ andrew <<at>> Paterva.com ] #
# #
# UPDATED: 2016/08/29 - PR ["&",">","<"] #
# UPDATED: 2015/10/29 - PR #
# UPDATED: 2016/08/19 - AM (fixed # and = split) #
#######################################################
import sys
BOOKMARK_COLOR_NONE="-1"
BOOKMARK_COLOR_BLUE="0"
BOOKMARK_COLOR_GREEN="1"
BOOKMARK_COLOR_YELLOW="2"
BOOKMARK_COLOR_ORANGE="3"
BOOKMARK_COLOR_RED="4"
LINK_STYLE_NORMAL="0"
LINK_STYLE_DASHED="1"
LINK_STYLE_DOTTED="2"
LINK_STYLE_DASHDOT="3"
UIM_FATAL='FatalError'
UIM_PARTIAL='PartialError'
UIM_INFORM='Inform'
UIM_DEBUG='Debug'
class MaltegoEntity(object):
value = ""
weight = 100
displayInformation = None
additionalFields = []
iconURL = ""
entityType = "Phrase"
def __init__(self,eT=None,v=None):
if (eT is not None):
self.entityType = eT
if (v is not None):
self.value = sanitise(v)
self.additionalFields = []
self.displayInformation = None
def setType(self,eT=None):
if (eT is not None):
self.entityType = eT
def setValue(self,eV=None):
if (eV is not None):
self.value = sanitise(eV)
def setWeight(self,w=None):
if (w is not None):
self.weight = w
def setDisplayInformation(self,di=None):
if (di is not None):
self.displayInformation = di
def addAdditionalFields(self,fieldName=None,displayName=None,matchingRule=False,value=None):
self.additionalFields.append([sanitise(fieldName),sanitise(displayName),matchingRule,sanitise(value)])
def setIconURL(self,iU=None):
if (iU is not None):
self.iconURL = iU
def setLinkColor(self,color):
self.addAdditionalFields('link#maltego.link.color','LinkColor','',color)
def setLinkStyle(self,style):
self.addAdditionalFields('link#maltego.link.style','LinkStyle','',style)
def setLinkThickness(self,thick):
self.addAdditionalFields('link#maltego.link.thickness','Thickness','',str(thick))
def setLinkLabel(self,label):
self.addAdditionalFields('link#maltego.link.label','Label','',label)
def setBookmark(self,bookmark):
self.addAdditionalFields('bookmark#','Bookmark','',bookmark)
def setNote(self,note):
self.addAdditionalFields('notes#','Notes','',note)
def returnEntity(self):
print "<Entity Type=\"" + str(self.entityType) + "\">"
print "<Value>" + str(self.value) + "</Value>"
print "<Weight>" + str(self.weight) + "</Weight>"
if (self.displayInformation is not None):
print "<DisplayInformation><Label Name=\"\" Type=\"text/html\"><![CDATA[" + str(self.displayInformation) + "]]></Label></DisplayInformation>"
if (len(self.additionalFields) > 0):
print "<AdditionalFields>"
for i in range(len(self.additionalFields)):
if (str(self.additionalFields[i][2]) <> "strict"):
print "<Field Name=\"" + str(self.additionalFields[i][0]) + "\" DisplayName=\"" + str(self.additionalFields[i][1]) + "\">" + str(self.additionalFields[i][3]) + "</Field>"
else:
print "<Field MatchingRule=\"" + str(self.additionalFields[i][2]) + "\" Name=\"" + str(self.additionalFields[i][0]) + "\" DisplayName=\"" + str(self.additionalFields[i][1]) + "\">" + str(self.additionalFields[i][3]) + "</Field>"
print "</AdditionalFields>"
if (len(self.iconURL) > 0):
print "<IconURL>" + self.iconURL + "</IconURL>"
print "</Entity>"
class MaltegoTransform(object):
entities = []
exceptions = []
UIMessages = []
values = {}
def __init__(self):
values = {}
value = None
def parseArguments(self,argv):
if (argv[1] is not None):
self.value = argv[1]
if (len(argv) > 2):
if (argv[2] is not None):
vars = argv[2].split('#')
for x in range(0,len(vars)):
vars_values = vars[x].split('=',1)
if (len(vars_values) == 2):
self.values[vars_values[0]] = vars_values[1]
def getValue(self):
if (self.value is not None):
return self.value
def getVar(self,varName):
if (varName in self.values.keys()):
if (self.values[varName] is not None):
return self.values[varName]
def addEntity(self,enType,enValue):
me = MaltegoEntity(enType,enValue)
self.addEntityToMessage(me)
return self.entities[len(self.entities)-1]
def addEntityToMessage(self,maltegoEntity):
self.entities.append(maltegoEntity)
def addUIMessage(self,message,messageType="Inform"):
self.UIMessages.append([messageType,message])
def addException(self,exceptionString):
self.exceptions.append(exceptionString)
def throwExceptions(self):
print "<MaltegoMessage>"
print "<MaltegoTransformExceptionMessage>"
print "<Exceptions>"
for i in range(len(self.exceptions)):
print "<Exception>" + self.exceptions[i] + "</Exception>"
print "</Exceptions>"
print "</MaltegoTransformExceptionMessage>"
print "</MaltegoMessage>"
exit()
def returnOutput(self):
print "<MaltegoMessage>"
print "<MaltegoTransformResponseMessage>"
print "<Entities>"
for i in range(len(self.entities)):
self.entities[i].returnEntity()
print "</Entities>"
print "<UIMessages>"
for i in range(len(self.UIMessages)):
print "<UIMessage MessageType=\"" + self.UIMessages[i][0] + "\">" + self.UIMessages[i][1] + "</UIMessage>"
print "</UIMessages>"
print "</MaltegoTransformResponseMessage>"
print "</MaltegoMessage>"
def writeSTDERR(self,msg):
sys.stderr.write(str(msg))
def heartbeat(self):
self.writeSTDERR("+")
def progress(self,percent):
self.writeSTDERR("%" + str(percent))
def debug(self,msg):
self.writeSTDERR("D:" + str(msg))
def sanitise(value):
replace_these = ["&",">","<"]
replace_with = ["&",">","<"]
tempvalue = value
for i in range(0,len(replace_these)):
tempvalue = tempvalue.replace(replace_these[i],replace_with[i])
return tempvalue