Automating Pentesting With Python - A Real Example

Поділитися
Вставка
  • Опубліковано 21 чер 2022
  • You NEED to know these TOP 10 CYBER SECURITY INTERVIEW QUESTIONS
    elevatecybersecurity.net/inte...
    WEBSITE
    elevatecybersecurity.net
    GITHUB
    github.com/self-m4de/
    JOIN THE ELEVATE CYBER DISCORD CHANNEL
    / discord
    FOLLOW ME ON TWITTER
    / elevatecyber
    Discord: ElevateCyber#7398
  • Розваги

КОМЕНТАРІ • 38

  • @elevatecyber5031
    @elevatecyber5031  Рік тому +4

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

  • @Killa07
    @Killa07 Рік тому +4

    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.

  • @yourfavorite2516
    @yourfavorite2516 Рік тому

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

  • @0xhhhhff
    @0xhhhhff Рік тому +1

    Underrated channel! been a sub since 2020!

  • @0xrohit54
    @0xrohit54 Рік тому +2

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

  • @Nick-vd7cg
    @Nick-vd7cg 5 місяців тому

    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 :)

    • @pitche
      @pitche 2 місяці тому +1

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

  • @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

  • @klisd
    @klisd 3 місяці тому

    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?

  • @stephenpeters4393
    @stephenpeters4393 Рік тому

    This is good content

  • @harrymacguirejr.7764
    @harrymacguirejr.7764 Рік тому +1

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

    • @elevatecyber5031
      @elevatecyber5031  Рік тому +2

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

    • @jb_lofi
      @jb_lofi Рік тому

      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. 🐍

  • @mohamedassilkirouani8615
    @mohamedassilkirouani8615 10 місяців тому

    Thankkkkkk u meeeeeeeeen !!

  • @smoothpakim27
    @smoothpakim27 Годину тому

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

  • @C10H20
    @C10H20 Рік тому

    This is so OP

  • @danmcgirr4210
    @danmcgirr4210 Рік тому

    Great

  • @khurrumbaloch1951
    @khurrumbaloch1951 Рік тому +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  Рік тому

      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

    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 Рік тому

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

    • @elevatecyber5031
      @elevatecyber5031  Рік тому

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

    • @0xrohit54
      @0xrohit54 Рік тому

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

  • @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

  • @FixIt42
    @FixIt42 8 місяців тому +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 5 місяців тому

      whats zfill

    • @smoothpakim27
      @smoothpakim27 Годину тому

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

  • @huntit4578
    @huntit4578 Місяць тому

    Dam son

  • @g66kma49
    @g66kma49 7 місяців тому

    video didnt match title

    • @Nick-vd7cg
      @Nick-vd7cg 5 місяців тому

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