Apply SecureLog.
authorJaemin Ahn <j.m.ahn@samsung.com>
Wed, 17 Apr 2013 11:39:11 +0000 (20:39 +0900)
committerJaemin Ahn <j.m.ahn@samsung.com>
Wed, 17 Apr 2013 11:39:11 +0000 (20:39 +0900)
Change-Id: I84bc16635ec228b452e79bb59252f1c6cd4dd929
Signed-off-by: Jaemin Ahn <j.m.ahn@samsung.com>
src/FNet_DnsRequestHandler.cpp
src/FNet_LocalDhcpServerEvent.cpp
src/FNet_LocalDhcpServerImpl.cpp
src/FNet_NetAccountDatabase.cpp
src/FNet_NetAccountInfoImpl.cpp
src/FNet_NetAccountManagerImpl.cpp
src/FNet_NetConnectionInfoImpl.cpp
src/FNet_PsSystemNetConnection.cpp
src/FNet_UsbSystemNetConnection.cpp
src/inc/FNet_ConnectivityIpcParamTraits.h

index 4bf3268..d800ee0 100644 (file)
@@ -250,7 +250,7 @@ _DnsRequestHandler::SetAliasList(const struct hostent* pHostent, _IpHostEntryImp
        //Add Hostname to alias list
        if (pHostent->h_name != null)
        {
-               SysLog(NID_NET, "Hostname: %s", pHostent->h_name);
+               SysSecureLog(NID_NET, "Hostname: %s", pHostent->h_name);
 
                unique_ptr<String> pHostName(new (std::nothrow) String());
                SysTryReturnResult(NID_NET, pHostName != null, E_OUT_OF_MEMORY, "Memory allocation failed.");
index ef0591b..b2e95b6 100644 (file)
@@ -130,7 +130,7 @@ _LocalDhcpServerEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
        switch (pLocalDhcpServerEventArg->GetEventType())
        {
        case NET_DHCP_SERVER_EVENT_CONNECT:
-               SysLog(NID_NET, "Calling OnNetConnectionSuspended() with Client name:%s, Mac address:%s",
+               SysSecureLog(NID_NET, "Calling OnDhcpClientConnectedN() with Client name:%ls, Mac address:%ls",
                    (pCallbackDhcpClientInfo->GetName()).GetPointer(),
                    (pCallbackDhcpClientInfo->GetMacAddress()).GetPointer());
 
@@ -140,7 +140,7 @@ _LocalDhcpServerEvent::FireImpl(IEventListener& listener, const IEventArg& arg)
                break;
 
        case NET_DHCP_SERVER_EVENT_DISCONNECT:
-               SysLog(NID_NET, "Calling OnNetConnectionSuspended() with Client name:%s, Mac address:%s",
+               SysSecureLog(NID_NET, "Calling OnDhcpClientDisconnectedN() with Client name:%ls, Mac address:%ls",
                                        (pCallbackDhcpClientInfo->GetName()).GetPointer(),
                                        (pCallbackDhcpClientInfo->GetMacAddress()).GetPointer());
 
index 9c35636..e61cbce 100644 (file)
@@ -702,7 +702,7 @@ _LocalDhcpServerImpl::ConvertDhcpClientInfo(tethering_client_h clientHandle, Dhc
        // set peer name
        err =  tethering_client_get_name(clientHandle, &pClientName);
        SysLog(NID_NET, "Error value from tethering_client_get_name() is 0x%x", err);
-       SysLog(NID_NET, "Network interface name is %s", pClientName);
+       SysSecureLog(NID_NET, "Network interface name is %s", pClientName);
        
        SysTryReturnResult(NID_NET, err == TETHERING_ERROR_NONE, E_SYSTEM,
                        "A system error has been occurred. Failed to get tethering client name.");
@@ -712,7 +712,7 @@ _LocalDhcpServerImpl::ConvertDhcpClientInfo(tethering_client_h clientHandle, Dhc
        //set mac-address
        err =  tethering_client_get_mac_address(clientHandle, &pMacAddress);
        SysLog(NID_NET, "Error value from tethering_client_get_mac_address() is 0x%x", err);
-       SysLog(NID_NET, "Mac address is %s", pMacAddress);
+       SysSecureLog(NID_NET, "Mac address is %s", pMacAddress);
        
        SysTryCatch(NID_NET, err == TETHERING_ERROR_NONE, r = E_SYSTEM, r,
                        "[%s] A system error has been occurred. tethering_client_get_mac_address() returned error.", GetErrorMessage(E_SYSTEM));
@@ -722,7 +722,7 @@ _LocalDhcpServerImpl::ConvertDhcpClientInfo(tethering_client_h clientHandle, Dhc
        //set ip-address
        err =  tethering_client_get_ip_address(clientHandle, TETHERING_ADDRESS_FAMILY_IPV4, &pIpAddress);
        SysLog(NID_NET, "Error value from tethering_client_get_ip_address() is 0x%x", err);
-       SysLog(NID_NET, "Ip address is %s", pIpAddress);
+       SysSecureLog(NID_NET, "Ip address is %s", pIpAddress);
                
        SysTryCatch(NID_NET, err == TETHERING_ERROR_NONE, r = E_SYSTEM, r,
                        "[%s] A system error has been occurred. tethering_client_get_ip_address() returned error.", GetErrorMessage(E_SYSTEM));
@@ -773,7 +773,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                // set peer name
                err =  tethering_get_network_interface_name(__pUsbTetheringHandle, TETHERING_TYPE_USB, &pInterfaceName);
                SysLog(NID_NET, "Error value from tethering_get_name() is 0x%x", err);
-               SysLog(NID_NET, "Network interface name is %s", pInterfaceName);
+               SysSecureLog(NID_NET, "Network interface name is %s", pInterfaceName);
        
                SysTryReturnResult(NID_NET, err == TETHERING_ERROR_NONE, E_SYSTEM,
                                "A system error has been occurred. tethering_get_name() returned error.");
@@ -781,7 +781,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                //set mac-address
                err =  tethering_get_mac_address(__pUsbTetheringHandle, TETHERING_TYPE_USB, &pMacAddress);
                SysLog(NID_NET, "Error value from tethering_get_mac_address() is 0x%x", err);
-               SysLog(NID_NET, "Mac address is %s", pMacAddress);
+               SysSecureLog(NID_NET, "Mac address is %s", pMacAddress);
        
                SysTryCatch(NID_NET, err == TETHERING_ERROR_NONE, r = E_SYSTEM, r,
                                "[%s] A system error has been occurred. tethering_get_mac_address returned error.", GetErrorMessage(E_SYSTEM));
@@ -789,7 +789,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                //set ip-address
                err =  tethering_get_ip_address(__pUsbTetheringHandle, TETHERING_TYPE_USB, TETHERING_ADDRESS_FAMILY_IPV4, &pIpAddress);
                SysLog(NID_NET, "Error value from tethering_get_ip_address() is 0x%x", err);
-               SysLog(NID_NET, "Ip address is %s", pIpAddress);
+               SysSecureLog(NID_NET, "Ip address is %s", pIpAddress);
                
                SysTryCatch(NID_NET, err == TETHERING_ERROR_NONE, r = E_SYSTEM, r,
                                "[%s] A system error has been occurred. tethering_get_ip_address() returned error.", GetErrorMessage(E_SYSTEM));
@@ -800,7 +800,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                // set interface name
                err = wifi_direct_get_network_interface_name(&pInterfaceName);
                SysLog(NID_NET, "Error value from  wifi_direct_get_network_interface_name() is 0x%x", err);
-               SysLog(NID_NET, "Network interface name is %s", pInterfaceName);
+               SysSecureLog(NID_NET, "Network interface name is %s", pInterfaceName);
        
                SysTryReturnResult(NID_NET, err == WIFI_DIRECT_ERROR_NONE, E_SYSTEM,
                                        "A system error has been occurred. wifi_direct_get_network_interface_name() returned error.");
@@ -808,7 +808,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                //set mac-address
                err = wifi_direct_get_mac_address(&pMacAddress);
                SysLog(NID_NET, "Error value from wifi_direct_get_mac_address() is 0x%x", err);
-               SysLog(NID_NET, "Mac address is %s", pMacAddress);
+               SysSecureLog(NID_NET, "Mac address is %s", pMacAddress);
        
                SysTryCatch(NID_NET, err == WIFI_DIRECT_ERROR_NONE, r = E_SYSTEM, r,
                                "[%s] A system error has been occurred. wifi_direct_get_mac_address() returned error.", GetErrorMessage(E_SUCCESS));
@@ -816,7 +816,7 @@ _LocalDhcpServerImpl::GetLocalDhcpServerInfo(DhcpClientInfo& dhcpClientInfo)
                //set ip-address
                err = wifi_direct_get_ip_address(&pIpAddress);
                SysLog(NID_NET, "Error value from wifi_direct_get_ip_address() is 0x%x", err);
-               SysLog(NID_NET, "Ip address is %s", pIpAddress);
+               SysSecureLog(NID_NET, "Ip address is %s", pIpAddress);
                
                SysTryCatch(NID_NET, err == WIFI_DIRECT_ERROR_NONE, r = E_SYSTEM, r,
                                "[%s] A system error has been occurred. wifi_direct_get_ip_address() returned error.", GetErrorMessage(E_SYSTEM));
index 8f60328..eac1966 100644 (file)
@@ -82,7 +82,7 @@ _NetAccountDatabase::AddAccount(const String& accountName, const String& profile
        bool isReadOnly = true;
        NetAccountId netAccountId = INVALID_HANDLE;
 
-       SysLog(NID_NET, "AddAccount() has been called with accountName:%ls, profileName:%ls, owner:%d",
+       SysSecureLog(NID_NET, "AddAccount() has been called with accountName:%ls, profileName:%ls, owner:%d",
                        accountName.GetPointer(), profileName.GetPointer(), owner);
 
        accountId = INVALID_HANDLE;
@@ -170,7 +170,7 @@ _NetAccountDatabase::RemoveAccountByAccountId(NetAccountId accountId)
        static const wchar_t _NET_ACCOUNT_DATABASE_REMOVE_ACCOUNT_BY_ACCOUNT_ID_STATEMENT[] =
                        L"DELETE FROM NetAccountTable WHERE accountId=?";
 
-       SysLog(NID_NET, "RemoveAccountByAccountId() has been called with accountId:%d", accountId);
+       SysSecureLog(NID_NET, "RemoveAccountByAccountId() has been called with accountId:%d", accountId);
 
        result r = E_SUCCESS;
        Database accountDb;
@@ -232,7 +232,7 @@ _NetAccountDatabase::UpdateAccountName(NetAccountId accountId, const String& acc
        static const wchar_t _NET_ACCOUNT_DATABASE_UPDATE_ACCOUNT_NAME_STATEMENT[] =
                        L"UPDATE NetAccountTable SET accountName=? WHERE accountId=?";
 
-       SysLog(NID_NET, "UpdateAccountName() has been called with accountId:%d, accountName:%ls", accountId, accountName.GetPointer());
+       SysSecureLog(NID_NET, "UpdateAccountName() has been called with accountId:%d, accountName:%ls", accountId, accountName.GetPointer());
 
        result r = E_SUCCESS;
        Database accountDb;
@@ -478,7 +478,7 @@ _NetAccountDatabase::GetAccountName(NetAccountId accountId, String& accountName)
        static const wchar_t _NET_ACCOUNT_DATABASE_GET_ACCOUNT_NAME_STATEMENT[] =
                        L"SELECT accountName FROM NetAccountTable WHERE accountId=?";
 
-       SysLog(NID_NET, "GetAccountName() has been called with accountId:%d", accountId);
+       SysSecureLog(NID_NET, "GetAccountName() has been called with accountId:%d", accountId);
 
        result r = E_SUCCESS;
        Database accountDb;
@@ -519,7 +519,7 @@ _NetAccountDatabase::GetProfileName(NetAccountId accountId, String& profileName)
        static const wchar_t _NET_ACCOUNT_DATABASE_GET_PROFILE_NAME_STATEMENT[] =
                        L"SELECT profileName FROM NetAccountTable WHERE accountId=?";
 
-       SysLog(NID_NET, "GetProfileName() has been called with accountId:%d", accountId);
+       SysSecureLog(NID_NET, "GetProfileName() has been called with accountId:%d", accountId);
 
        result r = E_SUCCESS;
        Database accountDb;
@@ -560,7 +560,7 @@ _NetAccountDatabase::GetAccountIdByAccountName(const String& accountName, NetAcc
        static const wchar_t _NET_ACCOUNT_DATABASE_GET_ACCOUNT_ID_BY_ACCOUNT_NAME_STATEMENT[] =
                        L"SELECT accountId FROM NetAccountTable WHERE accountName=?";
 
-       SysLog(NID_NET, "GetAccountIdByAccountName() has been called with accountName:%ls", accountName.GetPointer());
+       SysSecureLog(NID_NET, "GetAccountIdByAccountName() has been called with accountName:%ls", accountName.GetPointer());
 
        result r = E_SUCCESS;
        Database accountDb;
@@ -641,7 +641,7 @@ _NetAccountDatabase::IsReadOnly(NetAccountId accountId)
        static const wchar_t NET_ACCOUNT_DATABASE_GET_IS_READ_ONLY_STATEMENT[] =
                        L"SELECT isReadOnly FROM NetAccountTable WHERE accountId=?";
 
-       SysLog(NID_NET, "IsReadOnly() has been called with accountId:%d", accountId);
+       SysSecureLog(NID_NET, "IsReadOnly() has been called with accountId:%d", accountId);
 
        result r = E_SUCCESS;
        Database accountDb;
index aa1f26d..00927c6 100644 (file)
@@ -401,8 +401,7 @@ _NetAccountInfoImpl::SetAccountName(const String& accountName)
 
        if (__accountName.GetLength() > _MAX_ACCOUNT_NAME_LENGTH)
        {
-               SysLog(NID_NET, "AccountName's length[%d] is over [%d], so truncate it.",
-                               __accountName.GetLength(), _MAX_ACCOUNT_NAME_LENGTH);
+               SysLog(NID_NET, "AccountName's length is over [%d], so truncate it.", _MAX_ACCOUNT_NAME_LENGTH);
 
                __accountName.SetLength(_MAX_ACCOUNT_NAME_LENGTH);
        }
index 6c5bfd1..b98281b 100644 (file)
@@ -180,7 +180,7 @@ _NetAccountManagerImpl::CreateNetAccount(NetAccountInfo& netAccountInfo)
 
        ClearLastResult();
 
-       SysLog( NID_NET, "CreateNetAccount() has been succeeded with accountId:%d, accountName:%ls, profileName:%ls",
+       SysSecureLog( NID_NET, "CreateNetAccount() has been succeeded with accountId:%d, accountName:%ls, profileName:%ls",
                        netAccountInfo.GetAccountId(), netAccountInfo.GetAccountName().GetPointer(), profileName.GetPointer());
 
        return accountId;
@@ -373,7 +373,7 @@ _NetAccountManagerImpl::GetNetAccountId(const String& netAccountName) const
                        "[%s] Invalid argument is used. AccountName[%ls] is not found.",
                        GetErrorMessage(E_INVALID_ARG), netAccountName.GetPointer());
 
-       SysLog(NID_NET, "GetNetAccountId() has been succeeded with accountId:%d", accountId);
+       SysSecureLog(NID_NET, "GetNetAccountId() has been succeeded with accountId:%d", accountId);
 
        return accountId;
 }
index 2b90c65..9745f89 100644 (file)
@@ -440,7 +440,7 @@ _NetConnectionInfoImpl::Update(void* pProfileHandle, bool isDefault)
        char* pProxyAddr = null;
 
        ret = connection_profile_get_proxy_address(profileHandle, CONNECTION_ADDRESS_FAMILY_IPV4, &pProxyAddr);
-       SysLog(NID_NET, "The return value from connection_profile_get_proxy_address() is [%d], Proxy address is [%s]", ret, pProxyAddr);
+       SysSecureLog(NID_NET, "The return value from connection_profile_get_proxy_address() is [%d], Proxy address is [%s]", ret, pProxyAddr);
        if ((ret == CONNECTION_ERROR_NONE) && (pProxyAddr != null))
        {
                proxyAddress = String(pProxyAddr);
index 672f4f2..36bfaeb 100644 (file)
@@ -63,7 +63,7 @@ PsOpenCallback(connection_error_e res, void* pUserData)
        ret = connection_profile_get_state(profileHandle, &state);
        SysLog(NID_NET, "The return value from connection_profile_get_state() is %d", ret);
 
-       SysLog(NID_NET, "PsOpenCallback() has been called with res:%d, state:%d, name:[%s][%s]", res, state, pProfileDisplayName, pProfileName);
+       SysSecureLog(NID_NET, "PsOpenCallback() has been called with res:%d, state:%d, name:[%s][%s]", res, state, pProfileDisplayName, pProfileName);
 
        if ((res == CONNECTION_ERROR_NONE) && (state == CONNECTION_PROFILE_STATE_CONNECTED))
        {
@@ -116,7 +116,7 @@ PsCloseCallback(connection_error_e res, void* pUserData)
        ret = connection_profile_get_state(profileHandle, &state);
        SysLog(NID_NET, "The return value from connection_profile_get_state() is %d", ret);
 
-       SysLog(NID_NET, "PsCloseCallback() has been called with res:%d, state:%d, name:[%s][%s]", res, state, pProfileDisplayName, pProfileName);
+       SysSecureLog(NID_NET, "PsCloseCallback() has been called with res:%d, state:%d, name:[%s][%s]", res, state, pProfileDisplayName, pProfileName);
 
        if ((res == CONNECTION_ERROR_NONE) && (state == CONNECTION_PROFILE_STATE_CONNECTED))
        {
@@ -159,7 +159,7 @@ PsStateChangedCallback(connection_profile_state_e state, void* pUserData)
        ret = connection_profile_get_name(profileHandle, &pProfileDisplayName);
        SysLog(NID_NET, "The return value from connection_profile_get_name() is %d", ret);
 
-       SysLog(NID_NET, "PsStateChangedCallback() has been called with state:%d, name:[%s][%s]", state, pProfileDisplayName, pProfileName);
+       SysSecureLog(NID_NET, "PsStateChangedCallback() has been called with state:%d, name:[%s][%s]", state, pProfileDisplayName, pProfileName);
 
        if (state == CONNECTION_PROFILE_STATE_CONNECTED)
        {
index 4f7ca29..ec86764 100644 (file)
@@ -141,7 +141,7 @@ _UsbSystemNetConnection::UpdateConnectionInfo(bool isStarted)
                String ipAddr;
 
                ret = tethering_get_ip_address(tetheringHandle, TETHERING_TYPE_USB, TETHERING_ADDRESS_FAMILY_IPV4, &pIpAddr);
-               SysLog(NID_NET, "tethering_get_ip_address() ret[%d] addr[%s]", ret, pIpAddr);
+               SysSecureLog(NID_NET, "tethering_get_ip_address() ret[%d] addr[%s]", ret, pIpAddr);
                if ((ret == TETHERING_ERROR_NONE) && (pIpAddr != null))
                {
                        ipAddr = String(pIpAddr);
@@ -150,7 +150,7 @@ _UsbSystemNetConnection::UpdateConnectionInfo(bool isStarted)
                }
 
                ret = tethering_get_subnet_mask(tetheringHandle, TETHERING_TYPE_USB, TETHERING_ADDRESS_FAMILY_IPV4, &pIpAddr);
-               SysLog(NID_NET, "tethering_get_subnet_mask() ret[%d] addr[%s]", ret, pIpAddr);
+               SysSecureLog(NID_NET, "tethering_get_subnet_mask() ret[%d] addr[%s]", ret, pIpAddr);
                if ((ret == TETHERING_ERROR_NONE) && (pIpAddr != null))
                {
                        ipAddr = String(pIpAddr);
@@ -159,7 +159,7 @@ _UsbSystemNetConnection::UpdateConnectionInfo(bool isStarted)
                }
 
                ret = tethering_get_gateway_address(tetheringHandle, TETHERING_TYPE_USB, TETHERING_ADDRESS_FAMILY_IPV4, &pIpAddr);
-               SysLog(NID_NET, "tethering_get_gateway_address() ret[%d] addr[%s]", ret, pIpAddr);
+               SysSecureLog(NID_NET, "tethering_get_gateway_address() ret[%d] addr[%s]", ret, pIpAddr);
                if ((ret == TETHERING_ERROR_NONE) && (pIpAddr != null))
                {
                        ipAddr = String(pIpAddr);
@@ -171,7 +171,7 @@ _UsbSystemNetConnection::UpdateConnectionInfo(bool isStarted)
                String devName;
 
                ret = tethering_get_network_interface_name(tetheringHandle, TETHERING_TYPE_USB, &pDevName);
-               SysLog(NID_NET, "tethering_get_network_interface_name() ret[%d] devName[%s]", ret, pDevName);
+               SysSecureLog(NID_NET, "tethering_get_network_interface_name() ret[%d] devName[%s]", ret, pDevName);
                if ((ret == TETHERING_ERROR_NONE) && (pDevName != null))
                {
                        devName = String(pDevName);
index f786d49..010926c 100644 (file)
@@ -58,16 +58,16 @@ struct ParamTraits<Tizen::Net::NetAccountInfo>
                Tizen::Net::NetAddressScheme dnsAddressScheme;
                Tizen::Net::NetEndPoint* pNetEndPoint;
 
-               SysLog(NID_NET, "Writting... APN : %ls", p.GetAccessPointName().GetPointer());
+               SysSecureLog(NID_NET, "Writting... APN : %ls", p.GetAccessPointName().GetPointer());
                WriteParam(m, p.GetAccessPointName());
-               SysLog(NID_NET, "Writting... Account Id : %d", p.GetAccountId());
+               SysSecureLog(NID_NET, "Writting... Account Id : %d", p.GetAccountId());
                m->WriteInt(p.GetAccountId());
-               SysLog(NID_NET, "Writting... Account Name : %ls", p.GetAccountName().GetPointer());
+               SysSecureLog(NID_NET, "Writting... Account Name : %ls", p.GetAccountName().GetPointer());
                WriteParam(m, p.GetAccountName());
 
                // AuthenticationInfo
                p.GetAuthenticationInfo(authType, authId, authPassword);
-               SysLog(NID_NET, "Writting... Auth Info (Type, Id, Pw) : (%d, %ls, %ls)", authType, authId.GetPointer(), authPassword.GetPointer());
+               SysSecureLog(NID_NET, "Writting... Auth Info (Type, Id, Pw) : (%d, %ls, %ls)", authType, authId.GetPointer(), authPassword.GetPointer());
 
                m->WriteInt(authType);
                WriteParam(m, authId);
@@ -206,19 +206,19 @@ struct ParamTraits<Tizen::Net::NetAccountInfo>
                {
                        return false;
                }
-               SysLog(NID_NET, "AccessPointName : %ls", accessPointName.GetPointer());
+               SysSecureLog(NID_NET, "AccessPointName : %ls", accessPointName.GetPointer());
                r->SetAccessPointName(accessPointName);
 
                // Account Id (No Setter)
                m->ReadInt(iter, &accountId);
-               SysLog(NID_NET, "AccountId : %d", accountId);
+               SysSecureLog(NID_NET, "AccountId : %d", accountId);
 
                // Account Name
                if (!ReadParam(m, iter, &accountName))
                {
                        return false;
                }
-               SysLog(NID_NET, "AccountName : %ls", accountName.GetPointer());
+               SysSecureLog(NID_NET, "AccountName : %ls", accountName.GetPointer());
                r->SetAccountName(accountName);
 
                // Authentication Info
@@ -228,12 +228,12 @@ struct ParamTraits<Tizen::Net::NetAccountInfo>
                {
                        return false;
                }
-               SysLog(NID_NET, "authId : %ls", authId.GetPointer());
+               SysSecureLog(NID_NET, "authId : %ls", authId.GetPointer());
                if (!ReadParam(m, iter, &authPassword))
                {
                        return false;
                }
-               SysLog(NID_NET, "authPassword : %ls", authPassword.GetPointer());
+               SysSecureLog(NID_NET, "authPassword : %ls", authPassword.GetPointer());
                r->SetAuthenticationInfo((Tizen::Net::NetNapAuthType)authType, authId, authPassword);
 
                // Home URL