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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
#! /usr/bin/perl -wT
use Digest::SHA qw(sha256_hex);
use warnings;
use strict;
use Email::Valid;
use String::Random;
use CGI qw(param cookie);
use CGI::Carp qw(fatalsToBrowser);
delete @ENV{qw(IFS PATH CDPATH BASH_ENV)};
sub escape_arobase {
my $mailaddress = shift;
my $arobase = '@';
my $escarobase = q{\@};
my $escapedmailaddress = $mailaddress;
$escapedmailaddress =~ s/$arobase/$escarobase/;
return $escapedmailaddress;
}
sub untaint_cgi_filename {
my $filename = shift;
if ($filename =~ /^([-\@\w.\/]+)$/) {
#data untainted
$filename = $1;
}
else {
die "$!";
}
chomp $filename;
return $filename;
}
sub notif_if_defined{
my $notif = shift;
if (defined $notif){
return $notif;
}
}
my $PASSWD_HASH = q{password_hash_goes_here};
my $cgi_query_get = CGI->new;
my $PASSWD = $cgi_query_get->param('password');
if ( sha256_hex($PASSWD) eq $PASSWD_HASH and $ENV{'REQUEST_METHOD'} eq 'POST'){
$ENV{'PATH'}='/usr/bin';
my $HTML_CONTENT_TYPE_HEADER = 'Content-type: text/html';
my $HTML_CHARSET = '<meta http-equiv="content-type" content="text/html;
charset=utf-8">',"\n",'<meta charset="UTF-8">',"\n";
my $HTML_CSS = '<link rel="stylesheet" type="text/css"
href="/gpigeon.css">';
my $mymailaddr = q{your_mail_address_goes_here};
my $mymailaddr_password = q{your_mail_address_password_goes_here};
my $mymail_smtp = q{smtp_domain_goes_here};
my $mymail_smtport = q{smtp_port_goes_here};
my $mymail_gpgid = q{gpgid_goes_here};
my $myescapedmailaddr = escape_arobase($mymailaddr);
my @text_strings = ('La suppression a réussi !',
'L'adresse',
'est valide !',
'n'est pas valide !',
'sed "s/Inconnu', # displays on main page table when supposed sender isn't identified
'La longueur du message doit être inférieure à 10000 charactères.',
'Formulaire d'envoi de messages GPG', # title for generated links
'Rentrez votre message ci-dessous, ',
'M'envoyer le message',
'Lien généré pour', #displays if link gen is successful
'lien formulaire gpg', # mail subject when clicking a mailto: link in table
'Ton lien est', # message when clicking a mailto: link in table
'Supprimer', # text on button for deleting links
'Mince! Je ne peux pas ouvrir', # message when file opening fails
'GPIGEON.CGI: mails GPG pour le non-initié.', # main page title!
'Salut et bienvenue.', # a greeting at the top of the main page.
'Se déconnecter', # disconnect button text on main page
'Actualiser la page', # refresh button text
'Générer lien', #link generation button text
"Liens générés pour <b>$mymailaddr</b>:", # label above links table
'Supprimer tous les liens', # delete all links button text
'Lien', # first table header, 'Link'
'Pour', # second table header, 'For'
'Suppression', # third table header, 'Delete'
'La suppression a échoué. Voici la cause: '
);
my $psswd_formfield = '<input type="hidden" name="password" value="' . $cgi_query_get->param('password') . '">',"\n";
my $SRV_NAME = $ENV{'SERVER_NAME'};
my ($notif_de_creation, $notif_mail_valide, $notif_suppression) = undef;
my @table_des_liens_crees = ();
if (defined $cgi_query_get->param('supprlien')){
my $pending_deletion = $cgi_query_get->param('supprlien');
my $relpath_todelete = "./l/$pending_deletion";
if (unlink untaint_cgi_filename($relpath_todelete)){
$notif_suppression='<span style="color:green">'.$text_strings[0].'</span>';
}
else {
$notif_suppression='<span style="color:red">'.$text_string[24].
$relpath_todelete.':'.$!.'</span>';
}
}
if (defined $cgi_query_get->param('supprtout')){
opendir my $dir_handle, './l' or die "Can't open ./l: $!";
while (readdir $dir_handle) {
if ($_ ne '.' and $_ ne '..'){
my $relpath_todelete = "./l/$_";
unlink untaint_cgi_filename($relpath_todelete) or die "$!";
$notif_suppression='<span style="color:green">'.
$text_strings[0] .'</span>';
}
}
closedir $dir_handle;
}
if (defined $cgi_query_get->param('mail')){
my $entered_mail_addr = scalar $cgi_query_get->param('mail');
if ( Email::Valid->address($entered_mail_addr) ){
$notif_mail_valide = "<span style='color:green'>$text_strings[1]
$entered_mail_addr $text_strings[2]</span>";
my $escaped_entered_mail_addr = escape_arobase($entered_mail_addr);
my $random_mailform_fn_str = String::Random->new;
my @mailform_fn_str_buffer = ();
for (1..5){
push @mailform_fn_str_buffer,
$random_mailform_fn_str->randregex('\w{1,15}[0-9]{1,15}');
}
my $mailform_fn_str_buffer_nospace = join('',@mailform_fn_str_buffer);
my $GENERATED_FORM_FILENAME =
"$mailform_fn_str_buffer_nospace.cgi";
my $MAILFORM_LINK = "http://$SRV_NAME/cgi-bin/l/$GENERATED_FORM_FILENAME";
my $MAILFORM_RELPATH = "./l/$GENERATED_FORM_FILENAME";
if (open my $mailform_fh, ">", $MAILFORM_RELPATH){
print $mailform_fh '#! /usr/bin/perl -wT',"\n\n",
' my $demandeur_du_lien = q{', $entered_mail_addr
, '};', "\n",
'delete @ENV{qw(IFS PATH CDPATH BASH_ENV)};', "\n",
'$ENV{\'PATH\'}="/usr/bin";',
'use warnings;', "\n",
'use strict;',"\n",
'use GPG;',"\n",
'use Net::SMTP;',"\n",
'use Net::SMTPS;',"\n",
'use CGI::Carp qw(fatalsToBrowser);',
'use CGI qw(param cookie);', "\n",
'my $cgi_query_get = CGI->new;', "\n",
'my $smtp = Net::SMTPS->new(\''. $mymail_smtp .'\', Port =>
\''. $mymail_smtport .'\',
doSSL => \'ssl\', Debug_SSL => 0);', "\n",
'my ($msg, $enc_msg, $error_processing_msg) = undef;', "\n",
'if (defined $cgi_query_get->param(\'msg\') and $ENV{\'REQUEST_METHOD\'} eq \'POST\'){',"\n",
' $msg = $cgi_query_get->param(\'msg\');', "\n",
' $msg =~ tr/\r//d;', "\n",
' if (length $msg gt 10000){', "\n",
' $error_processing_msg = q{<span style="color:red"><b>La longueur du message doit être inférieure à 10000 charactères.</b></span>};', "\n",
' }', "\n",
' my $gpg = new GPG(gnupg_path => "/usr/bin", homedir =>
"/usr/share/www-data/.gnupg/");', "\n",
' $enc_msg = $gpg->encrypt("De la part de " .
$demandeur_du_lien . ":\n". $msg, \'0x'. $mymail_gpgid .'\') or die
$gpg->error();', "\n",
' $smtp->auth(\''. $mymailaddr .'\', \''.
$mymailaddr_password .'\')
or die;', "\n",
' $smtp->mail(\''. $mymailaddr .'\') or die "Net::SMTP module has broke:
$!.";', "\n",
'if ($smtp->to(\''. $mymailaddr .'\')){', "\n",
'$smtp->data();', "\n",
'$smtp->datasend("To: '. $myescapedmailaddr .'\n");', "\n",
'$smtp->datasend("\n");', "\n",
'$smtp->datasend("$enc_msg\n");', "\n",
'$smtp->dataend();', "\n",
'unlink "../' . $MAILFORM_RELPATH . '";', "\n",
'print "Location: /gpigeon/merci/index.html\n\n";', "\n",
'}', "\n",
'else {', "\n",
'die $smtp->message();', "\n",
'}', "\n",
'}', "\n",
'print "Content-type: text/html", "\n\n";', "\n",
'print qq{<!DOCTYPE html>', "\n",
'<html>', "\n",
' <head>', "\n",
' <link rel="icon" sizes="48x48" ',"\n",
'type="image/ico" href="/gpigeon/favicon.ico">', "\n",
$HTML_CSS, "\n",
$HTML_CHARSET, "\n",
'<title>Formulaire ', "\n",
'd\'envoi de message GPG</title>',"\n",
' </head>', "\n",
' <body>', "\n",
' <p>'. $text_strings[7] . '<b>'
.$escaped_entered_mail_addr .'</b> :</p>', "\n",
' <form method="POST">', "\n",
' <textarea "', "\n",
'wrap="off" cols="50" rows="30" name="msg"
required></textarea>', "\n",
'<br>', "\n",
'$error_processing_msg', "\n",
'<br>', "\n",
'<input type="submit"
value="'. $text_strings[8] .'">', "\n",
' </form>', "\n",
' </body>', "\n",
'</html>};';
close $mailform_fh;
chmod(0755,$MAILFORM_RELPATH);
$notif_de_creation="<span style=\'color:green\'>$text_strings[9] $entered_mail_addr</span><br><a href=\'$MAILFORM_LINK\'>$MAILFORM_LINK</a>";
}
else{
close $mailform_fh and die "cant open $MAILFORM_RELPATH: $!";
}
}
else{
$notif_mail_valide = "<span style='color:red'>$text_strings[1]
$entered_mail_addr $text_strings[3].</span>";
}
}
# ici on ouvre le dossier /var/www/cgi/cgi-bin/l qui contient les
# formulaires de contacts afin de lister son contenu
opendir my $dir_handle, './l' or die "Can't open ./l: $!";
while (readdir $dir_handle) {
if ($_ ne '.' and $_ ne '..'){
my $fichier_formu_mail = $_;
my $demandeur_du_lien = undef;
if (open my $fh_formu_mail , '<', "./l/$fichier_formu_mail"){
# le demandeur du lien est sur la 4ième ligne, d'où le 1..4
for (1..4){
$demandeur_du_lien = readline $fh_formu_mail;
$demandeur_du_lien =~ s/q\{(.*?)\}//i;
$demandeur_du_lien = $1;
}
close $fh_formu_mail;
if (not defined $demandeur_du_lien){
$demandeur_du_lien = $text_strings[4];
}
push @table_des_liens_crees, '<tr>',"\n",
"\t<td><a href='/cgi-bin/l/$fichier_formu_mail'>ici</a></td>", "\n",
"\t<td><a
href='mailto:$demandeur_du_lien?subject=$text_strings[10]",
"gpg&body=$text_strings[11] http://$SRV_NAME/cgi-bin/l/$fichier_formu_mail'>$demandeur_du_lien</a></td>", "\n",
'<td>
<form method="POST">
<input type="hidden" name="supprlien"
value="'.$fichier_formu_mail.'">
<input type="hidden" name="password"
value="'.$cgi_query_get->param('password').'">
<input type="submit" value="'. $text_strings[12] .'">
</form>
</td>', "\n",
'</tr>';
}
else {
close $fh_formu_mail;
die "Content-type: text/plain", "\n\n",
"$text_strings[13] $fichier_formu_mail: $!";
}
}
}
closedir $dir_handle;
print $HTML_CONTENT_TYPE_HEADER,"\n\n",
'<!DOCTYPE html>', "\n",
'<html>', "\n",
'<head>', "\n",
'<link rel="icon" sizes="48x48" ',"\n",
'type="image/ico" href="/gpigeon/favicon.ico">', "\n",
$HTML_CSS, "\n",
$HTML_CHARSET, "\n",
'<title>'. $text_strings[14] .'</title>', "\n",
'</head>', "\n",
'<body>', "\n",
'<p>'. $text_strings[15] .'</p>', "\n",
'<form method="POST">', "\n",
'<input type="hidden" name="password" value="0">', "\n",
'<input type="submit" value="'. $text_strings[16] .'">', "\n",
'</form>', "\n",
'<form method="POST">', "\n",
$psswd_formfield,
' <input type="submit" value="'. $text_strings[17] .'">', "\n",
'</form>', "\n",
'<hr>', "\n",
'<br>', "\n",
'<form method="POST">', "\n",
$psswd_formfield,
'Mail de la personne:<br>', "\n",
'<input tabindex="1" type="text" name="mail" maxlength="120">', "\n",
'<input tabindex="2" type="submit" value="'.
$text_strings[18] .'">', "\n",
'</form>', "\n",
notif_if_defined($notif_mail_valide), '<br>', "\n",
notif_if_defined($notif_de_creation),
'<hr>', "\n",
'<p>'. $text_strings[19] .'</p>', "\n",
'<form method="POST">', "\n",
$psswd_formfield,
'<input type="hidden" name="supprtout">', "\n",
'<input type="submit" value="'. $text_strings[20] .'">', "\n",
'</form>', "\n",
notif_if_defined($notif_suppression),
'<table>', "\n",
'<tr>', "\n",
'<th>'. $text_strings[21] .'</th>', "\n",
'<th>'. $text_strings[22] .'</th>', "\n",
'<th>'. $text_strings[23] .'</th>', "\n",
'</tr>', "\n",
"@table_des_liens_crees", "\n",
'</table>', "\n",
'</body>', "\n",
'</html>';
}
else {
print 'Location: /gpigeon/index.html', "\n\n";
}
|