The most realistic HTB machine I've seen so far

Поделиться
HTML-код
  • Опубликовано: 23 янв 2025

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

  • @ShubhamSharma-735
    @ShubhamSharma-735 9 месяцев назад +2

    how about using nested for loop:
    for month in {01..12}; do
    for day in {01..31}; do
    date="2020-${month}-${day}"
    echo $date
    done
    done

    • @tadii
      @tadii  9 месяцев назад +1

      i mentioned doing it in python at the end, but bash works too lol

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

    beginner here, that was pretty convincing, i sometimes get few headaches doing things manually lol and i learned few shortcuts thanks great video !

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

      Glad it helped!

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

    As a Blue Teamer I love watching your videos and I like the fact you keep it real. If you want to be a red teamer you have to learn scripting. This isn’t optional.

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

      i appreciate that!!

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

    Why didnt you use a fuzzer like burp intruder ?

  • @B1G_LIL
    @B1G_LIL 9 месяцев назад +1

    Nice video. I have a question, I’m currently doing PNPT course rn. Would it be good to watch ippsec videos to prepare me for the PNPT ? I know everybody uses him for OSCP but would it help me on PnPT?

    • @kickeddroid
      @kickeddroid 9 месяцев назад +1

      Yes

    • @tadii
      @tadii  9 месяцев назад +1

      you can watch the AD related machines he releases. he always goes over his thought process so it's a pretty effective way to learn

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

    I love how the video looks, bro What camera do you use?

    • @tadii
      @tadii  9 месяцев назад +1

      sony zve-10

  • @romanN69
    @romanN69 9 месяцев назад +1

    "Terminal Kung-fu"
    NOTED

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

    Why can’t we use burp intruder?

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

      you can if you want to

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

    This is a great video! although in my case I would've just used Excel for all the dates and stuff you were using sublime for. Excel is an amazing skill to learn for pentesting in my opinion, but after scripting ofcourse.

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

      you'd be surprised at how many people don't know how to use excel yk 😂

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

      @@tadii Thats also true! haha

  • @JustinJ.
    @JustinJ. 9 месяцев назад +2

    CTRL L will also clear your terminal

  • @brunoaleixo768
    @brunoaleixo768 9 месяцев назад +1

    Do this with python is more easy but great video 🔥🔥

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

      thanks!

  • @agyekumsamuel131
    @agyekumsamuel131 9 месяцев назад +2

    ❤🎉🎉🎉🎉

  • @qwerty-so5bl
    @qwerty-so5bl 9 месяцев назад

    I liked it

  • @v31l0x1
    @v31l0x1 9 месяцев назад +2

    Kali Setup Video.

    • @tadii
      @tadii  9 месяцев назад +1

      soon!

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

      @@tadii yes please. I also have a question, do you use virtual machine or you have linux installed as the main OS ?

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

      waiting for this

  • @GramsBlood
    @GramsBlood 9 месяцев назад +2

    Thanks for the video, I just create a quick dirty code for you to generate the date.
    # This script will generate all the dates from 2020-01-01 to 2020-12-31
    for y in {2020..2020}; do
    for m in {01..12}; do
    for d in {01..31}; do
    echo "$y-$m-$d"
    done