Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
__pycache__ /
Delete
Unzip
Name
Size
Permission
Date
Action
_pyrsistent_version.cpython-311.pyc
183
B
-rw-r--r--
2025-01-15 04:26
deb822.cpython-311.pyc
433
B
-rw-r--r--
2025-01-15 04:26
debconf.cpython-311.pyc
9.8
KB
-rw-r--r--
2025-01-15 04:26
distro_info.cpython-311.pyc
23.35
KB
-rw-r--r--
2025-01-15 04:26
jsonpatch.cpython-311.pyc
37.58
KB
-rw-r--r--
2025-01-15 04:26
jsonpointer.cpython-311.pyc
14.92
KB
-rw-r--r--
2025-01-15 04:26
six.cpython-311.pyc
45.29
KB
-rw-r--r--
2025-01-15 04:26
Save
Rename
� q�Rb�* � �F � d Z ddlmZ dZdZdZdZ ddlmZ e Z d� Zn# e$ r e Zd � ZY nw xY w dd lmZmZ n# e$ r dd lmZmZ Y nw xY wddlmZmZ ddlZddlZ e� � Zdd�Zefd�Zd� Z G d� de� � Z G d� de� � Z G d� de� � Zd� Zd� Z dS )z7 Identify specific nodes in a JSON document (RFC 6901) � )�unicode_literalsu Stefan Kögl <stefan@skoegl.net>z2.3z2https://github.com/stefankoegl/python-json-pointerzModified BSD License)�izipc �, � | � d� � S )N�raw_unicode_escape)�encode��us �-/usr/lib/python3/dist-packages/jsonpointer.py�<lambda>r / s � �1�8�8�$8�9�9� � c � � | S �N� r s r r r 2 s � �1� r )�Mapping�Sequence)�tee�chainNTc �N � t |� � }|� | ||� � S )a� Resolves pointer against doc and sets the value of the target within doc. With inplace set to true, doc is modified as long as pointer is not the root. >>> obj = {'foo': {'anArray': [ {'prop': 44}], 'another prop': {'baz': 'A string' }}} >>> set_pointer(obj, '/foo/anArray/0/prop', 55) == {'foo': {'another prop': {'baz': 'A string'}, 'anArray': [{'prop': 55}]}} True >>> set_pointer(obj, '/foo/yet another prop', 'added prop') == {'foo': {'another prop': {'baz': 'A string'}, 'yet another prop': 'added prop', 'anArray': [{'prop': 55}]}} True >>> obj = {'foo': {}} >>> set_pointer(obj, '/foo/a%20b', 'x') == {'foo': {'a%20b': 'x' }} True )�JsonPointer�set)�doc�pointer�value�inplaces r �set_pointerr A s'