This repository has been archived by the owner on Aug 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
consulta_web_correo.php
296 lines (254 loc) · 8.91 KB
/
consulta_web_correo.php
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
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Formulario para enviar correo desde consulta web
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2005 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @link http://sivel.sf.net
* Acceso: CONSULTA PÚBLICA
*/
/**
* Formulario para enviar correo desde consulta web
*/
require_once 'HTML/QuickForm/Controller.php';
require_once 'HTML/QuickForm/Action/Display.php';
require_once 'HTML/QuickForm/Action/Next.php';
require_once 'HTML/QuickForm/Action/Back.php';
require_once 'HTML/QuickForm/Action/Jump.php';
require_once 'HTML/QuickForm/header.php';
require_once 'HTML/QuickForm/date.php';
require_once 'HTML/QuickForm/text.php';
require_once "misc.php";
require_once "aut.php";
require_once $_SESSION['dirsitio'] . '/conf.php';
require_once 'DB/common.php';
require_once 'Mail.php';
require_once 'Mail/mime.php';
require_once 'confv.php';
/**
* Responde a botón enviar
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público.
* @link http://sivel.sf.net/tec
*/
class AccionEnviaCorreo extends HTML_QuickForm_Action
{
/**
* Ejecuta acción
*
* @param object &$page Página
* @param string $actionName Acción
*
* @return void
*/
function perform(&$page, $actionName)
{
verifica_sin_CSRF($page->_submitValues);
encabezado_envia('Resultados');
/* El siguiente pedazo pretende evitar posibles DoS
(pueden ser distribuidos)
pero tambien impide que dos personas envien informacion dentro de un
lapso de cierto tiempo (3 s?). Si no se espera mucho publico para el
servicio puede resultar aceptable la limitación.
*/
$ultimo= $_SESSION['dirsitio'] . '/ultimoenvio.txt';
/* Manejo de archivos basado en ejemplo de
http://www.php.net/manual/en/function.fopen.php */
clearstatcache();
// prevent refresh from aborting file operations and hosing file
ignore_user_abort(true);
$tiempoact = time();
$tiempoult = 0;
$fh = fopen($ultimo, 'r+b');
if ($fh) {
// don't do anything unless lock is successful
if (flock($fh, LOCK_EX)) {
$tiempoult = fread($fh, 15);
rewind($fh);
fwrite($fh, $tiempoact);
fflush($fh);
ftruncate($fh, ftell($fh));
flock($fh, LOCK_UN);
} else {
echo "No pudo poner lock";
}
fclose($fh);
} else {
$fh = fopen($ultimo, 'w');
if ($fh) {
fwrite($fh, $tiempoact);
fclose($fh);
} else {
echo_esc("No pudo crear archivo $ultimo");
}
}
ignore_user_abort(false); // put things back to normal
if ($tiempoact-$tiempoult < 6) {
die("Por favor vuelva a intentar en unos segundos");
}
$cuerposinenc = escapeshellarg(var_post_escapa("correo", null, 5000));
//Evitamos inyección de encabezados
$cuerposinenc = str_replace("\r", "", $cuerposinenc);
$cuerposinenc = str_replace("\n", "", $cuerposinenc);
$key = $GLOBALS['PALABRA_SITIO'];
global $OPENSSL;
//formula con bin2hex para enviarlo en le cuerpo del mensaje
$adjuntoencriptado
= `/bin/echo $cuerposinenc | $OPENSSL bf -e -nosalt -k "$key"`;
$cuerpo = bin2hex(chop($adjuntoencriptado));
//formula sin bin2hex enviandolo como un adjunto
$indice = (int)var_post_escapa("indice", null, 10);
$recip1=$GLOBALS['receptor_correo'];
$oheaders = array();
$oheaders['To'] = $recip1;
$oheaders['From'] = $GLOBALS['emisor_correo'];
$oheaders['Subject']="Comentario Indice: $indice";
$ocorreo = Mail::factory('smtp', array('host' => 'localhost'));
if (PEAR::isError($ocorreo)) {
die($ocorreo->getMessage());
}
$r = $ocorreo->send($recip1, $oheaders, $cuerpo);
if (PEAR::isError($r)) {
die($r->getMessage());
}
$anno = @date("Y");
$mes = @date("m");
$dia = @date("d");
$hora = @date("H");
$minutos = @date("i");
$segundos = @date("s");
$text_message = "Hola " .
"\n\nEste mensaje es un comentario enviado desde el web \n";
$text_message .= "viene encriptado con openssl.\n";
$text_message .= "Vea instrucciones para desencriptar en
http://sivel.sourceforge.net/1.1/admin2.html#retroalimentacion\n";
$text_message .= "Dia: $dia-$mes-$anno, hora " .
"$hora:$minutos:$segundos\n";
$mime = new Mail_mime("\n");
if (PEAR::isError($mime)) {
die($mime->getMessage());
}
$mime->setTXTBody($text_message);
if (PEAR::isError($mime)) {
die($mime->getMessage());
}
$mime->addAttachment(
$adjuntoencriptado, 'application/octet-stream',
'adjunto-encriptado' . $anno . $mes . $dia, false
);
if (PEAR::isError($mime)) {
die($mime->getMessage());
}
$cuerpo_mime = $mime->get();
$mime_enc = $mime->headers($oheaders);
$r = $ocorreo->send($recip1, $mime_enc, $cuerpo_mime);
if (PEAR::isError($r)) {
die($r->getMessage());
}
echo "<p>Mensaje enviado. Gracias por su aporte.\n</p>";
echo $GLOBALS['pie_consulta_web_correo'];
pie_envia();
}
}
/**
* Formulario con correo.
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público.
* @link http://sivel.sf.net/tec
*/
class ConsultaWebCorreo extends HTML_QuickForm_Page
{
/**
* Constructora
*
* @return void
*/
function ConsultaWebCorreo()
{
$this->HTML_QuickForm_Page('consultaWebCorreo', 'post', '_self', null);
$this->addAction('envia', new AccionEnviaCorreo());
}
/**
* Construye formulario.
*
* @return object formulario
*/
function buildForm()
{
$this->_formBuilt = true;
$ubicacion = var_req_escapa("m_ubicacion", null, 200);
$indice = (int)var_req_escapa("caso_id", null, 200);
$descripcion = var_req_escapa("caso_memo", null, 5000);
$victimas = var_req_escapa("m_victimas", null, 200);
$tipificacion = var_req_escapa("m_tipificacion", null, 200);
$presponsables = var_req_escapa("m_presponsables", null, 200);
$e =& $this->addElement(
'header', null,
'Correo para complementar datos'
);
$sel =& $this->addElement(
'textarea', 'correo',
'Mensaje:'
);
$sel->updateAttributes(
array('wrap' => 'physical',
//'cols'=\"50\" rows=\"20\"
'onKeyDown' => 'textCounter(document.myForm.correo, ' .
'document.myForm.remLen1, 10000)',
'onKeyUp' => 'textCounter(document.myForm.correo, ' .
'document.myForm.remLen1, 10000)'
)
);
$sel->setRows(20);
$sel->setCols(50);
$sel->setValue(
'Indice: ' . $indice .
'Ubicación: ' . $ubicacion .
'Descripcion: ' . $descripcion .
'Responsables: ' . $presponsables .
'Victimas: ' . $victimas .
'Tipificacion: ' . $tipificacion
);
$sel =& $this->addElement('hidden', 'indice', $indice);
$opch = array();
$sel =& $this->createElement(
'submit',
$this->getButtonName('envia'), 'Enviar correo'
);
$opch[] =& $sel;
$this->addGroup($opch, null, '', ' ', false);
agrega_control_CSRF($this);
$this->setDefaultAction('envia');
}
}
/* No autenticamos porque pueden usarlo usuarios no autenticados */
$snru = nom_sesion();
if (!isset($_SESSION) || session_name()!=$snru) {
session_name($snru);
session_start();
}
$controla =& new HTML_QuickForm_Controller('Correo', false);
$correo = new ConsultaWebCorreo();
$controla ->addPage($correo);
$controla->addAction('display', new HTML_QuickForm_Action_Display());
$controla->addAction('jump', new HTML_QuickForm_Action_Jump());
$controla->addAction('process', new AccionEnviaCorreo());
encabezado_envia(
'Correo para Complementar Datos',
$GLOBALS['cabezote_consulta_web_correo']
);
$controla->run();
pie_envia($GLOBALS['pie_consulta_web_correo']);
?>