http-header

修改HTTP头的方法

  1. 使用浏览器插件,比如Firefox的Tamper Data。如图:

    http-head

  2. CURL(KALI内置)添加修改头部信息,比如添加文件头:

    1
    root@kali:~# curl -H 'x-Forwarded-For: 123.123.123.123' -H 'referer: https://www.google.com' http://111.198.29.45/

    添加Referrer头可以直接使用-e参数,所以上面的命令可以等同于

    1
    root@kali:~# curl -H 'x-Forwarded-For: 123.123.123.123' -e 'https://www.google.com' http://111.198.29.45/

    关于CURL使用参考:https://catonmat.net/cookbooks/curl

  3. 基于Burp抓包修改:

http-head