noob-hackers / infect

Infect Any Android Device With Virus From Link In Termux
https://www.noob-hackers.com
MIT License
2.19k stars 289 forks source link

Create dependencies.py #16

Closed krishpranav closed 3 years ago

krishpranav commented 3 years ago

Hi I have added a new python file this will help the user to install all the dependencies quickly

noob-hackers commented 3 years ago

Thanks for suggesting but we used bash Scripting not Python so ...we dont need python code 🙄

On Sun, 18 Oct, 2020, 7:15 pm Omicron166yt, notifications@github.com wrote:

@Omicron166yt requested changes on this pull request.

There are 2 things that don't make a lot of sense but the code is good

In dependencies.py https://github.com/noob-hackers/Infect/pull/16#discussion_r507154090:

+os.system("apt install figlet") +os.system("figlet INSTALLATION") +os.system("clear")

Why generate a banner if right after you are going to remove it? For that it is better not to put any banner

In dependencies.py https://github.com/noob-hackers/Infect/pull/16#discussion_r507154732:

+def agreement():

  • if agree in Y:
  • os.system("figlet INSTALLING THE DEPENDENCIES")
  • time.sleep(0.5)
  • os.system("apt update")
  • os.system("apt upgrade")
  • os.system("pkg upgrade")
  • os.system("pkg install git")
  • os.system("pkg install python -y")
  • os.system("pip install lolcat")
  • os.system("clear")
  • os.system("figlet INSTALLATION COMPLETED...")
  • print("you can now run infect.sh")
  • elif agree in N:
  • print("This tool needs some depedencies please run python3 dependencies.py")
  • print("exiting")
  • exit()
  • +agreement()

Correct me if I'm wrong It is not necessary to create a function in this case as it will only be used once

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/noob-hackers/Infect/pull/16#pullrequestreview-511146027, or unsubscribe https://github.com/notifications/unsubscribe-auth/AL2ISEBMKISYNRVB4OJ27GTSLLWORANCNFSM4QN3OAGQ .

krishpranav commented 3 years ago

ok thank you