├── .gitignore ├── 3rdPartyLicenses.md ├── LICENSE.md ├── README.md ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── keybox │ │ ├── common │ │ ├── db │ │ │ └── DBInitServlet.java │ │ ├── filter │ │ │ └── AuthFilter.java │ │ ├── interceptor │ │ │ ├── CSRFInterceptor.java │ │ │ ├── ClickjackingInterceptor.java │ │ │ └── HTTPStrictTransportSecurityInterceptor.java │ │ ├── result │ │ │ └── CSRFRedirectionResult.java │ │ └── util │ │ │ ├── AppConfig.java │ │ │ └── AuthUtil.java │ │ └── manage │ │ ├── action │ │ ├── AuthKeysAction.java │ │ ├── LoginAction.java │ │ ├── OTPAction.java │ │ ├── ProfileAction.java │ │ ├── ProfileSystemsAction.java │ │ ├── ProfileUsersAction.java │ │ ├── ScriptAction.java │ │ ├── SecureShellAction.java │ │ ├── SessionAuditAction.java │ │ ├── SystemAction.java │ │ ├── UploadAndPushAction.java │ │ ├── UserSettingsAction.java │ │ └── UsersAction.java │ │ ├── db │ │ ├── AuthDB.java │ │ ├── PrivateKeyDB.java │ │ ├── ProfileDB.java │ │ ├── ProfileSystemsDB.java │ │ ├── PublicKeyDB.java │ │ ├── ScriptDB.java │ │ ├── SessionAuditDB.java │ │ ├── SystemDB.java │ │ ├── SystemStatusDB.java │ │ ├── UserDB.java │ │ ├── UserProfileDB.java │ │ └── UserThemeDB.java │ │ ├── model │ │ ├── ApplicationKey.java │ │ ├── AuditWrapper.java │ │ ├── Auth.java │ │ ├── HostSystem.java │ │ ├── Profile.java │ │ ├── PublicKey.java │ │ ├── SchSession.java │ │ ├── Script.java │ │ ├── SessionAudit.java │ │ ├── SessionOutput.java │ │ ├── SortedSet.java │ │ ├── User.java │ │ ├── UserSchSessions.java │ │ ├── UserSessionsOutput.java │ │ └── UserSettings.java │ │ ├── socket │ │ ├── GetHttpSessionConfigurator.java │ │ └── SecureShellWS.java │ │ ├── task │ │ ├── SecureShellTask.java │ │ └── SentOutputTask.java │ │ └── util │ │ ├── DBUtils.java │ │ ├── DSPool.java │ │ ├── EncryptionUtil.java │ │ ├── ExternalAuthUtil.java │ │ ├── KeyStoreUtil.java │ │ ├── OTPUtil.java │ │ ├── PasswordUtil.java │ │ ├── RefreshAuthKeyUtil.java │ │ ├── SSHUtil.java │ │ ├── SessionOutputSerializer.java │ │ └── SessionOutputUtil.java ├── resources │ ├── KeyBoxConfig.properties │ ├── jaas.conf │ ├── log4j2.xml │ ├── struts.properties │ ├── struts.xml │ └── template │ │ └── custom │ │ ├── checkbox.ftl │ │ ├── checkboxlist.ftl │ │ ├── combobox.ftl │ │ ├── control-close.ftl │ │ ├── control.ftl │ │ ├── controlfooter.ftl │ │ ├── controlheader-core.ftl │ │ ├── controlheader.ftl │ │ ├── debug.ftl │ │ ├── doubleselect.ftl │ │ ├── error-message.ftl │ │ ├── file.ftl │ │ ├── form-close-validate.ftl │ │ ├── form-close.ftl │ │ ├── form-validate.ftl │ │ ├── form.ftl │ │ ├── head.ftl │ │ ├── inputtransferselect.ftl │ │ ├── label.ftl │ │ ├── optiontransferselect.ftl │ │ ├── password.ftl │ │ ├── radiomap.ftl │ │ ├── reset.ftl │ │ ├── select.ftl │ │ ├── styles.css │ │ ├── submit-close.ftl │ │ ├── submit.ftl │ │ ├── text.ftl │ │ ├── textarea.ftl │ │ ├── theme.properties │ │ ├── tooltip.ftl │ │ ├── updownselect.ftl │ │ └── validation.js └── webapp │ ├── WEB-INF │ ├── jetty-env.xml │ └── web.xml │ ├── _res │ ├── css │ │ ├── bootstrap.css │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui.css │ │ └── keybox.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── inc │ │ ├── header.jsp │ │ └── navigation.jsp │ └── js │ │ ├── bootstrap.js │ │ ├── jquery-2.1.3.js │ │ ├── jquery-ui.js │ │ ├── jquery.floatThead.js │ │ └── tty │ │ └── term.js │ ├── admin │ ├── menu.jsp │ ├── secure_shell.jsp │ ├── two-factor_otp.jsp │ ├── upload.jsp │ ├── upload_result.jsp │ ├── user_settings.jsp │ ├── view_keys.jsp │ ├── view_scripts.jsp │ └── view_systems.jsp │ ├── error.jsp │ ├── img │ ├── asc.gif │ ├── bg.gif │ ├── desc.gif │ ├── keybox.ico │ ├── keybox_100x100.png │ ├── keybox_200x200.png │ ├── keybox_40x40.png │ └── refresh.png │ ├── index.jsp │ ├── login.jsp │ └── manage │ ├── view_keys.jsp │ ├── view_profile_systems.jsp │ ├── view_profile_users.jsp │ ├── view_profiles.jsp │ ├── view_sessions.jsp │ ├── view_systems.jsp │ ├── view_terms.jsp │ └── view_users.jsp └── test └── resources ├── jetty-https.xml ├── jetty-ssl.xml ├── jetty.xml └── keystore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdPartyLicenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/3rdPartyLicenses.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/db/DBInitServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/db/DBInitServlet.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/filter/AuthFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/filter/AuthFilter.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/interceptor/CSRFInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/interceptor/CSRFInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/interceptor/ClickjackingInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/interceptor/ClickjackingInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/interceptor/HTTPStrictTransportSecurityInterceptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/interceptor/HTTPStrictTransportSecurityInterceptor.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/result/CSRFRedirectionResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/result/CSRFRedirectionResult.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/util/AppConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/util/AppConfig.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/common/util/AuthUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/common/util/AuthUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/AuthKeysAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/AuthKeysAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/LoginAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/LoginAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/OTPAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/OTPAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/ProfileAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/ProfileAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/ProfileSystemsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/ProfileSystemsAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/ProfileUsersAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/ProfileUsersAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/ScriptAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/ScriptAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/SecureShellAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/SecureShellAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/SessionAuditAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/SessionAuditAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/SystemAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/SystemAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/UploadAndPushAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/UploadAndPushAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/UserSettingsAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/UserSettingsAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/action/UsersAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/action/UsersAction.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/AuthDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/AuthDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/PrivateKeyDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/PrivateKeyDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/ProfileDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/ProfileDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/ProfileSystemsDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/ProfileSystemsDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/PublicKeyDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/PublicKeyDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/ScriptDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/ScriptDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/SessionAuditDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/SessionAuditDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/SystemDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/SystemDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/SystemStatusDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/SystemStatusDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/UserDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/UserDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/UserProfileDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/UserProfileDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/db/UserThemeDB.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/db/UserThemeDB.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/ApplicationKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/ApplicationKey.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/AuditWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/AuditWrapper.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/Auth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/Auth.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/HostSystem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/HostSystem.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/Profile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/Profile.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/PublicKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/PublicKey.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/SchSession.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/SchSession.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/Script.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/Script.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/SessionAudit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/SessionAudit.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/SessionOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/SessionOutput.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/SortedSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/SortedSet.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/User.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/UserSchSessions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/UserSchSessions.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/UserSessionsOutput.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/UserSessionsOutput.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/model/UserSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/model/UserSettings.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/socket/GetHttpSessionConfigurator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/socket/GetHttpSessionConfigurator.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/socket/SecureShellWS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/socket/SecureShellWS.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/task/SecureShellTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/task/SecureShellTask.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/task/SentOutputTask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/task/SentOutputTask.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/DBUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/DBUtils.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/DSPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/DSPool.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/EncryptionUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/EncryptionUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/ExternalAuthUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/ExternalAuthUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/KeyStoreUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/KeyStoreUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/OTPUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/OTPUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/PasswordUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/PasswordUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/RefreshAuthKeyUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/RefreshAuthKeyUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/SSHUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/SSHUtil.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/SessionOutputSerializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/SessionOutputSerializer.java -------------------------------------------------------------------------------- /src/main/java/com/keybox/manage/util/SessionOutputUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/java/com/keybox/manage/util/SessionOutputUtil.java -------------------------------------------------------------------------------- /src/main/resources/KeyBoxConfig.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/KeyBoxConfig.properties -------------------------------------------------------------------------------- /src/main/resources/jaas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/jaas.conf -------------------------------------------------------------------------------- /src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /src/main/resources/struts.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/struts.properties -------------------------------------------------------------------------------- /src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/struts.xml -------------------------------------------------------------------------------- /src/main/resources/template/custom/checkbox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/checkbox.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/checkboxlist.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/checkboxlist.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/combobox.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/combobox.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/control-close.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/control-close.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/control.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/control.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/controlfooter.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/controlfooter.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/controlheader-core.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/controlheader-core.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/controlheader.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/controlheader.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/debug.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/debug.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/doubleselect.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/doubleselect.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/error-message.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/error-message.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/file.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/file.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/form-close-validate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/form-close-validate.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/form-close.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/form-close.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/form-validate.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/form-validate.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/form.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/form.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/head.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/head.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/inputtransferselect.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/inputtransferselect.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/label.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/label.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/optiontransferselect.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/optiontransferselect.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/password.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/password.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/radiomap.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/radiomap.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/reset.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/reset.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/select.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/select.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/styles.css -------------------------------------------------------------------------------- /src/main/resources/template/custom/submit-close.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/submit-close.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/submit.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/submit.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/text.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/text.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/textarea.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/textarea.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/theme.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/theme.properties -------------------------------------------------------------------------------- /src/main/resources/template/custom/tooltip.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/tooltip.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/updownselect.ftl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/updownselect.ftl -------------------------------------------------------------------------------- /src/main/resources/template/custom/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/resources/template/custom/validation.js -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/jetty-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/WEB-INF/jetty-env.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/_res/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/bootstrap.css -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /src/main/webapp/_res/css/jquery-ui/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/jquery-ui/jquery-ui.css -------------------------------------------------------------------------------- /src/main/webapp/_res/css/keybox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/css/keybox.css -------------------------------------------------------------------------------- /src/main/webapp/_res/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/main/webapp/_res/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/main/webapp/_res/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/main/webapp/_res/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/main/webapp/_res/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/main/webapp/_res/inc/header.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/inc/header.jsp -------------------------------------------------------------------------------- /src/main/webapp/_res/inc/navigation.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/inc/navigation.jsp -------------------------------------------------------------------------------- /src/main/webapp/_res/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/js/bootstrap.js -------------------------------------------------------------------------------- /src/main/webapp/_res/js/jquery-2.1.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/js/jquery-2.1.3.js -------------------------------------------------------------------------------- /src/main/webapp/_res/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/js/jquery-ui.js -------------------------------------------------------------------------------- /src/main/webapp/_res/js/jquery.floatThead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/js/jquery.floatThead.js -------------------------------------------------------------------------------- /src/main/webapp/_res/js/tty/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/_res/js/tty/term.js -------------------------------------------------------------------------------- /src/main/webapp/admin/menu.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/menu.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/secure_shell.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/secure_shell.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/two-factor_otp.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/two-factor_otp.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/upload.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/upload.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/upload_result.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/upload_result.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/user_settings.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/user_settings.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/view_keys.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/view_keys.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/view_scripts.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/view_scripts.jsp -------------------------------------------------------------------------------- /src/main/webapp/admin/view_systems.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/admin/view_systems.jsp -------------------------------------------------------------------------------- /src/main/webapp/error.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/error.jsp -------------------------------------------------------------------------------- /src/main/webapp/img/asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/asc.gif -------------------------------------------------------------------------------- /src/main/webapp/img/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/bg.gif -------------------------------------------------------------------------------- /src/main/webapp/img/desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/desc.gif -------------------------------------------------------------------------------- /src/main/webapp/img/keybox.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/keybox.ico -------------------------------------------------------------------------------- /src/main/webapp/img/keybox_100x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/keybox_100x100.png -------------------------------------------------------------------------------- /src/main/webapp/img/keybox_200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/keybox_200x200.png -------------------------------------------------------------------------------- /src/main/webapp/img/keybox_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/keybox_40x40.png -------------------------------------------------------------------------------- /src/main/webapp/img/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/img/refresh.png -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /src/main/webapp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/login.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_keys.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_keys.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_profile_systems.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_profile_systems.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_profile_users.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_profile_users.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_profiles.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_profiles.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_sessions.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_sessions.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_systems.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_systems.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_terms.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_terms.jsp -------------------------------------------------------------------------------- /src/main/webapp/manage/view_users.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/main/webapp/manage/view_users.jsp -------------------------------------------------------------------------------- /src/test/resources/jetty-https.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/test/resources/jetty-https.xml -------------------------------------------------------------------------------- /src/test/resources/jetty-ssl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/test/resources/jetty-ssl.xml -------------------------------------------------------------------------------- /src/test/resources/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/test/resources/jetty.xml -------------------------------------------------------------------------------- /src/test/resources/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/signedbytes/KeyBox/HEAD/src/test/resources/keystore --------------------------------------------------------------------------------