Fake HTTP Get Requests

前端 未结 7 1235
小蘑菇
小蘑菇 2020-12-31 21:07

i have noticed certain sites which allows limited hit per IP so can i programatically make them feel that requests are not coming from the same IP ,

well i am not

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-31 21:57

    The "proper" way, if I can use that term for something unwholesome, to make sites think a different IP has made a request is to use a proxied connection. The site is probably actually checking the source IP address, which is not a property of the HTTP request. So, the response will be delivered to your "other" IP. You should look at ssh -D, or privoxy, or another piece of software to funnel all your traffic with the site through a remote intermediary.

提交回复
热议问题