Loading tools/others/socialmedia.py +4 −1 Original line number Diff line number Diff line # coding=utf-8 import contextlib import os import subprocess Loading Loading @@ -48,6 +49,8 @@ class Faceshell(HackingTool): def run(self): name = input("Enter Username >> ") wordlist = input("Enter Wordlist >> ") # Ignore a FileNotFoundError if we are already in the Brute_Force directory with contextlib.suppress(FileNotFoundError): os.chdir("Brute_Force") subprocess.run( ["python3", "Brute_Force.py", "-f", f"{name}", "-l", f"{wordlist}"]) Loading Loading
tools/others/socialmedia.py +4 −1 Original line number Diff line number Diff line # coding=utf-8 import contextlib import os import subprocess Loading Loading @@ -48,6 +49,8 @@ class Faceshell(HackingTool): def run(self): name = input("Enter Username >> ") wordlist = input("Enter Wordlist >> ") # Ignore a FileNotFoundError if we are already in the Brute_Force directory with contextlib.suppress(FileNotFoundError): os.chdir("Brute_Force") subprocess.run( ["python3", "Brute_Force.py", "-f", f"{name}", "-l", f"{wordlist}"]) Loading