Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
backend
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chaos Parcel Service
backend
Commits
63b4e749
Verified
Commit
63b4e749
authored
1 year ago
by
hanfi
Browse files
Options
Downloads
Patches
Plain Diff
input sanitation
parent
12f492ab
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
backend/utils.py
+3
-2
3 additions, 2 deletions
backend/utils.py
with
3 additions
and
2 deletions
backend/utils.py
+
3
−
2
View file @
63b4e749
from
datetime
import
datetime
from
datetime
import
datetime
from
html
import
escape
from
secrets
import
token_hex
from
secrets
import
token_hex
from
cryptography.exceptions
import
InvalidSignature
from
cryptography.exceptions
import
InvalidSignature
...
@@ -57,10 +58,10 @@ def update_item(db: Session, item: schemas.Item, data: schemas.ItemUpdate):
...
@@ -57,10 +58,10 @@ def update_item(db: Session, item: schemas.Item, data: schemas.ItemUpdate):
verify
=
""
verify
=
""
if
data
.
addressee
:
if
data
.
addressee
:
verify
+=
data
.
addressee
verify
+=
data
.
addressee
item
.
addressee
=
data
.
addressee
item
.
addressee
=
escape
(
data
.
addressee
)
if
data
.
team
:
if
data
.
team
:
verify
+=
data
.
team
verify
+=
data
.
team
item
.
team
=
data
.
team
item
.
team
=
escape
(
data
.
team
)
if
data
.
amount
:
if
data
.
amount
:
verify
+=
str
(
data
.
amount
)
verify
+=
str
(
data
.
amount
)
item
.
amount
=
data
.
amount
item
.
amount
=
data
.
amount
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment