forked from guoruibiao/crosswall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrowall.py
47 lines (37 loc) · 1.43 KB
/
crowall.py
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
44
45
46
47
# coding:utf-8
import sys
reload(sys)
sys.setdefaultencoding('utf8')
# __author__ = '郭 璞'
# __date__ = '2016/10/24'
# __Desc__ = 翻墙助手, 默认会先备份一下当前的hosts文件,防止出现意外,另外可以跨平台使用
import platform
import os
import urllib2
def downloadHosts(url):
file = open('./hosts.txt', 'wb')
data = urllib2.urlopen(url).readlines()
file.writelines(data)
file.close()
def crosswall(systemtype='Window'):
try:
if systemtype == 'Windows':
os.system('copy %SystemRoot%\System32\drivers\etc\hosts %SystemRoot%\System32\drivers\etc\hosts_bak')
os.system('copy hosts.txt %SystemRoot%\System32\drivers\etc\hosts')
os.system('ipconfig /flushdns')
os.system('pause')
print 'It\'s done on Windows! And Try your browser!'
elif systemtype == "Linux":
os.system('cp /etc/hosts /etc/hosts_bak')
os.system('mv ./hosts.txt /etc/hosts')
os.system('pause')
os.system('sudo /etc/init.d/networking restart ')
print 'It\'s done on Linux! And Try your browser!'
except Exception as e:
print e
if __name__ == '__main__':
url = 'https://raw.githubusercontent.com/racaljk/hosts/master/hosts'
downloadHosts(url=url)
print 'Hosts update success!'
crosswall(platform.system())
print 'Hosts replaced success! Try to cross the wall!'