Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
share /
doc /
msmtp /
examples /
msmtpqueue /
[ HOME SHELL ]
Name
Size
Permission
Action
ChangeLog
1.06
KB
-rw-r--r--
README
2.53
KB
-rw-r--r--
msmtp-enqueue.sh
1.05
KB
-rwxr-xr-x
msmtp-listqueue.sh
175
B
-rwxr-xr-x
msmtp-runqueue.sh
1.2
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : msmtp-enqueue.sh
#!/usr/bin/env bash QUEUEDIR=$HOME/.msmtpqueue # Set secure permissions on created directories and files umask 077 # Change to queue directory (create it if necessary) if [ ! -d "$QUEUEDIR" ]; then mkdir -p "$QUEUEDIR" || exit 1 fi cd "$QUEUEDIR" || exit 1 # Create new unique filenames of the form # MAILFILE: ccyy-mm-dd-hh.mm.ss[-x].mail # MSMTPFILE: ccyy-mm-dd-hh.mm.ss[-x].msmtp # where x is a consecutive number only appended if you send more than one # mail per second. BASE="`date +%Y-%m-%d-%H.%M.%S`" if [ -f "$BASE.mail" -o -f "$BASE.msmtp" ]; then TMP="$BASE" i=1 while [ -f "$TMP-$i.mail" -o -f "$TMP-$i.msmtp" ]; do i=`expr $i + 1` done BASE="$BASE-$i" fi MAILFILE="$BASE.mail" MSMTPFILE="$BASE.msmtp" # Write command line to $MSMTPFILE echo "$@" > "$MSMTPFILE" || exit 1 # Write the mail to $MAILFILE cat > "$MAILFILE" || exit 1 # If we are online, run the queue immediately. # Replace the test with something suitable for your site. #ping -c 1 -w 2 SOME-IP-ADDRESS > /dev/null #if [ $? -eq 0 ]; then # msmtp-runqueue.sh > /dev/null & #fi exit 0
Close