- 취약점 조치

This commit is contained in:
daekuk
2026-02-25 09:37:55 +09:00
parent 9bab1c8d1b
commit 9a0968d445
3 changed files with 11 additions and 3 deletions
@@ -161,7 +161,7 @@
<tr><th style="width:180px;">시스템 IP</th><td><input type="text" name="sysIp"></td></tr>
<tr><th style="width:180px;">시스템 Port</th><td><input type="text" name="sysPort"></td></tr>
<tr><th style="width:180px;">USER ID</th><td><input type="text" name="userId"></td></tr>
<tr><th style="width:180px;">비밀번호</th><td><input type="password" name="userPassword"></td></tr>
<tr><th style="width:180px;">비밀번호</th><td><input type="password" name="userPassword" autocomplete="new-password"></td></tr>
<tr><th style="width:180px;">송신디렉토리</th><td><input type="text" name="sendDir"></td></tr>
<tr><th style="width:180px;">수신디렉토리</th><td><input type="text" name="recvDir"></td></tr>
<tr><th>SFTP여부</th>
@@ -315,7 +315,7 @@
<th >Keystore 비밀번호 <span style="color:red">*</span></th>
<td>
<div class="input-group">
<input type="password" name="keystorePassword" id="keystorePassword" data-required data-warning="Keystore 비밀번호를 입력하여 주십시오." style="width: calc(100% - 20px);" />
<input type="password" name="keystorePassword" id="keystorePassword" data-required data-warning="Keystore 비밀번호를 입력하여 주십시오." style="width: calc(100% - 20px);" autocomplete="new-password"/>
<span class="input-group-text" style="cursor: pointer;" id="toggleKeystorePassword">
<i class="bi bi-eye"></i>
</span>
@@ -338,7 +338,7 @@
<th>Truststore 비밀번호</th>
<td>
<div class="input-group">
<input type="password" name="truststorePassword" id="truststorePassword" style="width: calc(100% - 20px);" />
<input type="password" name="truststorePassword" id="truststorePassword" style="width: calc(100% - 20px);" autocomplete="new-password"/>
<span class="input-group-text" style="cursor: pointer;" id="toggleTruststorePassword">
<i class="bi bi-eye"></i>
</span>
+8
View File
@@ -64,6 +64,8 @@ war {
// rootSpec.exclude '**/persistence.xml'
exclude '**/context.xml'
exclude '**/context-*.xml'
exclude '**/context_*.xml'
archiveFileName = "eapim-admin.war"
duplicatesStrategy = DuplicatesStrategy.WARN
}
@@ -262,3 +264,9 @@ eclipse {
}
}
}
tasks.withType(JavaCompile) {
options.fork = true // 컴파일을 별도 프로세스로 분리
options.forkOptions.memoryMaximumSize = '4g' // 컴파일러에 2GB 할당 (필요시 4g로 증량)
options.encoding = 'UTF-8'
}