Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 216.73.216.86
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3.10 /
curses /
__pycache__ /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.cpython-310.pyc
1.81
KB
-rw-r--r--
2025-02-22 06:16
ascii.cpython-310.pyc
3.53
KB
-rw-r--r--
2025-02-22 06:16
has_key.cpython-310.pyc
4.79
KB
-rw-r--r--
2025-02-22 06:16
panel.cpython-310.pyc
226
B
-rw-r--r--
2025-02-22 06:16
textpad.cpython-310.pyc
5.85
KB
-rw-r--r--
2025-02-22 06:16
Save
Rename
o �*�g� � @ sZ d Z ddlZddlZdd� ZG dd� d�Zedkr+dd � Ze�e�Ze d e e�� dS dS )z:Simple textbox editing widget with Emacs-like keybindings.� Nc C s� | � |d |tj|| d � | �||d tj|| d � | �||d tj|| d � | � |d |tj|| d � | �||tj� | �||tj� | �||tj� | �||tj � dS )z^Draw a rectangle with corners at the provided upper-left and lower-right coordinates. � N) �vline�curses� ACS_VLINE�hline� ACS_HLINE�addch�ACS_ULCORNER�ACS_URCORNER�ACS_LRCORNER�ACS_LLCORNER)�win�uly�ulx�lry�lrx� r �%/usr/lib/python3.10/curses/textpad.py� rectangle s r c @ sL e Zd ZdZddd�Zdd� Zdd� Zd d � Zdd� Zd d� Z ddd�Z dS )�Textboxad Editing widget using the interior of a window object. Supports the following Emacs-like key bindings: Ctrl-A Go to left edge of window. Ctrl-B Cursor left, wrapping to previous line if appropriate. Ctrl-D Delete character under cursor. Ctrl-E Go to right edge (stripspaces off) or end of line (stripspaces on). Ctrl-F Cursor right, wrapping to next line when appropriate. Ctrl-G Terminate, returning the window contents. Ctrl-H Delete character backward. Ctrl-J Terminate if the window is 1 line, otherwise insert newline. Ctrl-K If line is blank, delete it, otherwise clear to end of line. Ctrl-L Refresh screen. Ctrl-N Cursor down; move down one line. Ctrl-O Insert a blank line at cursor location. Ctrl-P Cursor up; move up one line. Move operations do nothing if the cursor is at an edge where the movement is not possible. The following synonyms are supported where possible: KEY_LEFT = Ctrl-B, KEY_RIGHT = Ctrl-F, KEY_UP = Ctrl-P, KEY_DOWN = Ctrl-N KEY_BACKSPACE = Ctrl-h Fc C s. || _ || _| �� d| _d | _|�d� d S �Nr )r �insert_mode�_update_max_yx�stripspaces�lastcmd�keypad)�selfr r r r r �__init__+ s zTextbox.__init__c C s&