|
-
April 20th, 2020, 07:28 AM
#1
Member
Programming language for web security?
Which one is the best programming language for web security?
-
April 20th, 2020, 09:43 AM
#2
If someone has made it past your firewall etc..... I don't think it matters at that point does it?
-
July 26th, 2020, 03:07 PM
#3
If you're thinking of a career in cybersecurity, read the following by Krebs on Security:
https://krebsonsecurity.com/2020/07/...eer-read-this/
-
March 10th, 2021, 09:00 PM
#4
Junior Member
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.
-
March 29th, 2021, 03:12 PM
#5
Member
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.
-
March 30th, 2021, 01:10 PM
#6
-
October 8th, 2025, 07:56 AM
#7
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
-
By bindu7 in forum General Programming Questions
Replies: 6
Last Post: May 22nd, 2024, 05:34 PM
-
By HunterGuy in forum AntiOnline's General Chit Chat
Replies: 14
Last Post: August 6th, 2003, 12:37 AM
-
By smartin77 in forum Newbie Security Questions
Replies: 1
Last Post: December 18th, 2002, 04:29 AM
-
By politroyx in forum AntiOnline's General Chit Chat
Replies: 16
Last Post: April 1st, 2002, 11:40 AM
-
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
-
Forum Rules
|
|