Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 2 KB

securing-jdbc-driver-applications.md

File metadata and controls

31 lines (24 loc) · 2 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic
Securing applications
These articles describe some common security concerns including connection strings, validating user input, and general application security.
David-Engel
davidengel
03/31/2021
sql
connectivity
conceptual

Securing JDBC driver applications

[!INCLUDEDriver_JDBC_Download]

Enhancing the security of a [!INCLUDEjdbcNoVersion] application is crucial. Security involves more than avoiding common coding pitfalls. An application that accesses data has many potential failure points that an attacker can exploit. Security failures may allow attackers to retrieve, manipulate, or destroy sensitive data. It's important to understand all aspects of application security. From the process of threat modeling during the design phase to eventual deployment, and continuing through ongoing maintenance.

The articles in this section describe some common security concerns including connection strings, validating user input, and general application security.

In this section

Article Description
Securing connection strings Describes techniques to help protect information used to connect to a data source.
Validating user input Describes techniques to validate user input.
Application security Describes how to use Java policy permissions to help secure a JDBC driver application.
Using encryption Describes how to establish a secure communication channel with a [!INCLUDEssNoVersion] database using Transport Layer Security (TLS), previously known as Secure Sockets Layer (SSL).
FIPS mode Describes how to use JDBC driver in FIPS-compliant mode.

See also

Overview of the JDBC driver