Prevention of XSS attacks
Budget: $30 – $250 USD
Objective: Prevention of XSS attacks
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
Objective: Prevention of XSS attacks
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
Objective: Prevention of XSS attacks
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
curl --location --request POST 'http://myapi.com/order/add' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderRef": "1000",
"orderDate": "2022-10-20",
"item": "Table Fan",
"amount": "10.00"
}'
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
Objective: Prevention of XSS attacks
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
Objective: Prevention of XSS attacks
Technology: .Net 6 Web API, C#
Requirement: Development of middleware to help prevent XSS attacks by removing script tags or any other associated characters from incoming requests i.e. sanitizing the incoming jsaon date. Requests will be
a. POST requests with json in the body. See example below
curl --location --request POST 'http://myapi.com/order/add' \
--header 'Content-Type: application/json' \
--data-raw '{
"orderRef": "1000",
"orderDate": "2022-10-20",
"item": "Table Fan",
"amount": "10.00"
}'
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data
b. GET requests with parameters
The middleware need to specifically ignore incoming binary date, as there will be 2/3 specific endpoints using which images / documents may be uploaded. These endpoint will be POST requests using form-data