Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.140.185.250
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
kus /
mvs /
admin /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
phpmailer
[ DIR ]
drwxrwxrwx
.htaccess
602
B
-rwxrwxrwx
appForm.php
14.61
KB
-rwxrwxrwx
applicationFormReportPOSTOFFIC...
19.27
KB
-rwxrwxrwx
applicationStatus.php
4.49
KB
-rwxrwxrwx
applicationStatus_31012018.php
2.94
KB
-rwxrwxrwx
cManualMailer.php
1.52
KB
-rwxrwxrwx
caccesscontext.php
1.24
KB
-rwxrwxrwx
candidate_list.php
54.71
KB
-rwxrwxrwx
cappcontext.php
2.66
KB
-rwxrwxrwx
cmailer.php
6.83
KB
-rwxrwxrwx
code39.php
6.38
KB
-rwxrwxrwx
coutput.php
1.75
KB
-rwxrwxrwx
crequestbroker.php
2.49
KB
-rwxrwxrwx
csessions.php
514
B
-rwxrwxrwx
cuser.php
3.41
KB
-rwxrwxrwx
customappcontext.php
2.35
KB
-rwxrwxrwx
dropdown.php
844
B
-rwxrwxrwx
feehead.php
1.51
KB
-rwxrwxrwx
format.php
7.43
KB
-rwxrwxrwx
fpdf_protection.php
5.61
KB
-rwxrwxrwx
getdata.php
1.06
KB
-rwxrwxrwx
getnumword.php
7.15
KB
-rwxrwxrwx
home.html
14.48
KB
-rwxrwxrwx
json.php
33.22
KB
-rwxrwxrwx
login.php
1.76
KB
-rwxrwxrwx
mregistry.php
2.92
KB
-rwxrwxrwx
mregistry_31012018.php
2.65
KB
-rwxrwxrwx
report_appstatus.php
5.91
KB
-rwxrwxrwx
reportapplicationform - Copy.p...
19.59
KB
-rwxrwxrwx
reportapplicationform.php
23.92
KB
-rwxrwxrwx
rotation.php
596
B
-rwxrwxrwx
servfee.php
1.38
KB
-rwxrwxrwx
servicedet.php
1.6
KB
-rwxrwxrwx
stringspliter.php
693
B
-rwxrwxrwx
student.php
24.46
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : stringspliter.php
<?php function str_splitf($longString,$maxLineLength) { $arrayWords = explode(' ', $longString); // Max size of each line //$maxLineLength = 30; // Auxiliar counters, foreach will use them $currentLength = 0; $index = 0; foreach($arrayWords as $word) { // +1 because the word will receive back the space in the end that it loses in explode() $wordLength = strlen($word) + 1; if( ( $currentLength + $wordLength ) <= $maxLineLength ) { $arrayOutput[$index] .= $word . ' '; $currentLength += $wordLength; } else { $index += 1; $currentLength = $wordLength; $arrayOutput[$index] = $word; } } return $arrayOutput; } ?>
Close