Results 1 to 7 of 7

Thread: Programming language for web security?

  1. #1
    Member
    Join Date
    Aug 2018
    Posts
    77

    Programming language for web security?

    Which one is the best programming language for web security?

  2. #2
    Administrator Steve R Jones's Avatar
    Join Date
    Apr 2011
    Location
    USA
    Posts
    417
    If someone has made it past your firewall etc..... I don't think it matters at that point does it?

  3. #3
    Friend of Site Staff rlirpa's Avatar
    Join Date
    Feb 2014
    Location
    MD, US
    Posts
    464
    If you're thinking of a career in cybersecurity, read the following by Krebs on Security:

    https://krebsonsecurity.com/2020/07/...eer-read-this/
    Rad

  4. #4
    Junior Member
    Join Date
    Mar 2021
    Posts
    2
    It isnt about which programming language you use, it is about properly implementing code that does not expose yourself or a user.

    Things like SQL Injection and XSS are quite dangerous. Most can be avoided by doing your code in such a way that prevents these types of attacks.

    if (!is_numeric(_POST['user_id)){ return; }

    If those values you get from end users are blindly trusted, then expect it will get you and others hacked.

  5. #5
    While I agree in some fashion that no web programming language is "the safest". I think what gives this idea is that languages like PHP that have a very low entry-level for programmers lead to a lot of bad code and more frequent successes on hacking making it seem that this language is more or less secure than something else. ( It may just well be)

    On the other hand languages with very high entry levels are usually used by people who are pedantic and have will be coding in multiple languages for the rest of their life, they probably don't make as many mistakes as Johny who learned PHP a few weeks ago on some quick course and is launching his own web app already. We all have to start somewhere though.


    I do also believe that some languages are just easier to leave holes open than others.

  6. #6

  7. #7
    Junior Member WPNext's Avatar
    Join Date
    Oct 2025
    Location
    India
    Posts
    4
    Hey,

    There isn?t really one perfect programming language for web security, it mostly depends on what you?re working on. But some languages are popular because they have good security tools and libraries.

    Python is great if you want to build security tools or automate tests. JavaScript is everywhere on the web, so knowing how to write it safely is super important to avoid common issues like hacks or injections. Java and C# are often used in big companies and come with solid security features built in. Go is also becoming popular because it?s fast and simple, making it great for security-related projects.

    At the end of the day, the most important thing is to learn good coding habits and understand the common security risks. If you want, I can point you to some easy resources or frameworks that focus on security.

    Hope that helps!

Similar Threads

  1. Best Programming Language
    By bindu7 in forum General Programming Questions
    Replies: 6
    Last Post: May 22nd, 2024, 05:34 PM
  2. Programming Language
    By HunterGuy in forum AntiOnline's General Chit Chat
    Replies: 14
    Last Post: August 6th, 2003, 12:37 AM
  3. Java as a security programming language
    By smartin77 in forum Newbie Security Questions
    Replies: 1
    Last Post: December 18th, 2002, 04:29 AM
  4. Programming Language
    By politroyx in forum AntiOnline's General Chit Chat
    Replies: 16
    Last Post: April 1st, 2002, 11:40 AM
  5. first programming language
    By CyberSpyder in forum Newbie Security Questions
    Replies: 16
    Last Post: February 13th, 2002, 06:06 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •