Skip to content
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

Release PR #522

Merged
merged 6 commits into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/comparison-result.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
needs: start_workflow
strategy:
matrix:
language: ['java-1', 'java-2' ,'python', 'js', 'ruby-1', 'ruby-2', 'go', 'kotlin']
language: ['java-1', 'java-2' ,'python', 'js', 'ruby-1', 'ruby-2', 'go', 'kotlin', 'php', 'csharp']
continue-on-error: true
runs-on: ubuntu-latest
steps:
Expand Down
16 changes: 11 additions & 5 deletions rules/collections/annotations/java.yaml
Original file line number Diff line number Diff line change
@@ -1,31 +1,37 @@
collections:
- id: Collections.Annotation.Spring
name: Spring Web Interface Annotation
patterns:
patterns:
- "RequestMapping|PostMapping|PutMapping|PatchMapping|GetMapping|DeleteMapping"
tags:

- id: Collections.Annotation.Spring.SOAP
name: Spring Web Interface Annotation SOAP
patterns:
- "Endpoint|PayloadRoot"
tags:

- id: Collections.Annotation.Struts
name: Struts Web Interface Annotation
patterns:
patterns:
- "Action"
tags:

- id: Collections.Annotation.Blade
name: Blade Web Interface Annotation
patterns:
patterns:
- "Path|(Get|Put|Post|Patch|Delete){0,1}Route"
tags:

- id: Collections.Annotation.Jersey
name: Jersey Web Interface Annotation
patterns:
patterns:
- "Path|ApplicationPath"
tags:

- id: Collections.Annotation.GoogleWebToolkit
name: GWT Web Interface Annotation
patterns:
patterns:
- "RemoteServiceRelativePath"
tags:

Expand Down
4 changes: 2 additions & 2 deletions rules/sinks/third_parties/sdk/amazon/javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ sinks:
tags:

- id: ThirdParties.SDK.Amazonaws.Lambda
name: Amazonaws Lamba
name: Amazonaws Lambda
domains:
- "aws.amazonaws.com/lambda"
patterns:
Expand Down Expand Up @@ -1042,4 +1042,4 @@ sinks:
- "aws.amazon.com/managed-workflows-for-apache-airflow"
patterns:
- "@aws-sdk\\/client-mwaa"
tags:
tags:
4 changes: 2 additions & 2 deletions rules/sinks/third_parties/sdk/amazon/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ sinks:


- id: ThirdParties.SDK.Amazonaws.Lambda
name: Amazonaws Lamba
name: Amazonaws Lambda
domains:
- "aws.amazonaws.com/lambda"
patterns:
Expand Down Expand Up @@ -976,4 +976,4 @@ sinks:
- "aws.amazon.com/opensearch-service"
patterns:
- "(?i)(aws_cdk.*aws_opensearchservice).*"
tags:
tags:
9 changes: 9 additions & 0 deletions rules/sinks/third_parties/sdk/tealium/javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,12 @@ sinks:
patterns:
- "ember-tracker|tealium-react-native|tealium|tealium-cordova-plugin|gatsby-plugin-tealium-utag|@s-ui\\/tealium-tracker|tealium-tracker|react-metrics-service"
tags:

- id: ThirdParties.SDK.Tealium.TagManagerPixel
name: Tealium Tag Manager
filterProperty: "code"
domains:
- "tealium.com"
patterns:
- "(?i)(.*[.])?(utag|utag.view|utag.link|utag.track)[(].*"
tags:
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
# The id follows a format : "ThirdParties.SDK.<THIRD_PARTY_ORGANISATION>.<SUB_ORGANISATION_IF_APPLICABLE>"

sinks:

- id: ThirdParties.SDK.Pysimplegui
name: Pysimplegui
- id: ThirdParties.SDK.Tealium
name: Tealium
filterProperty: "code"
domains:
- "PySimpleGUI.org"
- "tealium.com"
patterns:
- "(?i)(PySimpleGUI).*"
- "(?i)(.*)?(tealium_add_data|utag.{0,2}track)[(].*"
tags:

Loading