Linux ip-148-66-134-25.ip.secureserver.net 3.10.0-1160.119.1.el7.tuxcare.els10.x86_64 #1 SMP Fri Oct 11 21:40:41 UTC 2024 x86_64
Apache
: 148.66.134.25 | : 3.14.132.43
66 Domain
8.0.30
amvm
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
lib64 /
python2.7 /
Demo /
tkinter /
ttk /
[ HOME SHELL ]
Name
Size
Permission
Action
img
[ DIR ]
drwxr-xr-x
combo_themes.py
1.58
KB
-rw-r--r--
combo_themes.pyc
1.88
KB
-rw-r--r--
combo_themes.pyo
1.88
KB
-rw-r--r--
dirbrowser.py
2.65
KB
-rw-r--r--
dirbrowser.pyc
3.9
KB
-rw-r--r--
dirbrowser.pyo
3.9
KB
-rw-r--r--
listbox_scrollcmd.py
1.13
KB
-rw-r--r--
listbox_scrollcmd.pyc
1.56
KB
-rw-r--r--
listbox_scrollcmd.pyo
1.56
KB
-rw-r--r--
mac_searchentry.py
3.63
KB
-rw-r--r--
mac_searchentry.pyc
3.88
KB
-rw-r--r--
mac_searchentry.pyo
3.88
KB
-rw-r--r--
notebook_closebtn.py
2.47
KB
-rw-r--r--
notebook_closebtn.pyc
2.91
KB
-rw-r--r--
notebook_closebtn.pyo
2.91
KB
-rw-r--r--
plastik_theme.py
9.36
KB
-rw-r--r--
plastik_theme.pyc
7.36
KB
-rw-r--r--
plastik_theme.pyo
7.36
KB
-rw-r--r--
roundframe.py
5.47
KB
-rw-r--r--
roundframe.pyc
6.29
KB
-rw-r--r--
roundframe.pyo
6.29
KB
-rw-r--r--
theme_selector.py
1.92
KB
-rw-r--r--
theme_selector.pyc
2.81
KB
-rw-r--r--
theme_selector.pyo
2.81
KB
-rw-r--r--
treeview_multicolumn.py
4.15
KB
-rw-r--r--
treeview_multicolumn.pyc
5.35
KB
-rw-r--r--
treeview_multicolumn.pyo
5.35
KB
-rw-r--r--
ttkcalendar.py
8.12
KB
-rw-r--r--
ttkcalendar.pyc
9.55
KB
-rw-r--r--
ttkcalendar.pyo
9.55
KB
-rw-r--r--
widget_state.py
2.66
KB
-rw-r--r--
widget_state.pyc
3.33
KB
-rw-r--r--
widget_state.pyo
3.33
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dirbrowser.py
"""A directory browser using Ttk Treeview. Based on the demo found in Tk 8.5 library/demos/browse """ import os import glob import Tkinter import ttk def populate_tree(tree, node): if tree.set(node, "type") != 'directory': return path = tree.set(node, "fullpath") tree.delete(*tree.get_children(node)) parent = tree.parent(node) special_dirs = [] if parent else glob.glob('.') + glob.glob('..') for p in special_dirs + os.listdir(path): ptype = None p = os.path.join(path, p).replace('\\', '/') if os.path.isdir(p): ptype = "directory" elif os.path.isfile(p): ptype = "file" fname = os.path.split(p)[1] id = tree.insert(node, "end", text=fname, values=[p, ptype]) if ptype == 'directory': if fname not in ('.', '..'): tree.insert(id, 0, text="dummy") tree.item(id, text=fname) elif ptype == 'file': size = os.stat(p).st_size tree.set(id, "size", "%d bytes" % size) def populate_roots(tree): dir = os.path.abspath('.').replace('\\', '/') node = tree.insert('', 'end', text=dir, values=[dir, "directory"]) populate_tree(tree, node) def update_tree(event): tree = event.widget populate_tree(tree, tree.focus()) def change_dir(event): tree = event.widget node = tree.focus() if tree.parent(node): path = os.path.abspath(tree.set(node, "fullpath")) if os.path.isdir(path): os.chdir(path) tree.delete(tree.get_children('')) populate_roots(tree) def autoscroll(sbar, first, last): """Hide and show scrollbar as needed.""" first, last = float(first), float(last) if first <= 0 and last >= 1: sbar.grid_remove() else: sbar.grid() sbar.set(first, last) root = Tkinter.Tk() vsb = ttk.Scrollbar(orient="vertical") hsb = ttk.Scrollbar(orient="horizontal") tree = ttk.Treeview(columns=("fullpath", "type", "size"), displaycolumns="size", yscrollcommand=lambda f, l: autoscroll(vsb, f, l), xscrollcommand=lambda f, l:autoscroll(hsb, f, l)) vsb['command'] = tree.yview hsb['command'] = tree.xview tree.heading("#0", text="Directory Structure", anchor='w') tree.heading("size", text="File Size", anchor='w') tree.column("size", stretch=0, width=100) populate_roots(tree) tree.bind('<<TreeviewOpen>>', update_tree) tree.bind('<Double-Button-1>', change_dir) # Arrange the tree and its scrollbars in the toplevel tree.grid(column=0, row=0, sticky='nswe') vsb.grid(column=1, row=0, sticky='ns') hsb.grid(column=0, row=1, sticky='ew') root.grid_columnconfigure(0, weight=1) root.grid_rowconfigure(0, weight=1) root.mainloop()
Close