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.
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?
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.
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
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
i mentioned doing it in python at the end, but bash works too lol
beginner here, that was pretty convincing, i sometimes get few headaches doing things manually lol and i learned few shortcuts thanks great video !
Glad it helped!
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.
i appreciate that!!
Why didnt you use a fuzzer like burp intruder ?
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?
Yes
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
I love how the video looks, bro What camera do you use?
sony zve-10
"Terminal Kung-fu"
NOTED
Why can’t we use burp intruder?
you can if you want to
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.
you'd be surprised at how many people don't know how to use excel yk 😂
@@tadii Thats also true! haha
CTRL L will also clear your terminal
fr?
@@tadii indeed
@@tadiiyeah
Do this with python is more easy but great video 🔥🔥
thanks!
❤🎉🎉🎉🎉
I liked it
Kali Setup Video.
soon!
@@tadii yes please. I also have a question, do you use virtual machine or you have linux installed as the main OS ?
waiting for this
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