Hackfut Security File Manager
Current Path:
/etc
etc
/
📁
..
📄
.etc.version
(5 B)
📄
DIR_COLORS
(4.33 KB)
📄
DIR_COLORS.256color
(5.02 KB)
📄
DIR_COLORS.lightbgcolor
(4.02 KB)
📁
ImageMagick
📄
aliases
(1.48 KB)
📄
aliases.db
(12 KB)
📁
alternatives
📁
apache2
📄
at.deny
(1 B)
📄
backupmxhosts
(0 B)
📁
bash_completion.d
📄
bashrc
(3.72 KB)
📁
cl.nodejs
📁
cl.php.d
📁
cl.python
📁
cl.selector
📁
cpanel
📁
cron.daily
📁
default
📄
domainusers
(9.13 KB)
📄
environment
(0 B)
📁
fonts
📁
gcrypt
📁
ghostscript
📄
group
(688 B)
📄
host.conf
(9 B)
📄
hosts
(375 B)
📄
inputrc
(942 B)
📄
ld.so.cache
(48.77 KB)
📄
ld.so.conf
(28 B)
📁
ld.so.conf.d
📄
localtime
(180 B)
📄
lynx-site.cfg
(66 B)
📄
lynx.cfg
(140.81 KB)
📄
lynx.lss
(3.5 KB)
📁
mail
📄
mail.rc
(1.86 KB)
📄
mailcap
(272 B)
📄
mailhelo
(3.44 KB)
📄
mailips
(2.37 KB)
📄
mime.types
(42.57 KB)
📄
my.cnf
(184 B)
📄
nsswitch.conf
(1.65 KB)
📄
odbc.ini
(0 B)
📄
odbcinst.ini
(575 B)
📁
openldap
📁
pam.d
📁
pango
📄
passwd
(1.5 KB)
📁
pki
📄
profile
(2.45 KB)
📁
profile.d
📄
protocols
(6.3 KB)
📁
rc.d
📄
relayhosts
(0 B)
📄
resolv.conf
(69 B)
📄
rpc
(1.58 KB)
📁
sasl2
📁
scl
📄
screenrc
(6.53 KB)
📁
security
📄
senderverifybypasshosts
(0 B)
📄
services
(626 KB)
📄
shadow
(980 B)
📁
skel
📄
skipsmtpcheckhosts
(107 B)
📄
spammeripblocks
(0 B)
📁
ssh
📁
ssl
📁
sysconfig
📄
trustedmailhosts
(97 B)
📁
udev
📄
vimrc
(1.94 KB)
📄
virc
(1.94 KB)
📄
wgetrc
(4.37 KB)
Editing: bashrc
# /etc/bashrc # System wide functions and aliases # Environment stuff goes in /etc/profile # It's NOT a good idea to change this file unless you know what you # are doing. It's much better to create a custom.sh shell script in # /etc/profile.d/ to make custom changes to your environment, as this # will prevent the need for merging in future updates. # are we an interactive shell? if [ "$PS1" ]; then if [ -z "$PROMPT_COMMAND" ]; then case $TERM in xterm*) if [ -e /etc/sysconfig/bash-prompt-xterm ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-xterm else PROMPT_COMMAND='printf "\033]0;%s@%s:%s\007" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"' fi ;; screen) if [ -e /etc/sysconfig/bash-prompt-screen ]; then PROMPT_COMMAND=/etc/sysconfig/bash-prompt-screen else PROMPT_COMMAND='printf "\033]0;%s@%s:%s\033\\" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"' fi ;; *) [ -e /etc/sysconfig/bash-prompt-default ] && PROMPT_COMMAND=/etc/sysconfig/bash-prompt-default ;; esac fi # Turn on checkwinsize shopt -s checkwinsize [ "$PS1" = "\\s-\\v\\\$ " ] && PS1="[\u@\h \W]\\$ " # You might want to have e.g. tty in prompt (e.g. more virtual machines) # and console windows # If you want to do so, just add e.g. # if [ "$PS1" ]; then # PS1="[\u@\h:\l \W]\\$ " # fi # to your custom modification shell script in /etc/profile.d/ directory fi if ! shopt -q login_shell ; then # We're not a login shell # Need to redefine pathmunge, it get's undefined at the end of /etc/profile pathmunge () { case ":${PATH}:" in *:"$1":*) ;; *) if [ "$2" = "after" ] ; then PATH=$PATH:$1 else PATH=$1:$PATH fi esac } # By default, we want umask to get set. This sets it for non-login shell. # Current threshold for system reserved uid/gids is 200 # You could check uidgid reservation validity in # /usr/share/doc/setup-*/uidgid file if [ $UID -gt 199 ] && [ "`/usr/bin/id -gn`" = "`/usr/bin/id -un`" ]; then umask 002 else umask 022 fi # Only display echos from profile.d scripts if we are no login shell # and interactive - otherwise just process them to set envvars for i in /etc/profile.d/*.sh; do if [ -r "$i" ]; then if [ "$PS1" ]; then . "$i" else . "$i" >/dev/null 2>&1 fi fi done unset i unset pathmunge fi # vim:ts=4:sw=4 alias git="/usr/local/cpanel/3rdparty/bin/git" alias git-cvsserver="/usr/local/cpanel/3rdparty/bin/git-cvsserver" alias gitk="/usr/local/cpanel/3rdparty/bin/gitk" alias git-receive-pack="/usr/local/cpanel/3rdparty/bin/git-receive-pack" alias git-shell="/usr/local/cpanel/3rdparty/bin/git-shell" alias git-upload-archive="/usr/local/cpanel/3rdparty/bin/git-upload-archive" alias git-upload-pack="/usr/local/cpanel/3rdparty/bin/git-upload-pack" #cPanel Added User Commands -- BEGIN # Insert an entry into the PATH after all of the user's home directory paths. PATH="$(/usr/local/cpanel/3rdparty/bin/perl -e 'print join ":", map { ( ( !/^\Q$ENV{HOME}\E/ && !$seen++ && $_ ne $ARGV[0] ? @ARGV : () ), $_ ) } split /:/, $ENV{PATH};' /usr/local/cpanel/3rdparty/lib/path-bin)" export PATH #cPanel Added User Commands -- END #cPanel Added local::lib -- BEGIN LOCALLIBUSER=$USER if [ -e "/usr/bin/whoami" ]; then LOCALLIBUSER="$(/usr/bin/whoami)" fi if [ "$LOCALLIBUSER" != "root" -a -e "/var/cpanel/users/$LOCALLIBUSER" ]; then eval $(perl -Mlocal::lib >/dev/null 2>&1) fi #cPanel Added local::lib -- END
Upload File
Create Folder