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


Python Process.call方法代码示例

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


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

示例1: print_targets

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
    def print_targets(self):
        '''
            Prints targets to console
        '''
        if len(self.targets) == 0:
            Color.p('\r')
            return

        if self.previous_target_count > 0:
            # We need to "overwrite" the previous list of targets.
            if self.previous_target_count > len(self.targets) or \
               Scanner.get_terminal_height() < self.previous_target_count + 3:
                # Either:
                # 1) We have less targets than before, so we can't overwrite the previous list
                # 2) The terminal can't display the targets without scrolling.
                # Clear the screen.
                from Process import Process
                Process.call('clear')
            else:
                # We can fit the targets in the terminal without scrolling
                # "Move" cursor up so we will print over the previous list
                Color.pl(Scanner.UP_CHAR * (3 + self.previous_target_count))

        self.previous_target_count = len(self.targets)

        # Overwrite the current line
        Color.p('\r')

        Target.print_header()
        for (index, target) in enumerate(self.targets):
            index += 1
            Color.pl('   {G}%s %s' % (str(index).rjust(3), target))
开发者ID:wflk,项目名称:wifite2,代码行数:34,代码来源:Scanner.py

示例2: aircrack_handshakes

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
 def aircrack_handshakes(self):
     if not self.bssid:
         return []
     (stdout, stderr) = Process.call(self.aircrack_command())
     if 'passphrase not in dictionary' in stdout.lower():
         return [(self.bssid, None)]
     else:
         return []
开发者ID:j1m1h3ndr1x,项目名称:wifite2,代码行数:10,代码来源:Handshake.py

示例3: start

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
    def start(iface):
        '''
            Starts an interface (iface) in monitor mode
            Args:
                iface - The interface to start in monitor mode
                        Either an instance of Interface object,
                        or the name of the interface (string).
            Returns:
                Name of the interface put into monitor mode.
            Throws:
                Exception - If an interface can't be put into monitor mode
        '''
        # Get interface name from input
        if type(iface) == Interface:
            iface = iface.name
        Airmon.base_interface = iface

        # Call airmon-ng
        Color.p("{+} enabling {G}monitor mode{W} on {C}%s{W}... " % iface)
        (out,err) = Process.call('airmon-ng start %s' % iface)

        # Find the interface put into monitor mode (if any)
        mon_iface = None
        for line in out.split('\n'):
            if 'monitor mode' in line and 'enabled' in line and ' on ' in line:
                mon_iface = line.split(' on ')[1]
                if ']' in mon_iface:
                    mon_iface = mon_iface.split(']')[1]
                if ')' in mon_iface:
                    mon_iface = mon_iface.split(')')[0]
                break

        if mon_iface == None:
            # Airmon did not enable monitor mode on an interface
            Color.pl("{R}failed{W}")

        mon_ifaces = Airmon.get_interfaces_in_monitor_mode()

        # Assert that there is an interface in monitor mode
        if len(mon_ifaces) == 0:
            Color.pl("{R}failed{W}")
            raise Exception("iwconfig does not see any interfaces in Mode:Monitor")

        # Assert that the interface enabled by airmon-ng is in monitor mode
        if mon_iface not in mon_ifaces:
            Color.pl("{R}failed{W}")
            raise Exception("iwconfig does not see %s in Mode:Monitor" % mon_iface)

        # No errors found; the device 'mon_iface' was put into MM.
        Color.pl("{G}enabled {C}%s{W}" % mon_iface)

        Configuration.interface = mon_iface

        return mon_iface
开发者ID:schoonc,项目名称:wifite2,代码行数:56,代码来源:Airmon.py

示例4: get_interfaces_in_monitor_mode

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
 def get_interfaces_in_monitor_mode():
     '''
         Uses 'iwconfig' to find all interfaces in monitor mode
         Returns:
             List of interface names that are in monitor mode
     '''
     interfaces = []
     (out, err) = Process.call("iwconfig")
     for line in out.split("\n"):
         if len(line) == 0: continue
         if line[0] != ' ':
             iface = line.split(' ')[0]
             if '\t' in iface:
                 iface = iface.split('\t')[0]
         if 'Mode:Monitor' in line and iface not in interfaces:
             interfaces.append(iface)
     return interfaces
开发者ID:HoMeCracKeR,项目名称:wifite2,代码行数:19,代码来源:Airmon.py

示例5: stop

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
    def stop(iface):
        Color.p("{+} {R}disabling {O}monitor mode{R} on {O}%s{W}... " % iface)
        (out,err) = Process.call('airmon-ng stop %s' % iface)
        mon_iface = None
        for line in out.split('\n'):
            # aircrack-ng 1.2 rc2
            if 'monitor mode' in line and 'disabled' in line and ' for ' in line:
                mon_iface = line.split(' for ')[1]
                if ']' in mon_iface:
                    mon_iface = mon_iface.split(']')[1]
                if ')' in mon_iface:
                    mon_iface = mon_iface.split(')')[0]
                break

            # aircrack-ng 1.2 rc1
            match = re.search('([a-zA-Z0-9]+).*\(removed\)', line)
            if match:
                mon_iface = match.groups()[0]
                break

        if mon_iface:
            Color.pl('{R}disabled {O}%s{W}' % mon_iface)
        else:
            Color.pl('{O}could not disable on {R}%s{W}' % iface)
开发者ID:HoMeCracKeR,项目名称:wifite2,代码行数:26,代码来源:Airmon.py

示例6: forge_packet

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
    def forge_packet(xor_file, bssid, station_mac):
        ''' Forges packet from .xor file '''
        forged_file = 'forged.cap'
        cmd = [
            'packetforge-ng',
            '-0',
            '-a', bssid,           # Target MAC
            '-h', station_mac,     # Client MAC
            '-k', '192.168.1.2',   # Dest IP
            '-l', '192.168.1.100', # Source IP
            '-y', xor_file,        # Read PRNG from .xor file
            '-w', forged_file,     # Write to
            Configuration.interface
        ]

        cmd = '"%s"' % '" "'.join(cmd)
        (out, err) = Process.call(cmd, cwd=Configuration.temp(), shell=True)
        if out.strip() == 'Wrote packet to: %s' % forged_file:
            return forged_file
        else:
            from Color import Color
            Color.pl('{!} {R}failed to forge packet from .xor file{W}')
            Color.pl('output:\n"%s"' % out)
            return None
开发者ID:Andrey-Omelyanuk,项目名称:wifite2,代码行数:26,代码来源:Aireplay.py

示例7: start_network_manager

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
 def start_network_manager():
     Color.p("{!} {O}restarting {R}NetworkManager{O}...")
     (out,err) = Process.call('systemctl start NetworkManager')
     Color.pl(" {R}restarted{W}")
开发者ID:schoonc,项目名称:wifite2,代码行数:6,代码来源:Airmon.py

示例8: put_interface_up

# 需要导入模块: from Process import Process [as 别名]
# 或者: from Process.Process import call [as 别名]
 def put_interface_up(iface):
     Color.p("{!} {O}putting interface {R}%s up{O}..." % (iface))
     (out,err) = Process.call('ifconfig %s up' % (iface))
     Color.pl(" {R}done{W}")
开发者ID:schoonc,项目名称:wifite2,代码行数:6,代码来源:Airmon.py


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