OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
back_aws-ses
/
vendor
/
phpmailer
/
phpmailer
/
test
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
DebugLogTestListener.php
1.07 KB
05/19/2025 10:07:21 AM
rw-r--r--
📁
Fixtures
-
01/04/2025 01:11:56 PM
rwxr-xr-x
📁
Language
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📁
OAuth
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📁
PHPMailer
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📁
POP3
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
PreSendTestCase.php
1.41 KB
05/19/2025 10:07:21 AM
rw-r--r--
📁
Security
-
05/19/2025 10:07:21 AM
rwxr-xr-x
📄
SendTestCase.php
4.34 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
TestCase.php
12.41 KB
05/19/2025 10:07:21 AM
rw-r--r--
📄
fakefunctions.php
243 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
fakepopserver.sh
3.09 KB
01/04/2025 01:09:25 PM
rw-r--r--
📄
fakesendmail.sh
518 bytes
01/04/2025 01:09:25 PM
rw-r--r--
📄
runfakepopserver.sh
392 bytes
01/04/2025 01:09:25 PM
rw-r--r--
📄
testbootstrap-dist.php
248 bytes
05/19/2025 10:07:21 AM
rw-r--r--
📄
validators.php
181 bytes
05/19/2025 10:07:21 AM
rw-r--r--
Editing: fakesendmail.sh
Close
#!/usr/bin/env bash #Fake sendmail script, adapted from: #https://github.com/mrded/MNPP/blob/ee64fb2a88efc70ba523b78e9ce61f9f1ed3b4a9/init/fake-sendmail.sh #Create a temp folder to put messages in numPath="${TMPDIR-/tmp/}fakemail" umask 037 mkdir -p ${numPath} if [ ! -f ${numPath}/num ]; then echo "0" > ${numPath}/num fi num=`cat ${numPath}/num` num=$((${num} + 1)) echo ${num} > ${numPath}/num name="${numPath}/message_${num}.eml" while read line do echo ${line} >> ${name} done exit 0