Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Comments on How do websites built by website builders defend security threats or follow secure coding?

Post

How do websites built by website builders defend security threats or follow secure coding?

+4
−0

There are SaaS providers for building and hosting websites made with WYSIWYG and LLM-prompt website builders, such as WordPress.com, Webflow, etc. I guess these services should be secure-by-default and secure-by-design, e.g. the builders should be guided to generate code to follow secure coding in JavaScript, and the hosting providers should provide automated vulnerability detection. However, I'm not sure if the generated code can effectively defend against security threats or likely attackers.

In my understanding, most components are merely HTML snippets, so they are bullet-proof. Dynamic components like routing, login, payment or APIs to third-party services can be made secure-by-default and secure-by-design. So a toy made from secured lego bricks should be secured as well? I wonder if the security decreases when LLMs are involved, because at the end of the day they can introduce new code that is not provided by the builders?

And what certifications would be relevant on this? For example, the security page of Webflow has information about the product security (Webflow itself), with various certifications. There are also places where they say the websites built by their builder are secured, but I'm unable to see how they defend security threats (broken access control, injection, etc.) or follow secure coding (cross-site scripting, inline script, etc.).

History

1 comment thread

Likely a combination of techniques (3 comments)
Likely a combination of techniques
FractionalRadix‭ wrote 4 months ago

A good question, if possibly rather broad for Codidact. That said, the site from Webflow that you link seems to hold part of the answer: "Branching, staging, approvals, and version visibility keep changes contained", and "see who made what change and roll it back if needed". I'm guessing that LLM guardrails and (for hosting providers) pen-testing and automated intrusion detection are also part of the answer. So, even if the question is broad, I do think it is answerable.

System‭ wrote 4 months ago

Thread renamed from "A good question, if possibly rather broad for Codidact. That said, the site from Webflow that you lin..." to "Likely a combination of techniques" by FractionalRadix‭

Ooker‭ wrote 4 months ago

I understand that those are just version controls. It helps reviewing and rolling back, yes, but how does that help secure coding?