Self-Improvement

requests 모듈 request 할 시 Null (%00) 등 전송하는 법 본문

개인/_개인

requests 모듈 request 할 시 Null (%00) 등 전송하는 법

JoGeun 2020. 1. 2. 16:14

request 패킷이 ../../../../../../../../../../../../../../../../etc/passwd%00index.htm 일시에 %00이 인코딩되어 %2500으로 넘어가게 됨으로 이때는 RAW 데이터형식으로 \x00으로 하여서 전송하면 %00으로 보내어진다.

 

https://stackoverflow.com/questions/31254490/how-to-send-null-in-http-query-string

 

How to send NULL in HTTP query string?

I'm developing an API that can accept the main three data types as values to query string parameters: boolean, string & numeric (integer or float). By default, everything is retrieved a string ...

stackoverflow.com