From 7ba6d2a8a639379fc0d3a7929fa9902b23369fff Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Tue, 9 Sep 2025 09:27:04 +0300 Subject: [PATCH 1/8] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 434f4dc..693c0ae 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ test this out let's update this - +I have new check for PR From ddf6037a18651e89d6bdbb2824b9608e2de3753d Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:47:28 +0300 Subject: [PATCH 2/8] Update app.py --- Projects/python-fb-example/src/app.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/Projects/python-fb-example/src/app.py b/Projects/python-fb-example/src/app.py index 2ce33b5..b48801d 100644 --- a/Projects/python-fb-example/src/app.py +++ b/Projects/python-fb-example/src/app.py @@ -14,3 +14,17 @@ def main(): if __name__ == '__main__': main() + +from flask import Flask, request, render_template_string + +app = Flask(__name__) + +# A simple route that renders user input without proper sanitization +@app.route('/greet', methods=['GET']) +def greet(): + user_name = request.args.get('name', 'Guest') + # Rendering user input directly without escaping + return render_template_string(f"

Hello, {user_name}!

") + +if __name__ == '__main__': + app.run(debug=True) From 77e4be18e400be8f7f627357dfb1b22f69b467e0 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:54:09 +0300 Subject: [PATCH 3/8] Update app.py with flask --- Projects/python-fb-example/src/app.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/Projects/python-fb-example/src/app.py b/Projects/python-fb-example/src/app.py index b48801d..adbbd90 100644 --- a/Projects/python-fb-example/src/app.py +++ b/Projects/python-fb-example/src/app.py @@ -1,20 +1,3 @@ -# src/app.py -import requests -import pandas as pd - -def fetch_data(url): - response = requests.get(url) - return response.json() - -def main(): - url = 'https://api.github.com/events' - data = fetch_data(url) - df = pd.DataFrame(data) - print(df.head()) - -if __name__ == '__main__': - main() - from flask import Flask, request, render_template_string app = Flask(__name__) From e5bbcd0435e230a38f73f97d1411c0dcc9db60d7 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Mon, 15 Sep 2025 12:55:13 +0300 Subject: [PATCH 4/8] Update requirements.txt --- Projects/python-fb-example/requirements/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/python-fb-example/requirements/requirements.txt b/Projects/python-fb-example/requirements/requirements.txt index e2e32ae..54f95a2 100644 --- a/Projects/python-fb-example/requirements/requirements.txt +++ b/Projects/python-fb-example/requirements/requirements.txt @@ -1,3 +1,4 @@ requests==2.32.0 pandas==2.2.3 jose==1.0.0 +Flask==2.2.2 From cde9a6787410024828a56f59f319038255333588 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Mon, 3 Nov 2025 14:53:33 +0200 Subject: [PATCH 5/8] Update requirements.txt --- Projects/python-fb-example/requirements/requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/python-fb-example/requirements/requirements.txt b/Projects/python-fb-example/requirements/requirements.txt index 54f95a2..b093c1e 100644 --- a/Projects/python-fb-example/requirements/requirements.txt +++ b/Projects/python-fb-example/requirements/requirements.txt @@ -2,3 +2,4 @@ requests==2.32.0 pandas==2.2.3 jose==1.0.0 Flask==2.2.2 +picklescan==0.0.24 From 9aeea4d8732a54a2528b06eb7ef40fbcc758a4d3 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Thu, 27 Nov 2025 09:41:10 +0200 Subject: [PATCH 6/8] Update README.md testing --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 693c0ae..5786335 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ test this out let's update this I have new check for PR + +SqcyDpetv+pCsbNYWHDLE8yR5mJ13MI+4d8NOwtM +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 From d8c949bcddb2b31017696f4d2c193b81967c3c42 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Thu, 27 Nov 2025 09:55:15 +0200 Subject: [PATCH 7/8] Create creds.txt --- creds.txt | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 creds.txt diff --git a/creds.txt b/creds.txt new file mode 100644 index 0000000..fa822db --- /dev/null +++ b/creds.txt @@ -0,0 +1,3 @@ +AKIAJXBOVX5Q2EULDUIA +SqcyDpetv+pCsbNYWHDLE8yR5mJ13MI+4d8NOwtM +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 From b40a4334e9e8cc8e6ca503ebfefa127074d0bde8 Mon Sep 17 00:00:00 2001 From: davidka91 <145442579+davidka91@users.noreply.github.com> Date: Wed, 18 Feb 2026 22:27:17 +0200 Subject: [PATCH 8/8] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5786335..c4f630d 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,5 @@ I have new check for PR SqcyDpetv+pCsbNYWHDLE8yR5mJ13MI+4d8NOwtM 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 + +another update