'module' 中的 Wifite-master 错误没有属性 'getuid' - Python
Wifite-master error in 'module' has no attrib 'getuid' - Python
我想请问如何修复wifi错误
这是错误
> Traceback (most recent call last):
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 3360, in <module>
engine.Start()
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 1354, in Start
self.RUN_CONFIG.ConfirmRunningAsRoot()
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 252, in ConfirmRunningAsRoot
if os.getuid() != 0:
AttributeError: 'module' object has no attribute 'getuid'
代码放不下..太长了..
想看代码的可以下载wifite..
有人知道如何解决这个问题吗?
我有 Python 3.4.3(目前最新)所以 IDK 如果它与版本有关..用旧版本试过..也没有用.. python 程序员告诉我没有问题,并告诉我更新 python 我做了,但仍然是同样的问题..
你是 运行 Windows。项目网页说:
Designed and tested on Linux; works with Backtrack 5, BlackBuntu,
BackBox, and Pentoo! Linux only; no windows or OSX support (but you're
welcome to try).
os.getuid
函数仅在 Unix 上可用,这就是您收到错误的原因。
无需更改 OS,只需使用带有某些 Linux 发行版的虚拟机即可!
我想请问如何修复wifi错误
这是错误
> Traceback (most recent call last):
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 3360, in <module>
engine.Start()
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 1354, in Start
self.RUN_CONFIG.ConfirmRunningAsRoot()
File "C:\Privilege Escalation\Password Attacks\Offline Attacks\Wifite\wifite-m
aster\wifite.py", line 252, in ConfirmRunningAsRoot
if os.getuid() != 0:
AttributeError: 'module' object has no attribute 'getuid'
代码放不下..太长了.. 想看代码的可以下载wifite..
有人知道如何解决这个问题吗?
我有 Python 3.4.3(目前最新)所以 IDK 如果它与版本有关..用旧版本试过..也没有用.. python 程序员告诉我没有问题,并告诉我更新 python 我做了,但仍然是同样的问题..
你是 运行 Windows。项目网页说:
Designed and tested on Linux; works with Backtrack 5, BlackBuntu, BackBox, and Pentoo! Linux only; no windows or OSX support (but you're welcome to try).
os.getuid
函数仅在 Unix 上可用,这就是您收到错误的原因。
无需更改 OS,只需使用带有某些 Linux 发行版的虚拟机即可!