Skip to content

Commit 21e9e8f

Browse files
author
Mircea Carasel
committed
UC-445: Security Vulnerability: No password for postgresql user postgres
-change in sipXcdrLog to use postgres password
1 parent cdf3650 commit 21e9e8f

File tree

7 files changed

+23
-4
lines changed

7 files changed

+23
-4
lines changed

sipXcdrLog/src/org/sipfoundry/sipxrest/cdrlog/CdrLogRestlet.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public void handle(Request request, Response response) {
5252
RestServerConfig config = RestServer.getRestServerConfig();
5353
String cdrDBUrl = config.getSipxcdrAddress();
5454
String dbUser = config.getDbUser();
55+
String dbPassword = config.getDbPassword();
5556

5657
try {
5758
Method httpMethod = request.getMethod();
@@ -105,7 +106,7 @@ public void handle(Request request, Response response) {
105106

106107
System.setProperty("jdbc.drivers", "org.postgresql.Driver");
107108
// Establish a connection to the CDR database.
108-
cdrConnection = DriverManager.getConnection(cdrDBUrl, dbUser, "");
109+
cdrConnection = DriverManager.getConnection(cdrDBUrl, dbUser, dbPassword);
109110

110111
String sqlPrepareString;
111112
String userLike = "%:" + userId + "@%";

sipXcommons/src/main/java/org/sipfoundry/commons/restconfig/RestServerConfig.java

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ public class RestServerConfig {
1919
private String sipxProxyDomain;
2020
private String sipxcdrAddress;
2121
private String dbUser;
22+
private String dbPassword;
2223

2324
public void setIpAddress(String ipAddress) {
2425
this.ipAddress = ipAddress;
@@ -92,6 +93,14 @@ public void setDbUser(String dbUser) {
9293
this.dbUser = dbUser;
9394
}
9495

96+
public String getDbPassword() {
97+
return dbPassword;
98+
}
99+
100+
public void setDbPassword(String dbPassword) {
101+
this.dbPassword = dbPassword;
102+
}
103+
95104
public int getCacheTimeout() {
96105
return 30;
97106
}

sipXcommons/src/main/java/org/sipfoundry/commons/restconfig/RestServerConfigFileParser.java

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ private static void addRules(Digester digester) {
3131
digester.addCallMethod( String.format("%s/%s", REST_CONFIG,"log-level"), "setLogLevel",0);
3232
digester.addCallMethod( String.format("%s/%s", REST_CONFIG,"sipxcdr-address"), "setSipxcdrAddress", 0);
3333
digester.addCallMethod( String.format("%s/%s", REST_CONFIG,"db-user"), "setDbUser", 0);
34+
digester.addCallMethod( String.format("%s/%s", REST_CONFIG,"db-password"), "setDbPassword", 0);
3435
}
3536

3637
public RestServerConfig parse(String url) {

sipXconfig/etc/sipxpbx/sipxrest/sipxrest-config.vm

+1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@
88
<sip-port>$settings.getSetting('sipPort').Value</sip-port>
99
<sipxcdr-address>${sipxcdrDbAddress}</sipxcdr-address>
1010
<db-user>@POSTGRESQL_USER@</db-user>
11+
<db-password>${postgresPwd}</db-password>
1112
</rest-config>

sipXconfig/neoconf/src/org/sipfoundry/sipxconfig/admin/AdminConfig.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
import java.util.Set;
2222

2323
import org.apache.commons.io.IOUtils;
24-
import org.sipfoundry.sipxconfig.cdr.CdrManager;
2524
import org.sipfoundry.sipxconfig.cfgmgt.CfengineModuleConfiguration;
2625
import org.sipfoundry.sipxconfig.cfgmgt.ConfigManager;
2726
import org.sipfoundry.sipxconfig.cfgmgt.ConfigProvider;
@@ -49,8 +48,7 @@ public void replicate(ConfigManager manager, ConfigRequest request) throws IOExc
4948

5049
for (Location l : locations) {
5150
File dir = manager.getLocationDataDirectory(l);
52-
if (l.isPrimary() || manager.getFeatureManager().isFeatureEnabled(ProxyManager.FEATURE, l)
53-
|| manager.getFeatureManager().isFeatureEnabled(CdrManager.FEATURE, l)) {
51+
if (l.isPrimary() || manager.getFeatureManager().isFeatureEnabled(ProxyManager.FEATURE, l)) {
5452
Writer pwd = new FileWriter(new File(dir, "postgres-pwd.properties"));
5553
Writer pwdCfdat = new FileWriter(new File(dir, "postgres-pwd.cfdat"));
5654
try {

sipXconfig/neoconf/src/org/sipfoundry/sipxconfig/restserver/RestConfiguration.java

+8
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,13 @@
3535
import org.sipfoundry.sipxconfig.domain.Domain;
3636
import org.sipfoundry.sipxconfig.setting.Setting;
3737
import org.sipfoundry.sipxconfig.setting.SettingUtil;
38+
import org.springframework.beans.factory.annotation.Required;
3839

3940
public class RestConfiguration implements ConfigProvider {
4041
private RestServer m_restServer;
4142
private VelocityEngine m_velocityEngine;
4243
private String m_restSettingKey = "rest-config";
44+
private String m_postgresPwd;
4345

4446
@Override
4547
public void replicate(ConfigManager manager, ConfigRequest request) throws IOException {
@@ -80,6 +82,7 @@ void write(Writer wtr, RestServerSettings settings, Location location,
8082
context.put("location", location);
8183
context.put("domainName", domain.getName());
8284
context.put("sipxcdrDbAddress", sipxcdrApi.toString());
85+
context.put("postgresPwd", m_postgresPwd);
8386
try {
8487
m_velocityEngine.mergeTemplate("sipxrest/sipxrest-config.vm", context, wtr);
8588
} catch (Exception e) {
@@ -94,4 +97,9 @@ public void setRestServer(RestServer restServer) {
9497
public void setVelocityEngine(VelocityEngine velocityEngine) {
9598
m_velocityEngine = velocityEngine;
9699
}
100+
101+
@Required
102+
public void setPostgresPwd(String postgresPwd) {
103+
m_postgresPwd = postgresPwd;
104+
}
97105
}

sipXconfig/neoconf/src/org/sipfoundry/sipxconfig/restserver/restserver.beans.xml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
<bean id="restServerConfiguration" class="org.sipfoundry.sipxconfig.restserver.RestConfiguration">
2626
<property name="restServer" ref="restServer" />
2727
<property name="velocityEngine" ref="velocityEngine"/>
28+
<property name="postgresPwd" value="${password}"/>
2829
</bean>
2930

3031
</beans>

0 commit comments

Comments
 (0)