8,695 questions
0
votes
0
answers
21
views
I don't fully understand the difference between CL.TE and TE.CL in HTTP request smuggling
I am doing labs in PortSwigger and the topic is HTTP request smuggling. And I am working on CL.TE and TE.CL. And for these labs :
https://portswigger.net/web-security/request-smuggling/exploiting/lab-...
0
votes
0
answers
60
views
HTTP post request keeps returning Error 400
So long story short, in my ASP.NET application I am making a post call where I supply JSON content like this below.
using (HttpClient Client = new HttpClient())
{
var Request = new ...
-1
votes
0
answers
22
views
API Connection Between N8N and Power Automate [closed]
I'm testing a POST API request to N8N via a Power Automate connector within a Power Automate flow. When I send the API's payload/document, it separates the 6 necessary parameters for the API to ...
1
vote
1
answer
54
views
ASP.NET Core MVC Edit GET works but POST results in ArgumentNullException: Value cannot be null. (Parameter 'items') despite debugging showing data
I'm sure this is something really obvious but I've spent hours (including a lot of Googling) on this and I am stuck.
I am able to create a record (along with the Fluent Validations firing where need ...
-1
votes
2
answers
100
views
How to use Boundaries with multiple parts in multipartform data using Swift and URLSession
I am following various examples in this question to try to upload 2 things together in a multipart form request in Swift--a file and some JSON about the file. I am able to upload the file but the ...
0
votes
0
answers
64
views
Passing authorization token with Slack API Event request
I'm trying to connect a request from the Slack Event API with a Google Apps Script Web App.
I've set up and deployed a minimal Google Apps Script Web App with a doPost() method like this:
function ...
0
votes
0
answers
38
views
Getting bad request 400 "Invalid system state type mismatch for var(?attr3) vartype(21): rowtype(22)" exception for SPARQL select query on AnzoGraphDB
We have Anzograph database of version 3.1. I am running a SELECT query on empty graph named "DemoGraph", which does not have any tuple in it."
I am running the below query:
PREFIX rdf: &...
0
votes
1
answer
55
views
Why does HTTP POST latency from ESP32 to server fluctuate significantly?
I'm testing an ESP32 device that sends data to a server every minute using HTTP POST. I noticed that the latency fluctuates heavily. For example, in one 20-minute test, the latency values (in ...
0
votes
1
answer
37
views
Ktor POST body params not sent
I have a post request done with Ktor this way
val response = httpClient.post("${BASE_URL}/following") {
contentType(ContentType.Application.Json)
setBody(UnfollowRequestBody(userId, &...
1
vote
1
answer
40
views
Angular - API call 404 Not Found with code OK with Postman
I'm new here. I apologize in advance if I write nonsense or wrong things, but I've only just started programming.
I'm helping a friend renew his site. I made the new site using Angular with VSCode. We'...
1
vote
1
answer
84
views
How do I send a http post request with an array as a post parameter in laravel
I am trying to send a post request in laravel. Below is my code:
$response = Http::withToken($local_signature)
->post('myUrl', [
"amount" => $amount,
"...
0
votes
1
answer
58
views
Can AWS WAF Inspect Contents of a .tar.lz4 File in HTTP POST Requests?
I'm using AWS WAF with an Application Load Balancer to filter incoming HTTP requests to my api server for security.
My api server expects files to be uploaded as .tar archive compressed with lz4.
Is ...
0
votes
0
answers
31
views
How to display multiple formsets in one another?
On the Site Form is used to give data to a case but since there can be multiple on a site it is made as a formset. In addition, each case can have multiple m2m relations, which are also a formset. The ...
-1
votes
1
answer
62
views
Make `POST` from blogspot iframe to `doPost` from 'Apps Script'
I created an iframe in the custom HTML of 'blogspot'.
In the src of the iframe there is the link to 'Apps Script' (https://script.google.com/macros/s/.../exec).
In the .gs of 'Apps Script', there is ...
0
votes
2
answers
62
views
post route is not working in my express js project
Here is the code for the index.js of my expressjs project. I'm new to Node.js and trying to understand how to develop a web app using MERN Stack.
import express from "express";
import ...