コード例 #1
0
# I don't believe in license.
# You can do whatever you want with this program.

t_available_mods = [
    'resolve', 'screenshot', 'quickhits', 'crlf', 'openredirect'
]

#
# init app
#
from modules import functions as func
from modules.app import App

app = App()
func.parseargs(app, t_available_mods)
#
# ###
#

#
# MOD: subdomains
#
from modules.subdomains import Subdomains

mod = Subdomains()
mod.run(app.domains)

if not mod.n_hosts:
    exit()
コード例 #2
0
 def init(self):
     func.parseargs(self)