系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 网络知识 > 网络安全 > 详细页面

分析攻击IP来源地与防御IP攻击的应对策略

时间:2020-02-02来源:系统城作者:电脑系统城

分布式拒绝服务(DDoS)攻击指借助于客户/服务器技术,将多个计算机联合起来作为攻击平台,对一个或多个目标发动DDoS攻击,从而成倍地提高拒绝服务攻击的威力。通常,攻击者使用一个偷窃帐号将DDoS主控程序安装在一个计算机上,在一个设定的时间主控程序将与大量代理程序通讯,代理程序已经被安装在网络上的许多计算机上。代理程序收到指令时就发动攻击。利用客户/服务器技术,主控程序能在几秒钟内激活成百上千次代理程序的运行。

此文中的API将台湾列为国家,非本人立场,台湾属于中国,台湾岛生活的人不一定! 
上码:


 
  1. #!/usr/bin/python
  2. #coding=utf-8
  3. '''
  4. http://ip-api.com/json/ip
  5. '''import plotly
  6. import plotly.plotly
  7. import plotly.graph_objs as abcc
  8. import plotly.plotly
  9.  
  10. class Piecharts:
  11. def __init__(self):
  12. print "饼图生成中"
  13.  
  14. def makePiecharts(self,labels,values,filename):
  15. trace = abcc.Pie(labels = labels,values= values)
  16. plotly.offline.plot([trace],filename=filename)
  17.  
  18. import requests
  19. import sys
  20.  
  21. try:
  22. iplist = sys.argv[1]
  23. except:
  24. print "IP list not given or some other error!"
  25. countrylist = {}
  26. regionlist = {}
  27. citylist = {}
  28.  
  29. with open(iplist) as f:
  30. for ip in f.readlines():
  31. if ip.strip() != '':
  32. url = 'http://ip-api.com/json/' + ip.strip()
  33. try:
  34. result = requests.get(url)
  35. jsontext = result.json()
  36. except:
  37. print "Error: Data not retrieved!"
  38. continue
  39. status = jsontext['status']
  40. if status == 'fail':
  41. print "%s failed!" % ip.strip()
  42. continue
  43. mline = jsontext['as']
  44. city = jsontext['city']
  45. country = jsontext['country']
  46. countryCode = jsontext['countryCode']
  47. isp = jsontext['isp']
  48. lat = jsontext['lat']
  49. lon = jsontext['lon']
  50. org = jsontext['org']
  51. query = jsontext['query']
  52. region = jsontext['region']
  53. regionName = jsontext['regionName']
  54. timezone = jsontext['timezone']
  55. zipcode = jsontext['zip']
  56.  
  57. if not country in countrylist:
  58. countrylist[country] = 0
  59. else:
  60. countrylist[country] += 1
  61.  
  62. if not regionName in regionlist:
  63. regionlist[regionName] = 0
  64. else:
  65. regionlist[regionName] += 1
  66.  
  67. if not city in citylist:
  68. citylist[city] = 0
  69. else:
  70. citylist[city] += 1
  71. try:
  72. print ip.strip() + '--' + country + '--' + regionName
  73. except:
  74. print "Special character!"
  75. print countrylist
  76.  
  77. #country
  78. labels = [i for i in countrylist]
  79. value = [countrylist[i] for i in countrylist]
  80. drive = Piecharts()
  81. drive.makePiecharts(labels,value,"country.html")
  82.  
  83. #region
  84. labels = [i for i in regionlist]
  85. value = [regionlist[i] for i in regionlist]
  86. drive = Piecharts()
  87. drive.makePiecharts(labels,value,"region.html")
  88.  
  89. #city
  90. labels = [i for i in citylist]
  91. value = [citylist[i] for i in citylist]
  92. drive = Piecharts()
  93. drive.makePiecharts(labels,value,"city.html")
  94.  

gevent协程并发版

 


 
  1. #!/usr/bin/python
  2. # coding=utf-8
  3. '''
  4. http://ip-api.com/json/ip
  5. '''
  6. import plotly
  7. import plotly.graph_objs as abcc
  8. import plotly.plotly
  9.  
  10. class Piecharts:
  11. def __init__(self):
  12. print u'饼图生成中'
  13.  
  14. def makePiecharts(self, labels, values, filename):
  15. trace = abcc.Pie(labels=labels, values=values)
  16. plotly.offline.plot([trace], filename=filename)
  17.  
  18. import requests
  19. import sys
  20.  
  21. try:
  22. iplist = sys.argv[1]
  23. except:
  24. print "IP list not given or some other error!"
  25. countrylist = {}
  26. regionlist = {}
  27. citylist = {}
  28.  
  29. def locater(url):
  30. try:
  31. result = requests.get(url)
  32. jsontext = result.json()
  33. except:
  34. print "Error: Data not retrieved!"
  35. return
  36. status = jsontext['status']
  37. if status == 'fail':
  38. print "%s failed!" % ip.strip()
  39. return
  40. mline = jsontext['as']
  41. city = jsontext['city']
  42. country = jsontext['country']
  43. countryCode = jsontext['countryCode']
  44. isp = jsontext['isp']
  45. lat = jsontext['lat']
  46. lon = jsontext['lon']
  47. org = jsontext['org']
  48. query = jsontext['query']
  49. region = jsontext['region']
  50. regionName = jsontext['regionName']
  51. timezone = jsontext['timezone']
  52. zipcode = jsontext['zip']
  53.  
  54. if not country in countrylist:
  55. countrylist[country] = 0
  56. else:
  57. countrylist[country] += 1
  58.  
  59. if not regionName in regionlist:
  60. regionlist[regionName] = 0
  61. else:
  62. regionlist[regionName] += 1
  63.  
  64. if not city in citylist:
  65. citylist[city] = 0
  66. else:
  67. citylist[city] += 1
  68. try:
  69. print ip.strip() + '--' + country + '--' + regionName
  70. except:
  71. print "Special character!"
  72.  
  73. from gevent import monkey
  74. monkey.patch_socket()
  75. from gevent import pool
  76. import gevent
  77.  
  78. pool = pool.Pool(40)
  79. glist = []
  80. with open(iplist) as f:
  81. for ip in f.readlines():
  82. if ip.strip() != '':
  83. url = 'http://ip-api.com/json/' + ip.strip()
  84. glist.append(pool.spawn(locater, url))
  85. gevent.joinall(glist)
  86.  
  87. # country
  88. labels = [i for i in countrylist]
  89. value = [countrylist[i] for i in countrylist]
  90. drive = Piecharts()
  91. drive.makePiecharts(labels, value, "country.html")
  92.  
  93. # region
  94. labels = [i for i in regionlist]
  95. value = [regionlist[i] for i in regionlist]
  96. drive = Piecharts()
  97. drive.makePiecharts(labels, value, "region.html")
  98.  
  99. # city
  100. labels = [i for i in citylist]
  101. value = [citylist[i] for i in citylist]
  102. drive = Piecharts()
  103. drive.makePiecharts(labels, value, "city.html")
  104.  

饼图效果:

在对网络攻击进行上述分析与识别的基础上,我们应当认真制定有针对性的策略。明确安全对象,设置强有力的安全保障体系。有的放矢,在网络中层层设防,发挥网络的每层作用,使每一层都成为一道关卡,从而让攻击者无隙可钻、无计可使。还必须做到未雨稠缪,预防为主 ,将重要的数据备份并时刻注意系统运行状况。以下是针对众多令人担心的网络安全问题,提出的几点建议:

1、提高安全意识

  (1)不要随意打开来历不明的电子邮件及文件,不要随便运行不太了解的人给你的程序,比如“特洛伊”类黑客程序就需要骗你运行。
  (2)尽量避免从Internet下载不知名的软件、游戏程序。即使从知名的网站下载的软件也要及时用最新的病毒和木马查杀软件对软件和系统进行扫描。
  (3)密码设置尽可能使用字母数字混排,单纯的英文或者数字很容易穷举。将常用的密码设置不同,防止被人查出一个,连带到重要密码。重要密码最好经常更换。
  (4)及时下载安装系统补丁程序。
  (5)不随便运行黑客程序,不少这类程序运行时会发出你的个人信息。
  (6)在支持HTML的BBS上,如发现提交警告,先看源代码,很可能是骗取密码的陷阱。

2、使用防毒、防黑等防火墙软件。

防火墙是一个用以阻止网络中的黑客访问某个机构网络的屏障,也可称之为控制进/出两个方向通信的门槛。在网络边界上通过建立起来的相应网络通信监控系统来隔离内部和外部网络,以阻档外部网络的侵入。

3、设置代理服务器,隐藏自已的IP地址。

保护自己的IP地址是很重要的。事实上,即便你的机器上被安装了木马程序,若没有你的IP地址,攻击者也是没有办法的,而保护IP地址的最好方法就是设置代理服务器。代理服务器能起到外部网络申请访问内部网络的中间转接作用,其功能类似于一个数据转发器,它主要控制哪些用户能访问哪些服务类型。当外部网络向内部网络申请某种网络服务时,代理服务器接受申请,然后它根据其服务类型、服务内容、被服务的对象、服务者申请的时间、申请者的域名范围等来决定是否接受此项服务,如果接受,它就向内部网络转发这项请求。

4、将防毒、防黑当成日常例性工作,定时更新防毒组件,将防毒软件保持在常驻状态,以彻底防毒。

5、由于黑客经常会针对特定的日期发动攻击,计算机用户在此期间应特别提高警戒。

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对我们的支持。如果你想了解更多相关内容请查看下面相关链接

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载