Application for managing recipes, planning meals, building shopping lists and much much more!
This report presents the forensic synthetic code analysis of TandoorRecipes/recipes, a HTML project with 8,498 GitHub stars. SynthScan v2.0 examined 243,598 lines of code across 811 source files, recording 1351 pattern matches distributed across 16 syntactic categories. The overall adjusted score of 6.9 places this repository in the Low AI signal band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
Longitudinal tracking requires multiple scan runs. Once this repository is re-scanned after new commits land, this chart will visualise how the synthetic code signal evolves over time — enabling you to detect whether AI authorship is growing, stabilising, or being actively corrected by human engineers.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1351 distinct pattern matches across 16 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/signals.py | 53 | def update_recipe_search_vector(sender, instance=None, created=False, **kwargs): | CODE |
| LOW | cookbook/signals.py | 69 | def update_step_search_vector(sender, instance=None, created=False, **kwargs): | CODE |
| LOW | cookbook/signals.py | 131 | def clear_property_type_cache(sender, instance=None, created=False, **kwargs): | CODE |
| LOW | cookbook/signals.py | 149 | def invalidate_household_cache_on_save(sender, instance=None, **kwargs): | CODE |
| LOW | cookbook/signals.py | 165 | def invalidate_household_cache_on_delete(sender, instance=None, **kwargs): | CODE |
| LOW | cookbook/admin.py | 285 | def delete_unattached_ingredients(modeladmin, request, queryset): | CODE |
| LOW | cookbook/admin.py | 411 | def delete_properties_with_type(modeladmin, request, queryset): | CODE |
| LOW | cookbook/serializer.py | 367 | def handle_global_space_logic(self, validated_data, instance=None): | CODE |
| LOW | cookbook/serializer.py | 431 | def get_ai_monthly_credits_used(self, obj): | CODE |
| LOW | cookbook/serializer.py | 461 | def filter_superuser_parameters(self, validated_data): | CODE |
| LOW | cookbook/serializer.py | 561 | def get_food_inherit_defaults(self, obj): | CODE |
| LOW | cookbook/serializer.py | 1065 | def get_instructions_markdown(self, obj): | CODE |
| LOW | cookbook/templatetags/custom_tags.py | 153 | def plugin_dropdown_nav_templates(): | CODE |
| LOW | cookbook/templatetags/custom_tags.py | 162 | def plugin_main_nav_templates(): | CODE |
| LOW | cookbook/connectors/homeassistant.py | 35 | async def on_shopping_list_entry_created(self, shopping_list_entry: ShoppingListEntryDTO) -> None: | CODE |
| LOW | cookbook/connectors/homeassistant.py | 56 | async def on_shopping_list_entry_updated(self, shopping_list_entry: ShoppingListEntryDTO) -> None: | CODE |
| LOW | cookbook/connectors/homeassistant.py | 61 | async def on_shopping_list_entry_deleted(self, shopping_list_entry: ShoppingListEntryDTO) -> None: | CODE |
| LOW | cookbook/connectors/homeassistant.py | 84 | def _format_shopping_list_entry(shopping_list_entry: ShoppingListEntryDTO) -> Tuple[str, str]: | CODE |
| LOW⚡ | cookbook/connectors/connector.py | 50 | async def on_shopping_list_entry_created(self, instance: ShoppingListEntryDTO) -> None: | CODE |
| LOW⚡ | cookbook/connectors/connector.py | 55 | async def on_shopping_list_entry_updated(self, instance: ShoppingListEntryDTO) -> None: | CODE |
| LOW⚡ | cookbook/connectors/connector.py | 59 | async def on_shopping_list_entry_deleted(self, instance: ShoppingListEntryDTO) -> None: | CODE |
| LOW | cookbook/integration/gourmet.py | 25 | def get_ingredients_recursive(self, step, ingredients, ingredient_parser): | CODE |
| LOW | cookbook/integration/cooklang.py | 17 | def apply_metadata_cooklang_to_tandoor(self, cooklang_metadata: dict, tandoor_recipe: Recipe) -> None: | CODE |
| LOW | cookbook/tests/conftest.py | 60 | def enable_db_access_for_all_tests(db): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 163 | def test_adapter_social_signup_allowed_with_providers(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 170 | def test_adapter_social_signup_blocked_without_providers(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 177 | def test_adapter_local_signup_allowed_when_enabled(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 184 | def test_adapter_local_signup_blocked_when_disabled(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 191 | def test_adapter_local_signup_allowed_with_invite_token(adapter, invite_link): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 198 | def test_adapter_local_signup_blocked_with_expired_invite(adapter, invite_space): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 215 | def test_adapter_local_signup_blocked_with_invalid_token(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 222 | def test_adapter_oauth_callback_allowed(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 229 | def test_adapter_unknown_view_allowed(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 236 | def test_adapter_no_resolver_match(adapter): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 247 | def test_invite_link_unauthenticated_redirects_to_signup(client, invite_link): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 256 | def test_invite_link_unauthenticated_social_only_redirects_to_login(client, invite_link): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 264 | def test_invite_link_stores_token_in_session(client, invite_link): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 271 | def test_invite_link_authenticated_user_joins_space(client, invite_link, invite_space): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 368 | def test_mask_email_short_local(): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 372 | def test_mask_email_no_domain(): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 376 | def test_mask_email_empty_local(): | CODE |
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 380 | def test_on_authentication_error_stores_errors(rf, tmp_path, settings): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 79 | def test_social_default_access_adds_user_to_existing_space( | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 99 | def test_social_default_access_disabled_does_nothing( | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 112 | def test_social_default_access_uses_first_space( | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 131 | def test_social_default_access_no_space_exists( | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 147 | def test_social_default_access_bad_group( | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 284 | def test_invite_link_invalid_uuid(client): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 307 | def test_invite_link_authenticated_user_already_in_space(client, invite_link, invite_space): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 323 | def test_invite_link_authenticated_user_verifies_group(client, invite_link, invite_space): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 336 | def test_invite_link_deactivates_other_spaces(client, invite_link, invite_space): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 354 | def test_invite_link_nonexistent_uuid(client): | CODE |
| LOW | cookbook/tests/other/test_social_auth.py | 426 | def test_on_authentication_error_includes_chained_cause(rf, tmp_path): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 64 | def test_makenow_ignoreshopping(recipes, makenow_recipe, shared_household, space_1, make_search_request, u1_s1): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 113 | def test_makenow_child_substitute(recipes, makenow_recipe, shared_household, space_1, make_search_request, u1_s1): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 143 | def test_makenow_sibling_substitute(recipes, makenow_recipe, shared_household, space_1, make_search_request, u1_s1): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 182 | def test_makenow_zero_amount_not_available(recipes, shared_household, space_1, make_search_request, u1_s1): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 200 | def test_makenow_other_household_not_visible(recipes, space_1, u1_s1, u2_s1, make_search_request): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 229 | def test_makenow_ignoreshopping_onhand_no_double_count(recipes, shared_household, space_1, make_search_request, u1_s1): | CODE |
| LOW | cookbook/tests/other/test_recipe_search_makenow.py | 262 | def test_makenow_no_household_returns_empty(recipes, space_1, u1_s1, make_search_request): | CODE |
| 968 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | version.py | 65 | except Exception: | CODE |
| LOW | plugin.py | 15 | except Exception: | CODE |
| LOW | cookbook/signals.py | 142 | except Exception: | CODE |
| LOW | cookbook/models.py | 1653 | except Exception: | CODE |
| MEDIUM | cookbook/models.py | 1234 | def get_owner(self): | CODE |
| LOW | cookbook/serializer.py | 195 | except Exception: | CODE |
| LOW | cookbook/serializer.py | 278 | except Exception: | CODE |
| LOW | cookbook/serializer.py | 339 | except Exception: | CODE |
| MEDIUM | cookbook/serializer.py | 156 | def to_representation(self, obj): | CODE |
| MEDIUM | cookbook/serializer.py | 335 | def get_preview_link(self, obj): | CODE |
| LOW | cookbook/integration/mealmaster.py | 32 | except Exception as e: | CODE |
| LOW | cookbook/integration/mealmaster.py | 72 | except Exception as e: | CODE |
| LOW | cookbook/integration/plantoeat.py | 78 | except Exception as e: | CODE |
| LOW | cookbook/integration/recipekeeper.py | 81 | except Exception as e: | CODE |
| LOW⚡ | cookbook/integration/nextcloud_cookbook.py | 33 | except Exception: | CODE |
| LOW⚡ | cookbook/integration/nextcloud_cookbook.py | 42 | except Exception: | CODE |
| LOW⚡ | cookbook/integration/nextcloud_cookbook.py | 50 | except Exception: | CODE |
| LOW | cookbook/integration/nextcloud_cookbook.py | 94 | except Exception: | CODE |
| LOW | cookbook/integration/melarecipes.py | 43 | except Exception: | CODE |
| LOW | cookbook/integration/melarecipes.py | 77 | except Exception: | CODE |
| LOW | cookbook/integration/copymethat.py | 122 | except Exception as e: | CODE |
| LOW | cookbook/integration/recipesage.py | 32 | except Exception as e: | CODE |
| LOW | cookbook/integration/recipesage.py | 79 | except Exception as e: | CODE |
| LOW | cookbook/integration/recipesage.py | 87 | except Exception as e: | CODE |
| LOW | cookbook/integration/recipesage.py | 138 | except Exception as e: | CODE |
| MEDIUM | cookbook/integration/recipesage.py | 131 | def split_recipe_file(self, file): | CODE |
| LOW | cookbook/integration/mealie1.py | 369 | except Exception: | CODE |
| LOW | cookbook/integration/integration.py | 225 | except Exception as e: | CODE |
| LOW | cookbook/integration/integration.py | 241 | except Exception as e: | CODE |
| LOW | cookbook/integration/integration.py | 258 | except Exception as e: | CODE |
| LOW | cookbook/integration/integration.py | 271 | except Exception as e: | CODE |
| LOW | cookbook/integration/gourmet.py | 200 | except Exception as e: | CODE |
| LOW | cookbook/integration/rezeptsuitede.py | 41 | except Exception: | CODE |
| LOW | cookbook/integration/rezeptsuitede.py | 65 | except Exception: | CODE |
| LOW | cookbook/integration/cookmate.py | 72 | except Exception as e: | CODE |
| LOW | cookbook/integration/paprika.py | 40 | except Exception: | CODE |
| LOW | cookbook/integration/paprika.py | 96 | except Exception: | CODE |
| LOW | cookbook/integration/cooklang.py | 61 | except Exception as e: | CODE |
| LOW | cookbook/integration/recettetek.py | 40 | except Exception as e: | CODE |
| LOW | cookbook/integration/recettetek.py | 54 | except Exception as e: | CODE |
| LOW | cookbook/integration/recettetek.py | 68 | except Exception as e: | CODE |
| LOW⚡ | cookbook/integration/recettetek.py | 80 | except Exception as e: | CODE |
| LOW⚡ | cookbook/integration/recettetek.py | 86 | except Exception as e: | CODE |
| LOW⚡ | cookbook/integration/recettetek.py | 92 | except Exception as e: | CODE |
| LOW⚡ | cookbook/integration/recettetek.py | 98 | except Exception as e: | CODE |
| LOW | cookbook/integration/recettetek.py | 110 | except Exception as e: | CODE |
| LOW | cookbook/integration/recettetek.py | 132 | except Exception as e: | CODE |
| LOW | cookbook/integration/cookbookapp.py | 117 | except Exception: | CODE |
| LOW | cookbook/integration/cookbookapp.py | 128 | except Exception as e: | CODE |
| LOW | cookbook/integration/mealie.py | 56 | except Exception: | CODE |
| LOW | cookbook/integration/mealie.py | 93 | except Exception: | CODE |
| LOW | cookbook/tests/other/test_open_data_importer.py | 182 | except Exception as e: | CODE |
| LOW | cookbook/management/commands/rebuildindex.py | 30 | except Exception: | CODE |
| LOW | cookbook/views/telegram.py | 61 | except Exception: | CODE |
| MEDIUM | cookbook/views/telegram.py | 40 | def hook(request, token): | CODE |
| MEDIUM | cookbook/views/api.py | 1066 | def _shared_users(self): | CODE |
| MEDIUM | cookbook/views/api.py | 1307 | def destroy(self, *args, **kwargs): | CODE |
| LOW | cookbook/views/api.py | 421 | except Exception: | CODE |
| LOW | cookbook/views/api.py | 1211 | except Exception: | CODE |
| LOW | cookbook/views/api.py | 1298 | except Exception as err: | CODE |
| 58 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | cookbook/forms.py | 8 | from django.core.exceptions import ValidationError | CODE |
| CRITICAL | cookbook/static/js/jquery-3.5.1.min.js | 2 | !function(e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.document?t(e,!0):f | CODE |
| CRITICAL | cookbook/views/api.py | 28 | from django.core.exceptions import FieldError, ValidationError | CODE |
| CRITICAL | cookbook/views/api.py | 297 | self.request.user.searchpreference.trigram.values_list('field', flat=True)]) | CODE |
| CRITICAL | cookbook/views/api.py | 306 | self.request.user.searchpreference.unaccent.values_list('field', flat=True)]) | CODE |
| CRITICAL | cookbook/views/api.py | 317 | self.request.user.searchpreference.unaccent.values_list('field', flat=True)]) and ( | CODE |
| CRITICAL | cookbook/views/views.py | 17 | from django.core.exceptions import ValidationError, PermissionDenied, BadRequest | CODE |
| CRITICAL | cookbook/helper/HelperFunctions.py | 7 | from django.core.exceptions import ValidationError | CODE |
| CRITICAL | vue3/src/components/display/ShoppingLineItem.vue | 216 | let meal_plan_entry = (e.listRecipeData.mealPlanData.mealType.name.substring(0, 8) || '') + (e.listRecip | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/apps.py | 1 | CODE | |
| LOW | cookbook/apps.py | 5 | CODE | |
| LOW | cookbook/apps.py | 5 | CODE | |
| LOW | cookbook/apps.py | 7 | CODE | |
| LOW | cookbook/apps.py | 9 | CODE | |
| LOW | cookbook/apps.py | 16 | CODE | |
| LOW | cookbook/serializer.py | 12 | CODE | |
| LOW | cookbook/urls.py | 4 | CODE | |
| LOW | cookbook/urls.py | 9 | CODE | |
| LOW | cookbook/integration/plantoeat.py | 5 | CODE | |
| LOW | cookbook/integration/recipekeeper.py | 3 | CODE | |
| LOW | cookbook/integration/copymethat.py | 2 | CODE | |
| LOW | cookbook/integration/mealie1.py | 2 | CODE | |
| LOW | cookbook/integration/mealie1.py | 3 | CODE | |
| LOW | cookbook/integration/mealie1.py | 7 | CODE | |
| LOW | cookbook/integration/mealie1.py | 13 | CODE | |
| LOW | cookbook/integration/mealie1.py | 15 | CODE | |
| LOW | cookbook/integration/mealie1.py | 15 | CODE | |
| LOW | cookbook/integration/gourmet.py | 1 | CODE | |
| LOW | cookbook/integration/gourmet.py | 3 | CODE | |
| LOW | cookbook/integration/gourmet.py | 4 | CODE | |
| LOW | cookbook/integration/gourmet.py | 10 | CODE | |
| LOW | cookbook/integration/gourmet.py | 10 | CODE | |
| LOW | cookbook/integration/gourmet.py | 10 | CODE | |
| LOW | cookbook/integration/gourmet.py | 13 | CODE | |
| LOW | cookbook/integration/cooklang.py | 2 | CODE | |
| LOW | cookbook/integration/cooklang.py | 2 | CODE | |
| LOW | cookbook/integration/recettetek.py | 4 | CODE | |
| LOW | cookbook/integration/mealie.py | 4 | CODE | |
| LOW | cookbook/tests/other/test_theming.py | 6 | CODE | |
| LOW | cookbook/tests/other/test_theming.py | 7 | CODE | |
| LOW | cookbook/tests/other/test_cooklang_integration.py | 1 | CODE | |
| LOW | cookbook/tests/other/conftest.py | 12 | CODE | |
| LOW | cookbook/tests/other/test_open_data_importer.py | 15 | CODE | |
| LOW | cookbook/tests/other/test_open_data_importer.py | 16 | CODE | |
| LOW | cookbook/tests/other/test_local_provider.py | 1 | CODE | |
| LOW | cookbook/tests/other/test_template_helper.py | 4 | CODE | |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 4 | CODE | |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 6 | CODE | |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 6 | CODE | |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 8 | CODE | |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 8 | CODE | |
| LOW | cookbook/tests/api/test_api_shopping_recipe.py | 10 | CODE | |
| LOW | cookbook/tests/api/test_api_shopping_recipe.py | 10 | CODE | |
| LOW | cookbook/tests/api/test_api_shopping_recipe.py | 11 | CODE | |
| LOW | cookbook/tests/api/test_api_ai_provider.py | 7 | CODE | |
| LOW | cookbook/tests/api/test_api_ai_provider.py | 7 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 1 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 3 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 5 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 6 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 9 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 10 | CODE | |
| LOW | cookbook/management/commands/seed_basic_data.py | 10 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 1 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 2 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 5 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 9 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 10 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 10 | CODE | |
| 27 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/models.py | 70 | CODE | |
| LOW | cookbook/models.py | 852 | CODE | |
| LOW | cookbook/forms.py | 181 | CODE | |
| LOW | cookbook/serializer.py | 51 | CODE | |
| LOW | cookbook/serializer.py | 173 | CODE | |
| LOW | cookbook/serializer.py | 1546 | CODE | |
| LOW | cookbook/managers.py | 409 | CODE | |
| LOW | cookbook/connectors/connector_manager.py | 108 | CODE | |
| LOW | cookbook/integration/mealmaster.py | 10 | CODE | |
| LOW | cookbook/integration/plantoeat.py | 12 | CODE | |
| LOW | cookbook/integration/cheftap.py | 14 | CODE | |
| LOW | cookbook/integration/nextcloud_cookbook.py | 20 | CODE | |
| LOW | cookbook/integration/copymethat.py | 21 | CODE | |
| LOW | cookbook/integration/recipesage.py | 14 | CODE | |
| LOW | cookbook/integration/mealie1.py | 25 | CODE | |
| LOW | cookbook/integration/integration.py | 140 | CODE | |
| LOW | cookbook/integration/default.py | 29 | CODE | |
| LOW | cookbook/integration/default.py | 30 | CODE | |
| LOW | cookbook/integration/gourmet.py | 25 | CODE | |
| LOW | cookbook/integration/gourmet.py | 61 | CODE | |
| LOW | cookbook/integration/chowdown.py | 25 | CODE | |
| LOW | cookbook/integration/chowdown.py | 174 | CODE | |
| LOW | cookbook/integration/rezeptsuitede.py | 16 | CODE | |
| LOW | cookbook/integration/cookmate.py | 18 | CODE | |
| LOW | cookbook/integration/paprika.py | 20 | CODE | |
| LOW | cookbook/integration/cooklang.py | 17 | CODE | |
| LOW | cookbook/integration/recettetek.py | 29 | CODE | |
| LOW | cookbook/integration/cookbookapp.py | 23 | CODE | |
| LOW | cookbook/tests/conftest.py | 42 | CODE | |
| LOW | cookbook/tests/conftest.py | 135 | CODE | |
| LOW | …okbook/management/commands/fix_duplicate_properties.py | 20 | CODE | |
| LOW | cookbook/views/api.py | 291 | CODE | |
| LOW | cookbook/views/api.py | 353 | CODE | |
| LOW | cookbook/views/api.py | 444 | CODE | |
| LOW | cookbook/views/api.py | 603 | CODE | |
| LOW | cookbook/views/api.py | 635 | CODE | |
| LOW | cookbook/views/api.py | 1129 | CODE | |
| LOW | cookbook/views/api.py | 1222 | CODE | |
| LOW | cookbook/views/api.py | 1315 | CODE | |
| LOW | cookbook/views/api.py | 1851 | CODE | |
| LOW | cookbook/views/api.py | 1951 | CODE | |
| LOW | cookbook/views/api.py | 2033 | CODE | |
| LOW | cookbook/views/api.py | 2213 | CODE | |
| LOW | cookbook/views/api.py | 2326 | CODE | |
| LOW | cookbook/views/api.py | 2585 | CODE | |
| LOW | cookbook/views/api.py | 2711 | CODE | |
| LOW | cookbook/views/api.py | 2879 | CODE | |
| LOW | cookbook/views/api.py | 3004 | CODE | |
| LOW | cookbook/views/api.py | 3272 | CODE | |
| LOW | cookbook/views/views.py | 87 | CODE | |
| LOW | cookbook/views/views.py | 163 | CODE | |
| LOW | cookbook/views/views.py | 349 | CODE | |
| LOW | cookbook/views/views.py | 381 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 17 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 216 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 336 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 365 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 413 | CODE | |
| LOW | cookbook/helper/recipe_url_import.py | 517 | CODE | |
| LOW | cookbook/helper/unit_conversion_helper.py | 72 | CODE | |
| 12 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | cookbook/tests/other/test_social_auth.py | 365 | assert _mask_email('user@example.com') == 'u***@example.com' | CODE |
| LOW⚡ | cookbook/tests/other/test_ingredient_parser.py | 74 | "1 Lorem ipsum dolor sit amet consetetur sadipscing elitr sed diam nonumy eirmod tempor invidunt ut l Lorem ipsu | CODE |
| LOW⚡ | cookbook/tests/other/test_ingredient_parser.py | 74 | "1 Lorem ipsum dolor sit amet consetetur sadipscing elitr sed diam nonumy eirmod tempor invidunt ut l Lorem ipsu | CODE |
| LOW⚡ | cookbook/tests/other/test_ingredient_parser.py | 76 | 'dolor sit amet consetetur sadipscing elitr sed diam nonumy eirmod tempor invidunt ut l Lorem ipsum dolor si | CODE |
| LOW⚡ | cookbook/tests/other/test_ingredient_parser.py | 76 | 'dolor sit amet consetetur sadipscing elitr sed diam nonumy eirmod tempor invidunt ut l Lorem ipsum dolor si | CODE |
| LOW | cookbook/tests/other/test_data/journaldesfemmes.html | 1694 | <div class="placeholder"></div> | CODE |
| LOW | cookbook/tests/other/test_data/journaldesfemmes.html | 1704 | <script type="text/javascript"> $data = {"common":{"lang":"FR","selfurl":"\/recette\/317747-ratatouille","status_code":" | CODE |
| LOW | cookbook/tests/api/test_api_access_token.py | 73 | {'scope': 'lorem ipsum'}, | CODE |
| LOW⚡ | docs/tests/tests.html | 111 | <div id="data-container" data-jsonblob="{"environment": {"Python": "3.10.13", "Platform& | CODE |
| LOW⚡ | docs/tests/tests.html | 111 | <div id="data-container" data-jsonblob="{"environment": {"Python": "3.10.13", "Platform& | CODE |
| LOW | vue3/src/components/dialogs/MessageListDialog.vue | 168 | useMessageStore().addMessage(types[Math.floor(Math.random() * types.length)], {title: 'Test', text: `Lorem Ipsum Lor | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/apps.py | 21 | post_save.connect(handler, dispatch_uid="post_save-connector_manager") | COMMENT |
| LOW | cookbook/apps.py | 41 | # except Exception: | COMMENT |
| LOW | cookbook/integration/cooklang.py | 121 | # # Export Recipe Logic - convert from Recipe() object to a writable string in your integration's format | COMMENT |
| LOW | cookbook/integration/cooklang.py | 141 | # el.save() | COMMENT |
| LOW | cookbook/tests/other/test_data/thespruceeats.html | 61 | #onetrust-banner-sdk{box-shadow:0 0 18px rgba(0,0,0,.2)}#onetrust-banner-sdk.otFlat{position:fixed;z-index:2147483645;bo | COMMENT |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 61 | content_type='application/json' | COMMENT |
| LOW | cookbook/tests/api/test_api_food_shopping.py | 81 | # | COMMENT |
| LOW | cookbook/tests/views/test_views_general.py | 1 | import pytest | COMMENT |
| LOW | cookbook/tests/views/test_views_general.py | 21 | # ]) | COMMENT |
| LOW | cookbook/tests/views/test_views_general.py | 41 | # ['u1_s1', 200], | COMMENT |
| LOW | cookbook/tests/views/test_views_general.py | 61 | # ['a_u', 302], | COMMENT |
| LOW | vue3/src/stores/MealPlanStore.ts | 141 | loading.value = false | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM⚡ | cookbook/tests/api/test_api_invitelinke.py | 124 | # ============================================================================ | COMMENT |
| MEDIUM⚡ | cookbook/tests/api/test_api_invitelinke.py | 128 | # ============================================================================ | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | vue3/src/openapi/runtime.ts | 126 | * @return True if the given MIME is JSON, false otherwise. | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | cookbook/integration/cookbookapp.py | 32 | # Initialize recipe class | COMMENT |
| MEDIUM | cookbook/tests/api/test_api_ai_timeout.py | 121 | # Create a small valid PNG image for the file upload | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | cookbook/templatetags/custom_tags.py | 184 | if(window.bookmarkletTandoor!==undefined){ \ | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | docs/system/backup.md | 16 | I personally use a [little script](https://github.com/vabene1111/DockerPostgresBackups) that I have created to automatic | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | cookbook/tests/other/test_data/delish.html | 78 | <script type="application/ld+json" id="json-ld">{"@graph":[{"@type":"Question","text":"What occasion would you make this | CODE |
| MEDIUM | cookbook/tests/other/test_data/cookscountry.html | 1458 | </footer><link crossorigin="anonymous" id="global-header-non-critical-css" onload="this.media='all'" rel="stylesheet" hr | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/views/__init__.py | 6 | __all__ = [ | CODE |
| LOW | cookbook/helper/AllAuthCustomAdapter.py | 16 | logger = logging.getLogger(__name__) | CODE |
| LOW | cookbook/helper/__init__.py | 3 | __all__ = [ | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | cookbook/helper/ingredient_parser.py | 140 | # Check if the matching opening bracket is in the same token | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | recipes/settings.py | 485 | CODE |