Skip to content

fix(express): get route #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

fix(express): get route #1

wants to merge 1 commit into from

Conversation

DmytryS
Copy link
Collaborator

@DmytryS DmytryS commented Nov 20, 2024

Which problem is this PR solving?

Short description of the changes

}
rootConnection = createConnection({
port,
user: 'root',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "root" is used as
user name
.
}
rootConnection = await createConnection({
port,
user: 'root',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "root" is used as
user name
.
import { PgInstrumentation } from '../../build/src/index.js';

const CONFIG = {
user: process.env.POSTGRES_USER || 'postgres',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "postgres" is used as
user name
.

const CONFIG = {
user: process.env.POSTGRES_USER || 'postgres',
password: process.env.POSTGRES_PASSWORD || 'postgres',

Check failure

Code scanning / CodeQL

Hard-coded credentials Critical test

The hard-coded value "postgres" is used as
password
.
@DmytryS DmytryS force-pushed the fix/express-route branch from b77b969 to d81835f Compare March 11, 2025 12:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant