TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Most secure language for a CRUD app?

4 点作者 realcorvus将近 2 年前
What is the most secure language/framework for creating a new CRUD (create, read, update, delete) web application? Think of a brand new banking portal, which will be threat modeled, pen-tested, etc. I have a few ideas of my own about this, but want to ask here. Most of the infosec resources I've found are about vulnerabilities, not much info on what languages are better for security.

4 条评论

brianpan将近 2 年前
The most secure language is any language the developers know how to secure and has libraries that are maintained.
评论 #37015493 未加载
mikewarot将近 2 年前
The real security comes from carefully controlling the possible side effects on the host side as completely as possible. The process on the server that is running this should have access to <i>only</i> the files or services required to complete the task, and nothing else.<p>Containerize, run in a virtual environment, etc... assume Satan himself gets to tweak your source code... does the environment that it runs within guarantee you won&#x27;t have a disaster on your hands?<p>Applications can&#x27;t deliver security, it&#x27;s the Operating System&#x27;s job to do that.
005将近 2 年前
<a href="https:&#x2F;&#x2F;github.com&#x2F;kelseyhightower&#x2F;nocode">https:&#x2F;&#x2F;github.com&#x2F;kelseyhightower&#x2F;nocode</a>
giaour将近 2 年前
Choose whatever language you&#x27;re most comfortable&#x2F;familiar with so long as it&#x27;s not C or C++.