File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ # Websploit Framework Installation Script
3
+ # The404Hacking - Digital Security ReSearch Group
4
+ # WebSploit Setup Created By Amir Hossein Yeganeh (Sir.4m1R)
5
+
6
+ # Telegram Channel: @The404Hacking
7
+ if [[ $EUID -ne 0 ]]; then
8
+ echo " You must be root to run this script. Aborting..." ;
9
+ exit 1;
10
+ fi
11
+ echo " Welcome To Websploit Framework Install Script"
12
+ echo " Installing ..."
13
+ sleep 3
14
+ cp wsf-300.tar.gz /usr/share
15
+ cd /usr/share
16
+ tar -xf wsf-300.tar.gz
17
+ chmod 755 /usr/share/websploit/*
18
+ chmod 755 /usr/share/websploit/modules*
19
+ chmod 755 /usr/share/websploit/modules/fakeupdate/*
20
+ chmod 755 /usr/share/websploit/core/*
21
+ ln -s /usr/share/websploit/websploit /usr/bin/websploit
22
+ rm -rf /usr/share/wsf-300.tar.gz
23
+ echo " Installed Directory : /usr/share/websploit"
24
+ echo " Run From Terminal : sudo websploit"
25
+ echo " Installation Complete."
You can’t perform that action at this time.
0 commit comments