⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
usermin
/
mailbox
/
View File Name :
add_address.cgi
#!/usr/bin/perl # add_address.cgi # Add an address from an email to the user's address book use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; our %in; require './mailbox-lib.pl'; &ReadParse(); # Check for a duplicate my @addrs = &list_addresses(); my $found; foreach my $a (@addrs) { if (lc($a->[0]) eq lc($in{'addr'})) { $found = $a; } } if (!$found) { &create_address($in{'addr'}, $in{'name'}); } my @sub = split(/\0/, $in{'sub'}); my $subs = join("", map { "&sub=$_" } @sub); my $qid = &urlize($in{'id'}); &redirect("view_mail.cgi?id=$qid&folder=$in{'folder'}$subs");