MCPcopy Create free account
hub / github.com/blacklanternsecurity/bbot / preloaded

Method preloaded

bbot/core/modules.py:254–260  ·  view source on GitHub ↗
(self, type=None)

Source from the content-addressed store, hash-verified

252 return dirs
253
254 def preloaded(self, type=None):
255 preloaded = {}
256 if type is not None:
257 preloaded = {k: v for k, v in self._preloaded.items() if self.check_type(k, type)}
258 else:
259 preloaded = dict(self._preloaded)
260 return preloaded
261
262 def configs(self, type=None):
263 configs = {}

Callers 14

flagsMethod · 0.95
eventsMethod · 0.95
filter_modulesMethod · 0.95
_mainFunction · 0.80
all_modules_preloadedMethod · 0.80
test__module__testsFunction · 0.80
__init__Method · 0.80
gen_chord_dataFunction · 0.80
bakeMethod · 0.80

Calls 1

check_typeMethod · 0.95

Tested by 3

test__module__testsFunction · 0.64