Hackfut Security File Manager
Current Path:
/opt/fleetssl-cpanel
opt
/
fleetssl-cpanel
/
📁
..
📁
DataTables-1.10.11
📄
EULA
(2.87 KB)
📄
FleetSSLProvider.pm
(659 B)
📄
THIRD-PARTY
(16.95 KB)
📄
bootstrap.min.css
(97.62 KB)
📄
bootstrap.min.js
(28.43 KB)
📄
datatables.min.css
(13.72 KB)
📄
datatables.min.js
(175.99 KB)
📄
dynamicui_letsencrypt.conf
(254 B)
📄
fix_fleetssl_cpanel_0.19.5-upgrade.sh
(275 B)
📄
get_proxy_names
(340 B)
📄
index.html
(140 B)
📄
install.json
(328 B)
📄
jquery-1.12.4.min.js
(94.89 KB)
📄
letsencrypt-cpanel-whm.conf
(290 B)
📄
letsencrypt-cpanel-whm.jpg
(1.31 KB)
📄
letsencrypt-cpanel-x3.png
(1.57 KB)
📄
letsencrypt-cpanel.cpanelplugin
(2.43 KB)
📄
letsencrypt-cpanel.png
(1.52 KB)
📄
letsencrypt.chkservd
(103 B)
📄
letsencrypt.live.cgi
(12.66 MB)
📄
meta.json
(55 B)
📄
post-install.sh
(1.16 KB)
📄
pre-install.sh
(1.98 KB)
📁
status
📄
uninstall.sh
(1.98 KB)
📄
vendor.en.ini
(3.33 KB)
📄
vendor_email.en.ini
(1.86 KB)
📄
vendor_error.html
(493 B)
📄
vendor_home.html
(5.2 KB)
📄
vendor_issue-reuse.html
(1.06 KB)
📄
vendor_issue.html
(6.26 KB)
📄
vendor_reinstall.html
(1.93 KB)
📄
vendor_remove.html
(630 B)
📄
vendor_result.html
(249 B)
📄
vendor_settings.html
(565 B)
📄
vendor_theme_paper_lantern_header.html
(931 B)
📄
vendor_theme_x3_footer.html
(145 B)
📄
vendor_theme_x3_header.html
(210 B)
📄
vendor_view.html
(2.27 KB)
📄
whm_home.html
(4.35 KB)
Editing: whm_home.html
<html> <link rel="stylesheet" href="bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="datatables.min.css"/> <script src="jquery-1.12.4.min.js"></script> <script type="text/javascript" src="datatables.min.js"></script> <script src="bootstrap.min.js"></script> <script> $(document).ready( function() { installedTable = $('#installed_certs').DataTable(); } ); </script> <div class="container"> <h2>FleetSSL cPanel (WHM)</h2> <div class="alert alert-info"> <p>To issue certificates, please login to any user's cPanel account and visit the Lets Encrypt interface there.</p> <p>Alternative, you can use <a href="https://cpanel.fleetssl.com/docs/for-admins/cli-reference/" target="_blank" rel="noopener">the CLI interface</a>, <code>le-cp help</code></p> </div> <ul class="nav nav-tabs"> <li class="{{if not (.Params.Get "config")}}active{{end}}"><a data-toggle="tab" href="#sectionInstalled">Installed Certificates</a></li> <li class="{{if .Params.Get "config"}}active{{end}}"><a data-toggle="tab" href="#sectionConfiguration">Configuration</a></li> </ul> <div class="tab-content"> <div id="sectionInstalled" class="tab-pane{{if not (.Params.Get "config")}} active{{end}}"> <h3>Installed Certificates</h3> <p>There are currently {{len .Vhosts}} Let's Encrypt certificates present on this system.</p> <hr> <table id="installed_certs" class="table table-striped nonsortable"> <thead> <tr> <th>User</th> <th>Domains</th> <th>Expiry</th> <th>Docroot</th> </tr> </thead> <tbody> {{range .Vhosts}} <tr> <td>{{.User}}</td> <td>{{range .Certificate.Domains}}{{.}}<br>{{end}}</td> <td>{{.Certificate.Expiry.String}}</td> <td>{{.Docroot}}</td> </tr> {{end}} </tbody> </table> </div> <div id="sectionConfiguration" class="tab-pane{{if .Params.Get "config"}} active{{end}}"> <h3>Configuration</h3> <form method="post" action="?api=update_config"> <input type="hidden" name="redirect" value="true"/> <p>These are some common configuration items, please refer to <a href="https://cpanel.fleetssl.com/docs/for-admins/configuration/" target="_blank" rel="noopener">the full reference</a> for more. Some of these options will only apply after a service restart: <code>service letsencrypt-cpanel restart</code></p> <table id="configs" class="table table-striped nonsortable"> <thead> <tr> <th>Name</th> <th>Description</th> <th>Value</th> </tr> </thead> <tbody> {{ range .Configs }} <tr> <td>{{ .Name }}</td> <td><small>{{ .Description}}</small></td> {{ if eq "bool" .Type }} <td> <div class="radio"> <label> <input type="radio" name="conf-{{ .Key }}" value="true" {{ if eq "true" .Value}}checked{{ end }}/> On </label> </div> <div class="radio"> <label> <input type="radio" name="conf-{{ .Key }}" value="false" {{ if eq "false" .Value}}checked{{ end }}/> Off </label> </div> </td> {{ else }} <td><input type="{{ .Type }}" name="conf-{{ .Key }}" value="{{ .Value }}"/></td> {{ end }} </tr> {{ end }} </tbody> </table> <input type="submit" class="btn btn-primary" value="Update"/> </form> </div> </div> </div>
Upload File
Create Folder