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

Enabling GDPR compliance checks #64

Open
wants to merge 40 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
e1d81e2
feat: added support for recognition of database query types
interruptedHandshake Feb 25, 2023
19ba7f0
Merge branch 'main' of https://github.com/interruptedHandshake/cloud-…
interruptedHandshake Feb 25, 2023
4e5b295
feat: created testcases for compliance checks
interruptedHandshake Mar 2, 2023
43c1db5
feat: added support for detection of DELETE and PUT HttpRequest of py…
interruptedHandshake Mar 2, 2023
2b922e7
feat: created initial queries for compliance checks
interruptedHandshake Mar 2, 2023
155c46c
add: enhanced example for data portability with transfer to external …
interruptedHandshake Mar 3, 2023
641e44b
feat: compliance check query for art 20(2)
interruptedHandshake Mar 3, 2023
cc9f1d7
fix: adjusted config.yml for detection of correct application
interruptedHandshake Mar 11, 2023
0f1f5f7
feat: created article 19 checks and adjusted other checks
interruptedHandshake Mar 11, 2023
b9c236c
feat: created testcase for article 19 compliance check
interruptedHandshake Mar 11, 2023
227b94c
add: adjusted notification obligation testcase
interruptedHandshake Mar 16, 2023
9b1f6e4
feat: created validation testcase of art 19 (notification obligation)
interruptedHandshake Mar 16, 2023
5459469
delete: code clean up
interruptedHandshake Mar 16, 2023
3e40dd4
feat: created validation testcase for Art. 20 (right for data portabi…
interruptedHandshake Mar 16, 2023
1ce4f7e
feat: created testcase for Art. 16 validation
interruptedHandshake Mar 16, 2023
06fc565
feat: created validation testcase for At. 17
interruptedHandshake Mar 16, 2023
1cfe355
add: updated python validation for Art. 17
interruptedHandshake Mar 16, 2023
4f74c10
feat: created validation testcases and updated queries
interruptedHandshake Mar 16, 2023
85006b7
add: database query detection support for other libraries
interruptedHandshake Mar 20, 2023
415c777
add: updated testcase for validation of Art. 20
interruptedHandshake Mar 20, 2023
54e8aac
add: adjusted test suite
interruptedHandshake Mar 20, 2023
90feaea
add: adjusted code for testcase of Art.20
interruptedHandshake Mar 21, 2023
a515a31
add: reworked GDPR compliance checks
interruptedHandshake Mar 21, 2023
6030598
delete: removed obsolete code (code clean up)
interruptedHandshake Mar 21, 2023
fa61bfb
add: type property to ontology
interruptedHandshake Mar 24, 2023
d5eb701
feat: created performance test for evaluation of PPG extensions
interruptedHandshake Mar 24, 2023
65d6f2b
refactor: updated data type of type property according to ontology
interruptedHandshake Mar 24, 2023
ff07537
add: small testcase adjustements for Art 16 and Art 17
interruptedHandshake Mar 26, 2023
fa6accb
add: created testcase descriptions for test suite
interruptedHandshake Mar 26, 2023
8423f1e
refactor: reworked testcase art 16
interruptedHandshake Mar 26, 2023
5482d81
add: performance optimization of queries
interruptedHandshake Mar 26, 2023
2aec9c0
add: updated query of Art.19 for better detection of urls
interruptedHandshake Mar 26, 2023
5b41ec4
fix: adjusted configs and added missing mongo_host attribute
interruptedHandshake Mar 31, 2023
b28ec8d
add: adjusted testcases and added url prop to ontology
interruptedHandshake Apr 4, 2023
39ed8bf
feat: create FileWritePass + PythonFileWritePass + GoFileWritePass an…
interruptedHandshake Apr 8, 2023
28d33f3
refactor: updated queries according to updated ontology. registered P…
interruptedHandshake Apr 9, 2023
77bebb2
add: missing addition to translationResult
interruptedHandshake Apr 9, 2023
f8d516d
feat: created further testcases for enhancing the PPG in future work
interruptedHandshake Apr 10, 2023
e537e74
fix typo
interruptedHandshake Apr 10, 2023
969dbca
refactor: changed code to be tested to Article 20 testcase code
interruptedHandshake Apr 15, 2023
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
Prev Previous commit
Next Next commit
feat: added support for detection of DELETE and PUT HttpRequest of py…
…thon requests library
interruptedHandshake committed Mar 2, 2023
commit 43c1db5b06b6b0def1978a841d7a33250fa321a6
Original file line number Diff line number Diff line change
@@ -29,6 +29,10 @@ class RequestsPass : HttpClientPass() {
handleClientRequest(tu, t, r, "GET")
} else if (r.name == "post" && r.base.name == "requests") {
handleClientRequest(tu, t, r, "POST")
} else if (r.name == "delete" && r.base.name == "requests") {
handleClientRequest(tu, t, r, "DELETE")
} else if (r.name == "put" && r.base.name == "requests") {
handleClientRequest(tu, t, r, "PUT")
}
}
}