Exemple #1
0
def start(id, url, ua, ga, source, ga_content, detection_method=''):
    if id == "wp":
        # for now this is the only cms... but not for long!
        import deepscans.wp.init as wpscan
        wpscan.start(id, url, ua, ga, source, detection_method)
    if id == 'joom':
        # told ya... not for long
        import deepscans.joom.init as joomscan
        joomscan.start(id, url, ua, ga, source)
Exemple #2
0
def start(id, url, ua, ga, source):
    if id == "wp":
        # for now this is the only cms... but not for long!
        import deepscans.wp.init as wpscan
        wpscan.start(id, url, ua, ga, source)
    if id == 'joom':
        # told ya... not for long
        import deepscans.joom.init as joomscan
        joomscan.start(id, url, ua, ga, source)
Exemple #3
0
def start(id,
          url,
          ua,
          ga,
          source,
          ga_content,
          detection_method='',
          headers=''):
    if id == "wp":
        # for now this is the only cms... but not for long!
        import deepscans.wp.init as wpscan
        wpscan.start(id, url, ua, ga, source, detection_method)
    if id == 'joom':
        # told ya... not for long
        import deepscans.joom.init as joomscan
        joomscan.start(id, url, ua, ga, source)
    if id == 'umbraco':
        # umm... whatever
        import deepscans.umbraco.init as umbracoscan
        umbracoscan.start(id, url, ua, ga, source, detection_method, headers)
Exemple #4
0
def start(id, url, ua, ga, source):
    if id == "wp":
        # for now this is the only cms... but not for long!
        import deepscans.wp.init as wpscan
        wpscan.start(id, url, ua, ga, source)