mirror of
https://github.com/EvgenyNerush/easy-xray.git
synced 2025-02-18 08:19:56 +03:00
add fake servers: aws.amazon and discord
This commit is contained in:
parent
8f273899ec
commit
4c553c6388
1 changed files with 14 additions and 5 deletions
19
ex.sh
19
ex.sh
|
@ -179,16 +179,16 @@ containing only digits 0-9 and letters a-f, for instance
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo -e "${bold}Choose a fake site to mimic.${normal}
|
echo -e "${bold}Choose a fake site to mimic.${normal}
|
||||||
Better if it is: hosted by your VPS provider,
|
Better if it is popular and not blocked in your country:
|
||||||
in the same country, it is popular,
|
|
||||||
and have only ports 80 (http) and 443 (https) open
|
|
||||||
(can check with nmap -T4 hostname)
|
|
||||||
(1) www.youtube.com (default)
|
(1) www.youtube.com (default)
|
||||||
(2) www.microsoft.com
|
(2) www.microsoft.com
|
||||||
(3) www.google.com
|
(3) www.google.com
|
||||||
(4) www.bing.com
|
(4) www.bing.com
|
||||||
(5) www.yahoo.com
|
(5) www.yahoo.com
|
||||||
(6) your variant"
|
(6) www.adobe.com
|
||||||
|
(7) aws.amazon.com
|
||||||
|
(8) discord.com
|
||||||
|
(9) your variant"
|
||||||
read number
|
read number
|
||||||
default_fake_site="www.youtube.com"
|
default_fake_site="www.youtube.com"
|
||||||
if [ ! -v $number ]
|
if [ ! -v $number ]
|
||||||
|
@ -206,6 +206,15 @@ and have only ports 80 (http) and 443 (https) open
|
||||||
then
|
then
|
||||||
fake_site="www.yahoo.com"
|
fake_site="www.yahoo.com"
|
||||||
elif [ $number -eq 6 ]
|
elif [ $number -eq 6 ]
|
||||||
|
then
|
||||||
|
fake_site="www.adobe.com"
|
||||||
|
elif [ $number -eq 7 ]
|
||||||
|
then
|
||||||
|
fake_site="aws.amazon.com"
|
||||||
|
elif [ $number -eq 8 ]
|
||||||
|
then
|
||||||
|
fake_site="discord.com"
|
||||||
|
elif [ $number -eq 9 ]
|
||||||
then
|
then
|
||||||
echo -e "type your variant:"
|
echo -e "type your variant:"
|
||||||
read fake_site
|
read fake_site
|
||||||
|
|
Loading…
Add table
Reference in a new issue