Je crée un outil pentest à des fins éducatives. L'ancienne version a donc été écrite à l'aide python 2, puis je le convertit python 3 et quand j'essaie de courir le fichier principal pxxtf.py
J'ai eu plusieurs erreurs, je corrige la plupart d'entre eux, mais pour celui-ci de l'importation circulaire, j'essaie plusieurs corrections de forums et de Stackoverflow et rien ne fonctionne avec moi.
Quand j'essaie d'exécuter le script principal:
Sudo python3 pxxtf.py
J'ai eu ces erreurs:
Traceback (most recent call last):
File "pxxtf.py", line 6, in <module>
from core.excute import main
File "/home/yezz123/Documents/PXXTF/core/excute.py", line 6, in <module>
from pxxtf import *
File "/home/yezz123/Documents/PXXTF/pxxtf.py", line 6, in <module>
from core.excute import main
ImportError: cannot import name 'main' from partially initialized module 'core.excute' (most likely due to a circular import) (/home/yezz123/Documents/PXXTF/core/excute.py)
pxxtf.py
from core.excute import main
if __name__ == "__main__":
main()
import sys
from core.excute import main
if __name__ == 'main':
sys.exit(main._main())
et c'est le excute.py
import os
import sys
import core
from time import sleep, time
from pxxtf import *
from core.exploit import clean
from core.banner import banner, PXXTF
# Set color
R = '\033[31m' # Red
N = '\033[1;37m' # White
G = '\033[32m' # Green
O = '\033[0;33m' # Orange
B = '\033[1;34m' #Blue
E = '\033[0m' # End
if not os.geteuid() == 0: #Detected user root
sys.exit(
"""\033[1;91m\n[!] Pentest Tools Framework run as root!!. \n\033[1;m"""
)
if __name__ == "__main__" or clean() or banner() or PXXTF():
main()
def main():
while True:
try:
PXXTF = eval(input("Pentest>> "))
if PXXTF == 'use modules/exploits':
core.menu.exploits()
main()
Elif PXXTF == 'use modules/scanners':
core.menu.scan()
main()
Elif PXXTF == 'use modules/password':
core.menu.pas1()
main()
Elif PXXTF == 'use modules/post':
core.menu.post()
main()
Elif PXXTF == 'use modules/listener':
core.menu.listener()
main()
Elif PXXTF == 'use modules/exploitdb':
core.menu.exploit_db()
main()
Elif PXXTF == 'use modules/tools':
core.menu.tools()
main()
Elif PXXTF == 'Shell':
core.exploit.commands()
main()
Elif PXXTF == 'show modules':
core.help.modules()
main()
Elif PXXTF == 'ipconfig':
core.exploit.ip1()
main()
Elif PXXTF == 'show options':
core.help.help()
main()
Elif PXXTF == 'update':
core.exploit.update()
main()
Elif PXXTF == 'about':
core.banner.info()
main()
Elif PXXTF == 'credits':
core.banner.credits()
main()
Elif PXXTF == 'banner':
clean(), banner(), PXXTF(), main()
Elif PXXTF == 'clear':
core.menu.exploit.clean()
main()
Elif PXXTF == 'exit':
core.banner.exits()
exit()
else:
print(("Wrong Command => ", PXXTF))
print(("" + N + "" + B + "[" + R + "!" + B + "] " + N +
"Please enter 'show options'"))
main()
except (KeyboardInterrupt):
print(
("\n" + R + "[*] (Ctrl + C ) Detected, Trying To Exit ...\n"))
time.sleep(2)
print(("" + G + "[*] Thank You For Using Pentest Framework =)\n"))
time.sleep(3)
exit()
Le message d'erreur indique tout cela: "probablement en raison d'une importation circulaire".
pxxtf.py
from core.excute import main
excute.py
from pxxtf import *
Supprimez l'une des importations énumérées ci-dessus et elle devrait fonctionner. De toute façon, dans Python Vous ne pouvez pas avoir de scripts s'importer mutuellement.