Exemplo n.º 1
0
Arquivo: udbg.py Projeto: zbx911/uDdbg
 def _print_context(self, uc, pc):
     self.register_module.registers('mem_invalid')
     print(utils.titlify('disasm'))
     self.asm_module.internal_disassemble(uc.mem_read(pc - 0x16, 0x32),
                                          pc - 0x16, pc)
     if self.mem_access_result is not None:
         val = utils.red_bold("\t0x%x" % self.mem_access_result[1])
         ad = utils.green_bold("\t> 0x%x" % self.mem_access_result[0])
         print(utils.titlify("memory access"))
         print(utils.white_bold("WRITE") + val + ad)
         self.hook_mem_access = None
         self.mem_access_result = None
Exemplo n.º 2
0
 def exec(self, func_name, *args):
     print(utils.titlify('help'))
     print(utils.green_bold('usage: ') + self.command_map['executors']['usage'])
     r = []
     for key, value in self.executors_map.items():
         id = value['id']
         cmd_count = str(len(value['cmd_list']))
         r.append([str(id), key, cmd_count])
     h = [utils.white_bold_underline('id'),
          utils.white_bold_underline('name'),
          utils.white_bold_underline('commands')]
     print(utils.titlify('executors'))
     print(tabulate(r, h, tablefmt="simple"))
Exemplo n.º 3
0
Arquivo: udbg.py Projeto: zbx911/uDdbg
    def dbg_hook_code(self, uc, address, size, user_data):
        """
        Unicorn instructions hook
        """
        try:
            self.current_address = address

            hit_soft_bp = False
            should_print_instruction = self.trace_instructions > 0

            if self.soft_bp:
                self.hook_mem_access = True
                self.soft_bp = False
                hit_soft_bp = True

            if address != self.last_bp and \
                    (address in self.core_module.get_breakpoints_list() or
                    self.has_soft_bp):
                if self.skip_bp_count > 0:
                    self.skip_bp_count -= 1
                else:
                    self.breakpoint_count += 1
                    should_print_instruction = False
                    uc.emu_stop()

                    self.last_bp = address

                    print(utils.titlify('breakpoint'))
                    print('[' + utils.white_bold(str(self.breakpoint_count)) +
                          ']' + ' hit ' + utils.red_bold('breakpoint') +
                          ' at: ' + utils.green_bold(hex(address)))
                    self._print_context(uc, address)
            elif address == self.last_bp:
                self.last_bp = 0
            self.has_soft_bp = hit_soft_bp
            if self.current_address + size == self.exit_point:
                should_print_instruction = False
                self._print_context(uc, address)
                print(
                    utils.white_bold("emulation") + " finished with " +
                    utils.green_bold("success"))
            if should_print_instruction:
                self.asm_module.internal_disassemble(
                    uc.mem_read(address, size), address)
        except KeyboardInterrupt as ex:
            # If stuck in an endless loop, we can exit here :). TODO: does that mean ctrl+c never works for targets?
            print(utils.titlify('paused'))
            self._print_context(uc, address)
            uc.emu_stop()
Exemplo n.º 4
0
 def registers(self, func_name, *args):
     print(utils.titlify('registers'))
     arch = self.core_instance.unicorndbg_instance.get_arch()
     if arch == UC_ARCH_ARM:
         self.print_arm_registers()
     else:
         print('quick registers view: arch not supported')
Exemplo n.º 5
0
 def list(self, func_name, *args):
     print(utils.titlify('mappings'))
     h = [utils.white_bold_underline('path'),
          utils.white_bold_underline('address'),
          utils.white_bold_underline('length')]
     print('')
     print(tabulate(self.mappings, h, tablefmt="simple"))
     print('')
Exemplo n.º 6
0
    def dbg_hook_mem_invalid(self, uc, access, address, size, value, userdata):
        """
        Unicorn mem invalid hook
        """
        if size < 2:
            size = self.last_mem_invalid_size
        self.last_mem_invalid_size = size

        pc = uc.reg_read(arm_const.UC_ARM_REG_PC)
        self.register_module.registers('mem_invalid')
        print(utils.titlify('disasm'))
        self.asm_module.internal_disassemble(uc.mem_read(pc - 0x16, 0x32), pc - 0x16, pc)
Exemplo n.º 7
0
async def list_professors(request, university):
    items = list()
    professors = set()

    with open('lists/%s.txt' % university, 'r') as f:
        for i, line in enumerate(f):
            name = line.strip()
            if not name:
                items.append({'break': True})
                continue
            if name in professors or name.startswith('#'):
                continue
            professors.add(name)

            name = utils.titlify(name)
            professor_pic_page = Sess.get(prof_auto_profile_pic % (name, university))
            soup = BeautifulSoup(professor_pic_page.text, 'html.parser')
            professor_pic = soup.find_all('img')[1].attrs['src']
            img_tag = utils.make_img_tag(professor_pic, (100, 120), "w3-round w3-card")
            name_quoted = quote(name)
            university_quoted = quote(university)
            auto = "%s/%s" % (university_quoted, name_quoted)

            items.append({
                'break': False,
                'photo': img_tag,
                'name': name,
                'auto': auto,
                'scholar': scholar_base_link % (name_quoted, university_quoted),
                'search': google_base_link % (name_quoted, university_quoted)
            })

        content = utils.professors_info(items)

    uni_logo = utils.get_university_logo(Sess, university)
    logo_tag = utils.make_img_tag(uni_logo, (70, 70), classes="w3-margin-right w3-padding-right")
    heading = logo_tag + utils.titlify(university)
    heading = utils.make_link_tag(quote("/"), heading, "w3-text-red")
    header = utils.titlify(university)
    return response.html(utils.htmlify(header, heading, content))
Exemplo n.º 8
0
Arquivo: udbg.py Projeto: zbx911/uDdbg
 def dbg_hook_mem_invalid(self, uc: Uc, access, address, size, value,
                          userdata):
     """
     Unicorn mem invalid hook
     """
     if size < 2:
         size = self.last_mem_invalid_size
     self.last_mem_invalid_size = size
     self.register_module.registers('mem_invalid')
     print(utils.titlify('disasm'))
     start = max(0, self.pc - 0x16)
     self.asm_module.internal_disassemble(uc.mem_read(start, 0x32), start,
                                          address)
Exemplo n.º 9
0
async def root(request):
    universities = sorted([university.replace('.txt', '').strip() for university in os.listdir('lists/')])
    items = list()
    for university in universities:
        uni_logo = utils.get_university_logo(Sess, university)
        logo_tag = utils.make_img_tag(uni_logo, (80, 80), classes="w3-margin w3-padding-left w3-padding-right")
        href_tag = utils.make_link_tag(quote(university), utils.titlify(university))
        items.append({
            'logo': logo_tag,
            'href': href_tag
        })

    uni_list = utils.tablify_universities(items)
    return response.html(utils.htmlify("Universities", "Universities", uni_list))
Exemplo n.º 10
0
 def registers(self, func_name, *args):
     print(utils.titlify('registers'))
     arch = self.core_instance.unicorndbg_instance.arch
     mode = self.core_instance.unicorndbg_instance.mode
     regtable = getRegStringTable(getArchString(arch, mode))
     r = []
     for regcode in regtable:
         r.append(self.reg(regtable[regcode], regcode))
     h = [
         utils.white_bold_underline('register'),
         utils.white_bold_underline('hex'),
         utils.white_bold_underline('decimal')
     ]
     print(tabulate(r, h, tablefmt="simple"))
Exemplo n.º 11
0
Arquivo: main.py Projeto: heruix/uDdbg
    def dbg_hook_code(self, uc, address, size, user_data):
        """
        Unicorn instructions hook
        """
        self.current_address = address

        hit_soft_bp = False
        should_print_instruction = self.trace_instructions > 0

        if self.soft_bp:
            self.hook_mem_access = True
            self.soft_bp = False
            hit_soft_bp = True

        if address != self.last_bp and \
                (address in self.core_module.get_breakpoints_list() or
                 self.has_soft_bp):
            if self.skip_bp_count > 0:
                self.skip_bp_count -= 1
            else:
                self.breakpoint_count += 1
                should_print_instruction = False
                uc.emu_stop()

                self.last_bp = address

                print(utils.titlify('breakpoint'))
                print('[' + utils.white_bold(str(self.breakpoint_count)) +
                      ']' + ' hit ' + utils.red_bold('breakpoint') + ' at: ' +
                      utils.green_bold(hex(address)))
                self._print_context(uc)
        elif address == self.last_bp:
            self.last_bp = 0
        self.has_soft_bp = hit_soft_bp
        if self.current_address + size == self.exit_point:
            should_print_instruction = False
            self._print_context(uc)
            print(
                utils.white_bold("emulation") + " finished with " +
                utils.green_bold("success"))
        if should_print_instruction:
            self.asm_module.internal_disassemble(uc.mem_read(address, size),
                                                 address)
Exemplo n.º 12
0
Arquivo: find.py Projeto: zbx911/uDdbg
    def find(self, func_name, *args):
        where = utils.u_eval(self.core_instance, args[0])

        what = bytes.fromhex(args[1])
        match = re.compile(what)

        result = []
        map_start = 0
        start = 0
        size = 0
        mappings = self.core_instance.get_module(
            'mappings_module').get_mappings()

        if isinstance(where, str):
            for map in mappings:
                if map[0] == where:
                    start = int(map[1], 16)
                    map_start = start
                    size = map[2]
        else:
            for map in mappings:
                if int(map[1], 16) <= where < (int(map[1], 16) + map[2]):
                    map_start = int(map[1], 16)
                    start = where
                    size = map[2]

        b = self.core_instance.get_emu_instance().mem_read(
            start, size - (map_start - start))
        for match_obj in match.finditer(b):
            offset = match_obj.start() + map_start
            result.append([hex(offset)])

        print(utils.titlify('find'))
        if len(result) == 0:
            print('Nothing found.')
        else:
            h = [utils.white_bold_underline('offset')]
            print('')
            print(tabulate(result, h, tablefmt="simple"))
            print('')
Exemplo n.º 13
0
    def print_command_list(self, com_obj):
        """
        print the command list of the com_obj reference passed (could be root or even a sub_command reference)
        :param com_obj: command object reference
        :return:
        """
        try:
            com_array = []
            for com in com_obj:
                # if a short reference is present print (short)
                # if the command is a ref, ignore it
                if "ref" not in com_obj[com]:
                    com_array.append(com)

            # sort the list of commands and print it
            com_array.sort()
            command_table_arr = []
            for com in com_array:
                com_t = [utils.green_bold(com)]
                have_shorts = "short" in com_obj[com]
                if have_shorts:
                    com_t.append(com_obj[com]["short"])
                else:
                    com_t.append('')

                com_t.append(self.print_usage(com_obj[com], only_get=True))
                command_table_arr.append(com_t)

            print(utils.titlify('help'))
            print(
                tabulate(command_table_arr, [
                    utils.white_bold_underline('command'),
                    utils.white_bold_underline('short'),
                    utils.white_bold_underline('usage')
                ],
                         tablefmt="simple"))

        except Exception as e:
            print(utils.error_format('print_command_list', str(e)))
Exemplo n.º 14
0
    def help(self, func_name, *args):
        """
        print the help and command usage of the requested command (and sub_command too)

        help command_to_get_help [sub_command_to_get_help1 sub_command_to_get_help2]

        :param func_name:
        :param args:
        :return:
        """

        # we need at least 1 command to get the help
        if args:
            try:
                # h will keep the command dictionary iteration
                # c will keep the deep of the sub_command iteration
                h = None
                c = 0
                prev_h = None

                # iterate for every command and sub_command in args
                for arg in args:
                    c += 1
                    # keep a reference (useful for errors) of command\sub_command name
                    command = arg

                    # if we already fetched the first main command
                    if h:
                        # if we have a sub_command save the reference so we can iterate into it
                        if "sub_commands" in h:
                            if len(h["sub_commands"]) is not 0:
                                # save the parent command
                                prev_h = h
                                h = h["sub_commands"][arg]
                            else:
                                raise Exception
                        else:
                            raise Exception
                    # if is the first fetch of the main command just search it on the commands_map dict
                    # and save the reference. We will start the command root from here
                    else:
                        # if the requested command is a "ref" to another command, just keep the right reference
                        if "ref" in self.core_instance.commands_map[arg]:
                            h = self.core_instance.commands_map[
                                self.core_instance.commands_map[arg]["ref"]]
                        else:
                            h = self.core_instance.commands_map[arg]
                        # keep a reference to parent command
                        prev_h = h

                if c > 0:
                    # if the sub_command is a reference to another associated sub_command
                    if "ref" in h:
                        h = prev_h['sub_commands'][h['ref']]

                    # print help and usage passing h, the command object reference
                    print(utils.titlify(command))
                    print(h["help"])
                    self.print_usage(h)
                    # if there are sub_commands print a list of them
                    if "sub_commands" in h:
                        self.print_command_list(h["sub_commands"])

            except Exception as e:
                print(utils.error_format(func_name, str(e)))
                print("no help for command '" + command + "'" + ' found')

        # if we have no args (so no commands) just print the commands list
        else:
            self.print_command_list(self.core_instance.commands_map)
Exemplo n.º 15
0
Arquivo: udbg.py Projeto: zbx911/uDdbg
    def exec_command(self, command, args):
        """
        the core method of commands exec, it tries to fetch the requested command,
        bind to the right context and call the associated function

        TODO:
        :param command: requested command
        :param args: arguments array
        :return:
        """

        # save the found command and sub_command array
        complete_command_array = [command]
        try:
            if command == '':
                return

            if command in self.commands_map:

                # if we found the command but has the "ref" property,
                # so we need to reference to another object. Ex. short command q --references--> quit
                if 'ref' in self.commands_map[command]:
                    com = self.commands_map[self.commands_map[command]['ref']]
                else:
                    com = self.commands_map[command]

                # if we have no arguments no sub_command exist, else save the first argument
                last_function = False
                if len(args) > 0:
                    possible_sub_command = args[0]
                else:
                    possible_sub_command = None

                # now iterate while we have a valid sub_command,
                # when we don't find a valid sub_command exit and the new command will be the sub_command
                # save the sub_command parent
                prev_command = com
                while last_function is False:
                    # if the sub command is a ref, catch the right command
                    if 'ref' in com:
                        com = prev_command['sub_commands'][com['ref']]
                    if 'sub_commands' in com and possible_sub_command:
                        if possible_sub_command in com['sub_commands']:
                            prev_command = com
                            com = com['sub_commands'][possible_sub_command]
                            # pop the found sub_command so we can iterate on the remanings arguments
                            complete_command_array.append(args.pop(0))
                            command = possible_sub_command
                            # if there are arguments left
                            if len(args) > 0:
                                # take the first args (the next sub_command)
                                possible_sub_command = args[0]
                            else:
                                last_function = True
                        else:
                            last_function = True
                    else:
                        last_function = True

                # if the sub_command is a reference to another associated sub_command
                if 'ref' in com:
                    com = prev_command['sub_commands'][com['ref']]

                # if we have a function field just fetch the context and the function name,
                # bind them and call the function passing the arguments
                if 'function' in com:
                    if 'args' in com['function']:
                        args_check, args_error = utils.check_args(
                            com['function']['args'], args)
                        if args_check is False:
                            raise Exception(args_error)

                    context = self.context_map[com["function"]["context"]]
                    funct = com["function"]["f"]
                    call_method = getattr(context, funct)
                    # we pass the command name (could be useful for the called function)
                    # and possible arguments to the function
                    call_method(command, *args)
                else:
                    # if we have no method implementation of the command
                    # print the help of the command
                    # passing all the arguments list to help function (including the command) in a unique array
                    self.exec_command('help', complete_command_array)

            else:
                print("command '" + command + "' not found")
        except Exception as e:
            if isinstance(e, UcError):
                print(utils.titlify('uc error'))
                print(str(e))
            else:
                print(utils.error_format('exec_command', str(e)))
                self.exec_command('help', complete_command_array)