当前位置: 首页>>代码示例>>Python>>正文


Python CommandProfile.get_command方法代码示例

本文整理汇总了Python中zenmapCore.UmitConf.CommandProfile.get_command方法的典型用法代码示例。如果您正苦于以下问题:Python CommandProfile.get_command方法的具体用法?Python CommandProfile.get_command怎么用?Python CommandProfile.get_command使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在zenmapCore.UmitConf.CommandProfile的用法示例。


在下文中一共展示了CommandProfile.get_command方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: _profile_entry_changed

# 需要导入模块: from zenmapCore.UmitConf import CommandProfile [as 别名]
# 或者: from zenmapCore.UmitConf.CommandProfile import get_command [as 别名]
    def _profile_entry_changed(self, widget):
        """Update the command based on the contents of the target and profile
        entries. If the command corresponding to the current profile is not
        blank, use it. Otherwise use the current contents of the command
        entry."""
        profile_name = self.toolbar.get_selected_profile()
        target_string = self.toolbar.get_selected_target()

        cmd_profile = CommandProfile()
        command_string = cmd_profile.get_command(profile_name)
        del(cmd_profile)
        if command_string == "":
            command_string = self.command_toolbar.get_command()

        ops = NmapOptions()
        ops.parse_string(command_string)

        # Use the targets from the command entry, if there are any, otherwise
        # use any targets from the profile.
        targets = split_quoted(target_string)
        if len(targets) > 0:
            ops.target_specs = targets
        else:
            self.toolbar.set_selected_target(join_quoted(ops.target_specs))

        self.set_command_quiet(ops.render_string())
开发者ID:mogigoma,项目名称:nmap,代码行数:28,代码来源:ScanInterface.py


注:本文中的zenmapCore.UmitConf.CommandProfile.get_command方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。