The most realistic HTB machine I've seen so far

Поделиться
HTML-код
  • Опубликовано: 19 сен 2024
  • Checkout my free newsletter. No spam, just technical security stuff: www.navigating...

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

  • @ShubhamSharma-735
    @ShubhamSharma-735 5 месяцев назад +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  5 месяцев назад +1

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

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

    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  4 месяца назад

      Glad it helped!

  • @Sk-oh7rv
    @Sk-oh7rv 4 месяца назад +1

    Hey man, great video! Just for anyone wondering about the bit of a more efficient way of creating the date lists, you can actually use the range trick you used to create the days of the week in the beginning, but for the whole dates like this: for date in 2020-{01..12}-{01..31};do echo $date >> dates.txt; done. Hope it helps!

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

    "Terminal Kung-fu"
    NOTED

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

    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  5 месяцев назад

      i appreciate that!!

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

    CTRL L will also clear your terminal

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

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

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

      sony zve-10

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

    Why didnt you use a fuzzer like burp intruder ?

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

    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  4 месяца назад

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

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

      @@tadii Thats also true! haha

  • @B1G_LIL
    @B1G_LIL 5 месяцев назад +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 5 месяцев назад +1

      Yes

    • @tadii
      @tadii  5 месяцев назад +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

  • @brunoaleixo768
    @brunoaleixo768 4 месяца назад

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

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

      thanks!

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

    Why can’t we use burp intruder?

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

      you can if you want to

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

    ❤🎉🎉🎉🎉

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

    I liked it

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

    Kali Setup Video.

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

      soon!

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

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

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

      waiting for this

  • @GramsBlood
    @GramsBlood 4 месяца назад +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