Automating Pentesting With Python - A Real Example

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • You NEED to know these TOP 10 CYBER SECURITY INTERVIEW QUESTIONS
    elevatecyberse...
    WEBSITE
    elevatecyberse...
    GITHUB
    github.com/sel...
    JOIN THE ELEVATE CYBER DISCORD CHANNEL
    / discord
    FOLLOW ME ON TWITTER
    / elevatecyber
    Discord: ElevateCyber#7398

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

  • @elevatecyber5031
    @elevatecyber5031  2 года назад +4

    You NEED to know these 10 interview questions if you want to get into cyber security pentesting:
    elevatecybersecurity.net/interview

  • @Killa07
    @Killa07 2 года назад +5

    Hello Brother. Just Got the mail I passed the OSCP exam. Wanted to thank you as you video on Chisel pivoting helped me a lot during the exam. Keep up the good work.

  • @0xhhhhff
    @0xhhhhff 2 года назад +1

    Underrated channel! been a sub since 2020!

  • @youssef-kz3yn
    @youssef-kz3yn Год назад

    OMG I learnt python while ago but i never knew the real power of python now I understood Thanks man keep going

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

    Some of the best content Ive seen in a while. Keep doing videos like this brother and ill keep tuning in

  • @0xrohit54
    @0xrohit54 2 года назад +2

    Awesome stuff sir...please continue the video like this...learning a lot :)

  • @Nick-vd7cg
    @Nick-vd7cg 8 месяцев назад

    Best no-nonsense straight-forward explanation.
    Thank you very much, i just did Python Crash course so understanding isnt that difficult, but im not familiar with the frameworks including requests yet :)

    • @knodesec
      @knodesec 6 месяцев назад +1

      Kinda same! But I've learned requests a bit and solved a CTF challenge using it. Enjoy your journey! :)

  • @klisd
    @klisd 6 месяцев назад

    I didn't get how the code works because the 'month' that you used as a parameter in days fuction wasn't defined before. I tried to make it work on Google Colab and it didn't run and the page didn't accept it because of that. Please, could you explain to me where the month came from?

  • @harrymacguirejr.7764
    @harrymacguirejr.7764 2 года назад +1

    This was very easy to follow, good vid.
    Is Python the main language used to automate the pentest workflow?

    • @elevatecyber5031
      @elevatecyber5031  2 года назад +2

      For most people, yes. And that's good to hear, thanks for the feedback.

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

      That is a question of your own preference; whatever you prefer to use to automate, to use as your swiss-army knife scripting language. Other good choices are Ruby, PowerShell (no, really!) and some people even make use of compiled languages like Rust (I've used Crystal before, since it's basically a snappy, compiled Ruby). It's a matter of how comfortable you are with a language, what libraries/modules are easily available, and how quick you can put something together. For most people, that's good ol' Python. Because Python is awesome. 🐍

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

    Great vid, but is there not an easier way to do this instead of using all that code?

  • @FixIt42
    @FixIt42 11 месяцев назад +1

    Why not just:
    for year in range(2020, 2024):
    for month in range(1, 13):
    for day in range(1, 32):
    print(f"{str(year)}-{str(month).zfill(2)}-{str(day).zfill(2)}")

    • @Nick-vd7cg
      @Nick-vd7cg 8 месяцев назад

      whats zfill

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

      yeah im sure you could use a less complex code?? im new to pthon.

  • @gr33nt3a__1
    @gr33nt3a__1 2 года назад +1

    Hey you still have your real world pen testing course running? I get an error saying 'this account has been deactivated' when registering.

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

      It is no longer available. It is a live course and we're currently halfway through. The next course will be in August though so keep on the lookout

  • @0xrohit54
    @0xrohit54 2 года назад +2

    Sir and i sign up for top 10 interview question..but till now i did not get any email about it sir..what i should do sir ?

    • @harrymacguirejr.7764
      @harrymacguirejr.7764 2 года назад

      There is a new link in the Community Section of this channel

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

      Hey, sorry. I recently changed my emailing software and forgot to update it on the form. It should be working now though.

    • @0xrohit54
      @0xrohit54 2 года назад

      @@elevatecyber5031 Thnak you sir..i will once again enter my mail address sir :)

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

    This is good content

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

    This is so OP

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

    Thankkkkkk u meeeeeeeeen !!

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

    Great

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

    i couldnt use gobuster switch -u idk y apparently its not there by default and i used dirbuster and some other one

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

      Make sure you are running it in dir mode
      gobuster dir -u -w

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

    Dam son

  • @g66kma49
    @g66kma49 10 месяцев назад

    video didnt match title

    • @Nick-vd7cg
      @Nick-vd7cg 8 месяцев назад

      It does, the reconnaicance phase is actually a part of web penetration testing.