Server IP : 103.119.228.120 / Your IP : 18.227.52.248 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/ssl/local/ssl/local/ssl/local/ssl/local/share/perl5/Net/OSCAR/Callbacks/4/ |
Upload File : |
package Net::OSCAR::Callbacks; BEGIN { $Net::OSCAR::Callbacks::VERSION = '1.928'; } use strict; use warnings; use vars qw($connection $snac $conntype $family $subtype $data $reqid $reqdata $session $protobit %data); use Socket qw(inet_ntoa); sub { my $sender = Net::OSCAR::Screenname->new(\$data{screenname}); my $sender_info = $session->{userinfo}->{$sender} ||= {}; if($data{channel} == 1) { # Regular IM %data = protoparse($session, "standard_IM_footer")->unpack($data{message_body}); # Typing status my $typing_status = 0; if(exists($data{supports_typing_status})) { $sender_info->{typing_status} = 1; } else { delete $sender_info->{typing_status}; } # Buddy icon my $new_icon = 0; if(exists($data{icon_data}->{icon_length}) and $session->{capabilities}->{buddy_icons}) { if(!exists($sender_info->{icon_timestamp}) or $data{icon_data}->{icon_timestamp} > $sender_info->{icon_timestamp} or $data{icon_data}->{icon_checksum} != $sender_info->{icon_checksum} ) { $new_icon = 1; } } $sender_info->{$_} = $data{icon_data}->{$_} foreach keys %{$data{icon_data}}; $session->callback_new_buddy_icon($sender, $sender_info) if $new_icon; # Okay, finally we're done with silly processing of embedded flags $session->callback_im_in($sender, $data{message}, exists($data{is_automatic}) ? 1 : 0); } elsif($data{channel} == 2) { %data = protoparse($session, "rendezvous_IM")->unpack($data{message_body}); my $type = OSCAR_CAPS_INVERSE()->{$data{capability}}; $session->{rv_proposals}->{$data{cookie}} ||= {}; my $rv = $session->{rv_proposals}->{$data{cookie}}; if($data{status} eq "cancel") { $connection->log_print(OSCAR_DBG_DEBUG, "Peer rejected proposal."); $session->callback_rendezvous_reject($data{cookie}); $session->delconn($rv->{connection}) if $rv->{connection}; delete $session->{rv_proposals}->{$data{cookie}}; return; } elsif($data{status} eq "accept") { $connection->log_print(OSCAR_DBG_DEBUG, "Peer accepted proposal."); $rv->{accepted} = 1; delete $session->{rv_proposals}->{$data{cookie}}; $session->callback_rendezvous_accept($data{cookie}); return; } if(!$type) { $connection->log_print_cond(OSCAR_DBG_INFO, sub { "Unknown rendezvous type: ", hexdump($data{capability}) }); $session->rendezvous_reject($data{cookie}); return; } if(!$rv->{cookie}) { $rv->{type} = $type; $rv->{sender} = $sender; $rv->{recipient} = $session->{screenname}; $rv->{cookie} = $data{cookie}; } elsif($rv->{peer} ne $sender) { $connection->log_printf(OSCAR_DBG_WARN, "$sender tried to send a rendezvous which was previously sent by %s; discarding.", $rv->{peer}); return; } if($type eq "chat") { my %svcdata = protoparse($session, "chat_invite_rendezvous_data")->unpack($data{svcdata}); # Ignore invites for chats that we're already in if(not grep { $_->{url} eq $svcdata{url} } grep { $_->{conntype} == CONNTYPE_CHAT } @{$session->{connections}} ) { # Extract chat ID from char URL $rv->{chat_url} = $svcdata{url}; $svcdata{url} =~ /-.*?-(.*?)(\0*)$/; my $chat = $1; $chat =~ s/%([0-9A-Z]{1,2})/chr(hex($1))/eig; $rv->{name} = $chat; $rv->{exchange} = $svcdata{exchange}; $session->callback_chat_invite($sender, $data{invitation_msg}, $chat, $svcdata{url}); } } elsif($type eq "filexfer") { # If proposal is being revised, no svcdata will be present. my %svcdata; if($data{svcdata}) { %svcdata = protoparse($session, "file_transfer_rendezvous_data")->unpack($data{svcdata}); $rv->{direction} = "receive"; $rv->{accepted} = 0; $rv->{filenames} = $svcdata{files}; $rv->{total_size} = $svcdata{size}; $rv->{file_count} = $svcdata{file_count}; $rv->{using_proxy} = 0; $rv->{tried_proxy} = 0; $rv->{tried_listen} = 0; $rv->{tried_connect} = 0; } elsif($rv->{connection}) { $session->delconn($rv->{connection}); delete $rv->{connection}; } $rv->{port} = $data{port}; $rv->{external_ip} = $data{client_external_ip} ? inet_ntoa(pack("N", $data{client_external_ip})) : ""; $rv->{ip} = $data{client_1_ip} ? inet_ntoa(pack("N", $data{client_1_ip})) : $rv->{external_ip}; $rv->{ft_state} = "unconnected"; $connection->log_printf(OSCAR_DBG_DEBUG, "Got proposal %s for %s:%d (external %s)", hexdump($rv->{cookie}), $rv->{ip}, $rv->{port}, $rv->{external_ip}); } elsif($type eq "sendlist") { my %svcdata = protoparse($session, "buddy_list_transfer_rendezvous_data")->unpack($data{svcdata}); delete $session->{rv_proposals}->{$data{cookie}}; my $list = bltie(); foreach my $group (@{$svcdata{group}}) { $list->{$group->{name}} = []; my $grouplist = $list->{$group->{name}}; foreach my $buddy (@{$group->{buddies}}) { push @$grouplist, Net::OSCAR::Screenname->new(\$buddy->{name}); } } $session->callback_buddylist_in($sender, $list); } else { $connection->log_print(OSCAR_DBG_INFO, "Unsupported rendezvous type '$type'"); $session->rendezvous_reject($data{cookie}); } } };