shmilylty/OneForAll

View on GitHub

Showing 84 of 114 total issues

Function call_massdns has 9 arguments (exceeds 4 allowed). Consider refactoring.
Open

def call_massdns(massdns_path, dict_path, ns_path, output_path, log_path,
Severity: Major
Found in common/utils.py - About 1 hr to fix

    Function search has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def search(self, domain, filtered_subdomain=''):
            """
            发送搜索请求并做子域匹配
    
            :param str domain: 域名
    Severity: Minor
    Found in modules/search/yahoo.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function main has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

        def main(self):
            """
            OneForAll main process
    
            :return: subdomain results
    Severity: Minor
    Found in oneforall.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function check_cdn_cidr has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def check_cdn_cidr(ips):
        if isinstance(ips, str):
            ips = set(ips.split(','))
        else:
            return False
    Severity: Minor
    Found in modules/iscdn.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function do_check has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
    Open

    def do_check(data):
        logger.log('DEBUG', f'Checking cdn')
        for index, item in enumerate(data):
            cname = item.get('cname')
            if check_cname_keyword(cname):
    Severity: Minor
    Found in modules/iscdn.py - About 55 mins to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Function export_data has 7 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    def export_data(target, db=None, alive=False, limit=None, path=None, fmt='csv', show=False):
    Severity: Major
    Found in export.py - About 50 mins to fix

      Function get has 7 arguments (exceeds 4 allowed). Consider refactoring.
      Open

          def get(self, url, params=None, check=True, ignore=False, raise_error=False, **kwargs):
      Severity: Major
      Found in common/module.py - About 50 mins to fix

        Function is_valid_subdomain has 7 arguments (exceeds 4 allowed). Consider refactoring.
        Open

        def is_valid_subdomain(ip=None, ip_num=None, cname=None, cname_num=None,
        Severity: Major
        Found in modules/wildcard.py - About 50 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                      for j, c in enumerate(row):
                                          _data[row_i][j] = callback(c)
                                  else:
          Severity: Major
          Found in common/tablib/tablib.py - About 45 mins to fix

            Function filter_url has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            def filter_url(domain, url):
                try:
                    raw_url = parse.urlparse(url)
                except Exception as e:  # 解析失败则跳过该URL
                    logger.log('DEBUG', e.args)
            Severity: Minor
            Found in modules/finder.py - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function config_param has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                def config_param(self):
                    """
                    Config parameter
                    """
                    if self.brute is None:
            Severity: Minor
            Found in oneforall.py - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function run has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                def run(self):
                    start = time.time()
                    logger.log('INFOR', f'Start running {self.source} module')
                    if isinstance(self.targets, set):
                        self.subdomains = self.targets
            Severity: Minor
            Found in takeover.py - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Function search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                def search(self, domain, filtered_subdomain=''):
                    """
                    发送搜索请求并做子域匹配
            
                    :param str domain: 域名
            Severity: Minor
            Found in modules/search/bing.py - About 45 mins to fix

            Cognitive Complexity

            Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

            A method's cognitive complexity is based on a few simple rules:

            • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
            • Code is considered more complex for each "break in the linear flow of the code"
            • Code is considered more complex when "flow breaking structures are nested"

            Further reading

            Avoid deeply nested control flow statements.
            Open

                                if page_r.status_code == 201:
                                    print('[+]自动接管成功,请稍后访问http://' + str(url) + '查看结果')
                                else:
                                    print('[+]开启Github pages失败,请检查网络或稍后重试')
                            else:
            Severity: Major
            Found in modules/autotake/github.py - About 45 mins to fix

              Function search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def search(self, domain, filtered_subdomain=''):
                      """
                      发送搜索请求并做子域匹配
              
                      :param str domain: 域名
              Severity: Minor
              Found in modules/search/yandex.py - About 45 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function search has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def search(self, domain, filtered_subdomain=''):
                      """
                      发送搜索请求并做子域匹配
              
                      :param str domain: 域名
              Severity: Minor
              Found in modules/search/google.py - About 45 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function _set_dict has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def _set_dict(self, pickle):
                      """A native Python representation of the Dataset object. If headers have been
                      set, a list of Python dictionaries will be returned. If no headers have been
                      set, a list of tuples (rows) will be returned instead.
              
              
              Severity: Minor
              Found in common/tablib/tablib.py - About 45 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function replace_word has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
              Open

                  def replace_word(self, subname):
                      """
                      If word longer than 3 is found in existing subdomain,
                      replace it with other words from the dictionary
                      """
              Severity: Minor
              Found in modules/altdns.py - About 45 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function gen_result_infos has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              def gen_result_infos(items, infos, subdomains, appear_times, wc_ips, wc_ttl):
              Severity: Minor
              Found in brute.py - About 45 mins to fix

                Function do_export has 6 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                def do_export(fmt, path, rows, show, domain, target):
                Severity: Minor
                Found in export.py - About 45 mins to fix
                  Severity
                  Category
                  Status
                  Source
                  Language