-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxychains.sh
More file actions
43 lines (38 loc) · 822 Bytes
/
proxychains.sh
File metadata and controls
43 lines (38 loc) · 822 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/bin/bash
#Script proxychains by Naoux
clear
read -p "[>] What is your choice ?
[1] Run proxychains
[Q] Exit
>" action
if [ $action = '1' ]
then
clear
service tor start
read -p "[>] What is your Web Browser ?
[1] Firefox (Iceweasel)
[2] Google-chrome
>" navigateur
if [ $navigateur = '1' ]
then
proxychains firefox www.google.com
fi
if [ $navigateur = 'Q' ]
then
proxychains google-chrome www.google.com
fi
if [ $navigateur != '1' ] || [ $navigateur != '2' ]
then
sh proxychains.sh
fi
fi
if [ $action = '4' ]
then
exit
fi
if [ $action != '1' ] || [ $action != '2' ] || [ $action != '3' ] || [ $action != '4' ]
then
exit
clear
fi
#End proxychains