i come to a scenario where i need to post data in JSON format for executing CSRF issues !
Note : only data format is needed in JSON Format (Content-Type : Text/Plain is acceptable )
so if we try to post data using normal form it can be done Just using “Name” attribute as whole JSON body but after posting “=” is getting auto generate for value attribute due to forms default behavior !
after some googling i came to know there is something "ignore_me" and “//” attribute which help to ignore “=” !
but in my case no extra things needed , that is “=” or anything after JSON body is not acceptable !
Note : Content-Type : Text/Plain is acceptable !
so is thr any other way to meeting mentioned criteria ?
Thank You !