Delphi SSH Socks V5 Reverse Tunnel Example

Поділитися
Вставка
  • Опубліковано 16 січ 2025

КОМЕНТАРІ • 8

  • @roneysouza835
    @roneysouza835 26 днів тому +2

    "Thanks a lot for the Delphi SSH Socks V5 Reverse Tunnel tutorial! It explained everything in a very straightforward and easy-to-understand way. I had been looking for something so clear about this for a long time, and the practical example really helped to connect the ideas.
    Thanks for sharing this knowledge with everyone! It will certainly help a lot of people who are trying to learn or implement something similar. Awesome!"🥰

    • @BitmasterXor
      @BitmasterXor  25 днів тому +2

      Your welcome that is why I made this channel man to share the Knowledge! :)

  • @somsakkhemvivit4381
    @somsakkhemvivit4381 25 днів тому +1

    Awesome tutorial, thanks. The SSH topic in Delphi is very hard to find.

    • @BitmasterXor
      @BitmasterXor  25 днів тому +1

      Your welcome man! Glad you enjoyed the video. Ill be coming out with more in the near future.

  • @AhmedMokhtari-n9g
    @AhmedMokhtari-n9g 24 дні тому +1

    Why do you program using Delphi instead of C/C++?

    • @BitmasterXor
      @BitmasterXor  23 дні тому +5

      I have many reasons for coding in Delphi rather than in C or C++
      1. C = Slow to write in compiles directly to ASM in a way that is super easy to reverse engineer.
      2. C++ still pretty slow to write in, compiles directly to ASM in a way that is super easy to reverse engineer.
      3. Delphi is extremely powerful and easy to develop with and it compiles directly to ASM in a way that is padded and NOT easy to reverse engineer (By default).
      4. Pascal which is the backing language of Delphi has been around 2 years LONGER than C. (its a language which has withstood the test of time and is still used today). Pascal was created by Niklaus Wirth in 1970... and C was created by Dennis Ritchie at Bell Labs starting in 1972 this makes Pascal 2 years older than C.
      5. Delphi is (RAD) Rapid application Development, think about it this way using C or C++ it would take me days perhaps even weeks to code something highly sophisticated like for example a Realtime "web applet"

  • @VERTEXOp
    @VERTEXOp 23 дні тому +1

    You know how we can make bulletproof smtp server which can send 100000 mails daily

    • @BitmasterXor
      @BitmasterXor  23 дні тому +1

      personally I never got into mass emailing stuff, but I know you don't "Make" a bulletproof server you "Rent one" bulletproof servers are usually offshore and from a company willing to break the law and look the other way, however Nothing is actually 100% truly bulletproof in this world, everything is susceptible to takedown. Be it by other hacking groups or even LAW Enforcement.
      The Bulletproof hosting will be the least of your worries, you will have to learn how to "Warm Up a Dedicated IP address for Emailing" and get through DKIM checks
      Setup DNS stuff:
      Set up Dkim
      Set up SPF
      Set up DMARC
      Set up MX record
      Set up RDNS
      Prep your server with any and all mass email blasting software your planning to use for your email campaign ect... ect... (which is another issue altogether you must truly know how to use the software your using, because if you don't you will likely not be seeing a lot of INBOX hits).
      Also different major Email domains like google and yahoo ect... ect... have different rules for blocking and filtering out potential SPAM mail you will have to also learn how to deal with stuff like this.
      I highly recommend that you take the time to search the internet and find a course on all of this (MANY MANY Courses do exist) people teach courses on this stuff all the time mainly because companies and individuals do make quite a bit of money off of sending out emails for advertisements and such. (search Udemy for courses)
      On the Delphi / Development side of things you can learn how to code your own SMTP Server and send out Emails in bulk using Multithreading or some similar method. In Delphi we have so many libraries and components that this is pretty much already done for you. But personally if I where going to mass blast out emails I would probably use something more professional that already exists for this purpose there are companies and individuals out there who have this stuff down to an art.
      I hope this has been informative for you!