Add awesome new feature - #1
Conversation
|
|
|
||
| def get_single_pokemon(self, pokemon_id): | ||
| statement = f"SELECT * FROM POKEDEX WHERE id = '{pokemon_id}'" | ||
| return self.__conn.execute(statement).fetchone() |
Check failure
Code scanning / SonarCloud
Database queries should not be vulnerable to injection attacks High
| {% block content %} | ||
| <div class="full-page d-flex flex-wrap justify-content-center align-items-center"> | ||
| <div class="container d-flex flex-column flex-wrap justify-content-start align-items-center text-center py-5 m-auto margin-mobile"> | ||
| <h1>{{ name }} # {% autoescape false %} {{ pokemon_id }} {% endautoescape %}</h1> |
Check failure
Code scanning / SonarCloud
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
|
|
|
||
| def get_single_pokemon(self, pokemon_id): | ||
| statement = f"SELECT * FROM POKEDEX WHERE id = '{pokemon_id}'" | ||
| return self.__conn.execute(statement).fetchone() |
Check failure
Code scanning / SonarCloudDev7
Database queries should not be vulnerable to injection attacks High
| {% block content %} | ||
| <div class="full-page d-flex flex-wrap justify-content-center align-items-center"> | ||
| <div class="container d-flex flex-column flex-wrap justify-content-start align-items-center text-center py-5 m-auto margin-mobile"> | ||
| <h1>{{ name }} # {% autoescape false %} {{ pokemon_id }} {% endautoescape %}</h1> |
Check failure
Code scanning / SonarCloudDev7
Endpoints should not be vulnerable to reflected cross-site scripting (XSS) attacks High
| {% block content %} | ||
| <div class="full-page d-flex flex-wrap justify-content-center align-items-center"> | ||
| <div class="container d-flex flex-column flex-wrap justify-content-start align-items-center text-center py-5 m-auto margin-mobile"> | ||
| <h1>{{ name }} # {% autoescape false %} {{ pokemon_id }} {% endautoescape %}</h1> |
Check warning
Code scanning / SonarCloudDev7
Auto-escaping in HTML template engines should not be disabled Medium




No description provided.