Buffer Overflow Attack Example | Exploiting Binary

Поделиться
HTML-код

Комментарии • 17

  • @vitorpaiva7817
    @vitorpaiva7817 2 года назад

    Thanks, man. I was getting nervous because I was not understanding why my exploits were not working. I need more ground!!

  • @bhismaadiyasa4407
    @bhismaadiyasa4407 3 месяца назад

    It worked, Thankyou so much👍

  • @narek552
    @narek552 3 года назад

    Helped me thanks!

  • @satheeshkumar1168
    @satheeshkumar1168 2 месяца назад

    How you found the offset size is 4?

  • @LIGHT-fz8yu
    @LIGHT-fz8yu 3 года назад

    Hey bro i wanna become a ethical hacker what should I do from now I am in 9th

    • @encryptedguy
      @encryptedguy  3 года назад

      Start coding. Mostly server side stuff. Once you get to know mechanism you can break it.

    • @LIGHT-fz8yu
      @LIGHT-fz8yu 3 года назад

      @@encryptedguy yeah but how should I start means coding with which language?

    • @encryptedguy
      @encryptedguy  3 года назад

      Php python

    • @LIGHT-fz8yu
      @LIGHT-fz8yu 3 года назад

      @@encryptedguy but people says start from c language

    • @encryptedguy
      @encryptedguy  3 года назад

      Sure if you want to go into low level stuff. But python will do

  • @alien_X1
    @alien_X1 Год назад

    Pls bring morw

  • @gabrielbarrios397
    @gabrielbarrios397 Год назад +1

    Hi, excellent tutorial, it help me a lot but i had error. At the end, specifically at 3:33 my console said me:
    python -c "print('A'*28 + '\x76\x91\x04\x08')" | ./a.out
    Enter some text:
    You DATA : 'AAAAAAAAAAAAAAAAAAAAAAAAAAAA' now belongs to us
    zsh: done python -c "print('A'*28 + '\x76\x91\x04\x08')" |
    zsh: segmentation fault ./a.out

    if someone can help me 🙌 i'd be really grateful

    • @paoloose
      @paoloose Год назад

      Did you check if the buffer size is indeed 28?

    • @hasmitaumrigar891
      @hasmitaumrigar891 9 месяцев назад

      Same problem, have you find the solution?

    • @MatxMul
      @MatxMul 8 месяцев назад

      It's a problem with python version. You should try python2 -c "print 'A'*32 + '\x76\x91\x04\x08' " | ./a.out .