⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.13
Server IP:
109.199.105.153
Server:
Linux connect.inboxifs.com 5.15.0-152-generic #162-Ubuntu SMP Wed Jul 23 09:48:42 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
usermin
/
mailbox
/
Edit File: slideshow.cgi
#!/usr/bin/perl # Show a page containing all image attachments use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; our (%text, %in); require './mailbox-lib.pl'; # Get the mail &ReadParse(); my @folders = &list_folders_sorted(); my ($folder) = grep { $_->{'index'} == $in{'folder'} } @folders; $folder || &error($text{'view_efolder'}); my $mail = &mailbox_get_mail($folder, $in{'id'}, 0); $mail || &error($text{'view_egone'}); &parse_mail($mail); my @sub = split(/\0/, $in{'sub'}); my $subs = join("", map { "&sub=".&urlize($_) } @sub); foreach my $s (@sub) { # We are looking at a mail within a mail .. &decrypt_attachments($mail); my $amail = &extract_mail($mail->{'attach'}->[$s]->{'data'}); &parse_mail($amail); $mail = $amail; } &decrypt_attachments($mail); # Find image attachments my @attach = @{$mail->{'attach'}}; @attach = &remove_body_attachments($mail, \@attach); @attach = &remove_cid_attachments($mail, \@attach); my @iattach = grep { $_->{'type'} =~ /^image\// } @attach; &popup_header($text{'slide_title'}); my $n = 0; foreach my $a (@iattach) { # Navigation links print "<hr>" if ($n > 0); print "<a name=image$n></a>\n"; my @links; if ($a eq $iattach[0]) { push(@links, $text{'slide_prev'}); } else { push(@links, "<a href='#image".($n-1)."'>". "$text{'slide_prev'}</a>"); } if ($a eq $iattach[$#iattach]) { push(@links, $text{'slide_next'}); } else { push(@links, "<a href='#image".($n+1)."'>". "$text{'slide_next'}</a>"); } push(@links, "<b>$a->{'filename'}</b>") if ($a->{'filename'}); print &ui_links_row(\@links),"<br>\n"; # Actual image print "<img src='detach.cgi?id=".&urlize($in{'id'}). "&folder=$in{'folder'}&attach=$a->{'idx'}$subs'><br>\n"; $n++; } &popup_footer();
Simpan