Airmon-ng
pyrcrack.airmon.AirmonNg(*args, **kwargs)Airmon-NG
Usage: airmon-ng
commandstr(object='') -> str str(bytes_or_buffer[, encoding[, errors]]) -> str
Create a new string object from the given object. If encoding or errors is specified, then the object must expose a data buffer that will be decoded using the given encoding and error handler. Otherwise, returns the result of object.str() (if defined) or repr(object). encoding defaults to sys.getdefaultencoding(). errors defaults to 'strict'.
helpstrExtract help string for current command.
interfacesList of currently available interfaces as reported by airmon-ng.
This is an awaitable property, use it as in::
async with AirmonNg() as airmon: await airmon.interfaces
Returns: None
monitor_interfacereadlines(self)Return lines as per proc.communicate, non-empty ones.
requires_rootbool(x) -> bool
Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
requires_tempdirbool(x) -> bool
Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
requires_tempfilebool(x) -> bool
Returns True when the argument x is true, False otherwise. The builtins True and False are the only two instances of the class bool. The class bool is a subclass of the class int, and cannot be subclassed.
resolve(val)Force string conversion.
- In case an Interface object comes on args
- In case a contextvar comes, retrieve its value
resultsrun(self, *args, **kwargs)Check argument position.
Forced for this one.
runningselect_interface(self, regex)usageExtract usage from a specified command.
This is useful if usage not defined in subclass, but it is recommended to define them there.