www.Hacking-Romania.com
Hacking, gaby hacker team, programe hack, radmin hack, hi5 hack, hack the west, hacking romania, hacking stuff, hacking tools, 1 hack, 1st hacks, 2 hack, 2 hacks, 3 hack, 3 hacks, 3000 hack, 3004 hack, 4 hack, 4 hacks, 55 hack, 6 hack, 6 hacks, 7 hack, 7 hacks, 9 hack, 9dragons hack, a hack, adventure quest hack, aim hack, alz hack, and hacks, best hack, blue hack, bots hack, bots hacks, buy hack, cabal online hack, chaos hacks, cheat engine hack, cheat hack, cheats and hacks, cheats hacks, city hack, club hack, combo hack, conquer hacks, conquer online hack, conquer online hacks, conquer speed hack, conquiztador hack, counter strike 1.6 hack, damage hack, de hack, download hack, download hack for, dragonfable hack, dragonfable hacks, drakkarious hack, exp hack, flyff hack, free hack, free hacks, game hack, game hacks, garena exp hack, gladiatus hack, gm hack, gold hack, gunz hack, hack, hack 5, hack a pc, hack a site, hack a website, hack blog, hack conquer, hack counter strike, hack crack, hack cs, hack cs 1.6, hack dvd, hack email, hack forum, hack hunter, hack id, hack info, hack it, hack mess, hack muonline, hack net, hack password, hack passwords, hack pc, hack pdf, hack programs, hack site, hack sites, hack soft, hack software, hack team, hack the game, hack this, hack website, hack windows xp, hack world, hack xp, hacked, hacking, hacking game, hacking programs, hacking software, hacking tutorials, hacks, how hack, how to hack, icon hack, last chaos hack, last chaos hacks, life hack, lineage 2 hack, lineage 2 hacks, linux hack, lvl hack, maplestory hacks, mobile hack, multi hack 3.0, mybrute hack, naruto arena hack, naruto arena hacks, one hit kill hack, online hacks, perfect world hacks, pool hack, programe hack, resolution hack, resource hack, roll hack, royal hack, silkroad hack, source hack, speed hack, speed hacks, super hack, the west hack, warrock hack, warrock hacks, web hack, xpango hack, lockerz forum
Lista Forumurilor Pe Tematici
www.Hacking-Romania.com | Reguli | Inregistrare | Login

POZE WWW.HACKING-ROMANIA.COM

Nu sunteti logat.
Nou pe simpatie:
sexyindianca pe Simpatie
Femeie
24 ani
Ilfov
cauta Barbat
24 - 53 ani
www.Hacking-Romania.com / Hacking T00ls / 200E PENTRU A FACE UN PROGRAM in limbaj c sau asm !!  
Autor
Mesaj Pagini: 1
eueu
Pe lista neagra

Inregistrat: acum 15 ani
Postari: 7
PROGRAMUL  trebue sa fie asemanator cu prorat sau vnc fara a avea functi de download sau modifica fisierele de pe calculatorul victimei.

Important este ca servarul sa nu fie detectat de nici un ativirus!

Si trebue sa fie scris neaparat in limbaj c sau asm!
Plata se face prin orce metoda ,chiar credit card ,moneybokers, sau posta!

Daca persoana chiar stie sa explice ce face  fiecare linie din codul programului  poate nogocia pentru suma pe care o doreste!

ID-ul meu este :  "cristicristyc" sau mail E-mail; fara ghilimele !

Va astept cu buzz pe mess cu "precizarea vreau sa te ajut sa faci acel program" pentru ca am foarte multi necunoscuti pe adresa asta de mes si nu stiu de unde vine buzul si in ce scop !


pus acum 15 ani
   
eueu
Pe lista neagra

Inregistrat: acum 15 ani
Postari: 7
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>


///   CLIENT   


int main(int argc, char *argv[])
{
    printf("This is the client program\n";

    int sockfd;
    int len, rc ;
    struct sockaddr_in address;
    int result;
    char ch = 'A';

   //Create socket for client.
    sockfd = socket(PF_INET, SOCK_STREAM, 0);
    if (sockfd == -1) {
        perror("Socket create failed.\n" ;
        return -1 ;
    }
   
    //Name the socket as agreed with server.
    address.sin_family = AF_INET;
    address.sin_addr.s_addr = inet_addr("127.0.0.1";
    address.sin_port = htons(7734);
    len = sizeof(address);

    result = connect(sockfd, (struct sockaddr *)&address, len);
    if(result == -1)
    {
        perror("Error has occurred";
        exit(-1);
    }

    while ( ch < 'Y') {

        //Read and write via sockfd
        rc = write(sockfd, &ch, 1);
        printf("write rc = %d\n", rc ) ;
        if (rc == -1) break ;
       
        read(sockfd, &ch, 1);
        printf("Char from server = %c\n", ch);
        //if (ch == 'A') sleep(5) ;  // pause 5 seconds
    }
    close(sockfd);

    exit(0);
}


si servarul::




#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <unistd.h>

///   SERVER   

int main(int argc, char *argv[])
{
    //Declaring process variables.
    int server_sockfd, client_sockfd;
    int server_len ;
    int rc ;
    unsigned client_len;
    struct sockaddr_in server_address;
    struct sockaddr_in client_address;

    //Remove any old socket and create an unnamed socket for the server.
    server_sockfd = socket(AF_INET, SOCK_STREAM, 0);
    server_address.sin_family = AF_INET;
    server_address.sin_addr.s_addr = htons(INADDR_ANY);
    server_address.sin_port = htons(7734) ;
    server_len = sizeof(server_address);

    rc = bind(server_sockfd, (struct sockaddr *) &server_address, server_len);
    printf("RC from bind = %d\n", rc ) ;
   
    //Create a connection queue and wait for clients
    rc = listen(server_sockfd, 5);
    printf("RC from listen = %d\n", rc ) ;

    client_len = sizeof(client_address);
    client_sockfd = accept(server_sockfd, (struct sockaddr *) &client_address, &client_len);
    printf("after accept()... client_sockfd = %d\n", client_sockfd) ;

    while(1)
    {
        char ch;
        printf("server waiting\n";

        //Accept a connection
        //client_len = sizeof(client_address);
        //client_sockfd = accept(server_sockfd, (struct sockaddr *) &client_address, &client_len);
        //printf("after accept()... client_sockfd = %d\n", client_sockfd) ;
        //Read write to client on client_sockfd

        rc = read(client_sockfd, &ch, 1);
        printf("RC from read = %d\n", rc ) ;       
        if (ch=='X') break ;
        ch++;
        write(client_sockfd, &ch, 1);
    }

    printf("server exiting\n";

    //close(client_sockfd);
    close(client_sockfd);
    return 0;
}


pus acum 15 ani
   
Pagini: 1  

Mergi la