# Usage of hard-coded Passport Secret

## Overview

* **Rule ID**: `javascript_third_parties_passport_hardcoded_secret`
* **Applicable Languages**: Javascript
* **Weakness ID**: CWE-798

## Description

Storing secrets directly in your code, such as a passport authentication secret, is insecure. This approach makes your application susceptible to attacks if the codebase is exposed.

## Remediation Guidelines

* **Avoid** hard-coding secrets in your application code. Hard-coding makes sensitive information readily accessible to anyone who can view the code.

  ```javascript
  const strategy = new GoogleStrategy({ clientSecret: 'your_hardcoded_secret' }); // unsafe
  passport.use(strategy);

  ```
* **Use environment variables** to manage secrets securely. This approach keeps sensitive information out of your codebase and makes it harder for unauthorized users to access.

  ```javascript
  const strategy = new GoogleStrategy({ clientSecret: process.env.GOOGLE_SECRET });
  passport.use(strategy);

  ```

## References

* [**OWASP hardcoded passwords**](https://owasp.org/www-community/vulnerabilities/Use_of_hard-coded_password)
* [**CWE-798: Use of Hard-coded Credentials**](https://cwe.mitre.org/data/definitions/798.html)
* [**OWASP Top 10: A07:2021 - Identification and Authentication Failures**](https://owasp.org/Top10/A07_2021-Identification_and_Authentication_Failures/)

## Configuration

To omit this rule during a scan, and to provide you with continuous 24/7 code-level scanning, you can employ our [**SAST TOOL**](https://scopy.sec1.io/login)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sec1.io/user-docs/4-sast/3-javascript/usage-of-hard-coded-passport-secret.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
