Showing posts with label CMS. Show all posts
Showing posts with label CMS. Show all posts

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

A new publishing platform called EmDash is positioning itself as the “spiritual successor to WordPress,” promising to retain the flexibility of plugins while eliminating the security risks that have long plagued the world’s most popular content management system.

Security concerns around WordPress plugins have grown in recent years, with reports of vulnerabilities affecting millions of sites. By addressing this pain point directly, EmDash aims to carve out a niche in a crowded market of CMS platforms, positioning itself as the next evolution in digital publishing.

WordPress powers over 40% of the Internet. It is a massive success that has enabled anyone to be a publisher, and created a global community of WordPress developers. But the WordPress open source project will be 24 years old this year. Hosting a website has changed dramatically during that time. When WordPress was born, AWS EC2 didn’t exist. In the intervening years, that task has gone from renting virtual private servers, to uploading a JavaScript bundle to a globally distributed network at virtually no cost. It’s time to upgrade the most popular CMS on the Internet to take advantage of this change.

EmDash is written entirely in TypeScript. It is serverless, but you can run it on your own hardware or any platform you choose. Plugins are securely sandboxed and can run in their own isolate, via Dynamic Workers, solving the fundamental security problem with the WordPress plugin architecture. And under the hood, EmDash is powered by Astro, the fastest web framework for content-driven websites.

EmDash is fully open source, MIT licensed, and available on GitHub. While EmDash aims to be compatible with WordPress functionality, no WordPress code was used to create EmDash. That allows us to license the open source project under the more permissive MIT license. We hope that allows more developers to adapt, extend, and participate in EmDash’s development.

EmDash is being pitched not just as another CMS, but as publishing infrastructure for the secure web. Its creators believe enterprises, media houses, and independent publishers will be drawn to a platform that combines scalability with peace of mind.

You can deploy the EmDash v0.1.0 preview to your own Cloudflare account, or to any Node.js server today as part of our early developer beta:

Or you can try out the admin interface here in the EmDash Playground:

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments

What WordPress has accomplished

The story of WordPress is a triumph of open source that enabled publishing at a scale never before seen. Few projects have had the same recognisable impact on the generation raised on the Internet. The contributors to WordPress’s core, and its many thousands of plugin and theme developers have built a platform that democratised publishing for millions; many lives and livelihoods being transformed by this ubiquitous software.

There will always be a place for WordPress, but there is also a lot more space for the world of content publishing to grow. A decade ago, people picking up a keyboard universally learned to publish their blogs with WordPress. Today it’s just as likely that person picks up Astro, or another TypeScript framework to learn and build with. The ecosystem needs an option that empowers a wide audience, in the same way it needed WordPress 23 years ago.

EmDash is committed to building on what WordPress created: an open source publishing stack that anyone can install and use at little cost, while fixing the core problems that WordPress cannot solve.

Solving the WordPress plugin security crisis

WordPress’ plugin architecture is fundamentally insecure. 96% of security issues for WordPress sites originate in plugins. In 2025, more high severity vulnerabilities were found in the WordPress ecosystem than the previous two years combined.

Why, after over two decades, is WordPress plugin security so problematic?

A WordPress plugin is a PHP script that hooks directly into WordPress to add or modify functionality. There is no isolation: a WordPress plugin has direct access to the WordPress site’s database and filesystem. When you install a WordPress plugin, you are trusting it with access to nearly everything, and trusting it to handle every malicious input or edge case perfectly.

EmDash solves this. In EmDash, each plugin runs in its own isolated sandbox: a Dynamic Worker. Rather than giving direct access to underlying data, EmDash provides the plugin with capabilities via bindings, based on what the plugin explicitly declares that it needs in its manifest. This security model has a strict guarantee: an EmDash plugin can only perform the actions explicitly declared in its manifest. You can know and trust upfront, before installing a plugin, exactly what you are granting it permission to do, similar to going through an OAuth flow and granting a 3rd party app a specific set of scoped permissions.

Cloudflare Launches EmDash as WordPress Alternative with Built‑In Security and Payments
For example, a plugin that sends an email after a content item gets saved looks like this: 
import { definePlugin } from "emdash";

export default () =>
definePlugin({
  id: "notify-on-publish",
  version: "1.0.0",
  capabilities: ["read:content", "email:send"],
  hooks: {
    "content:afterSave": async (event, ctx) => {
      if (event.collection !== "posts" || event.content.status !== "published") return;
      await ctx.email!.send({
        to: "editors@example.com",
        subject: `New post published: ${event.content.title}`,
        text: `"${event.content.title}" is now live.`,
      });
      ctx.log.info(`Notified editors about ${event.content.id}`);
    },
  },
});

This plugin explicitly requests two capabilities: content:afterSave to hook into the content lifecycle, and email:send to access the ctx.email function. It is impossible for the plugin to do anything other than use these capabilities.

Solving plugin security means solving marketplace lock-in

WordPress plugin security is such a real risk that WordPress.org manually reviews and approves each plugin in its marketplace. At the time of writing, that review queue is over 800 plugins long, and takes at least two weeks to traverse.

EmDash plugins have two important properties that mitigate this marketplace lock-in:
  • Plugins can have any license: they run independently of EmDash and share no code.
  • Plugin code runs independently in a secure sandbox: a plugin can be provided to an EmDash site, and trusted, without the EmDash site ever seeing the code.

Every EmDash site has x402 support built in — charge for access to content

x402 is an open, neutral standard for Internet-native payments. It lets anyone on the Internet easily charge, and any client pay on-demand, on a pay-per-use basis.

EmDash has built-in support for x402. This means anyone with an EmDash site can charge for access to their content without requiring subscriptions and with zero engineering work.

Solving scale-to-zero for WordPress hosting platforms

WordPress is not serverless: it requires provisioning and managing servers. EmDash is different: it’s built to run on serverless platforms, and make the most out of the v8 isolate architecture of Cloudflare’s open source runtime workerd.

EmDash is different: it’s built to run on serverless platforms, and make the most out of the v8 isolate architecture of Cloudflare’s open source runtime workerd. On an incoming request, the Workers runtime instantly spins up an isolate to execute code and serve a response. It scales back down to zero if there are no requests. And it only bills for CPU time (time spent doing actual work).

You can run EmDash anywhere, on any Node.js server — but on Cloudflare you can run millions of instances of EmDash using Cloudflare for Platforms that each instantly scale fully to zero or up to as many RPS as you need to handle, using the exact same network and runtime that the biggest websites in the world rely on.

Beyond cost optimizations and performance benefits, we’ve bet on this architecture at Cloudflare in part because we believe in having low cost and free tiers, and that everyone should be able to build websites that scale. We’re excited to help platforms extend the benefits of this architecture to their own customers, both big and small.

Modern frontend theming and architecture via Astro

EmDash is powered by Astro, the web framework for content-driven websites. To create an EmDash theme, you create an Astro project that includes:
  • Pages: Astro routes for rendering content (homepage, blog posts, archives, etc.)
  • Layouts: Shared HTML structure
  • Components: Reusable UI elements (navigation, cards, footers)
  • Styles: CSS or Tailwind configuration
  • A seed file: JSON that tells the CMS what content types and fields to create
This makes creating themes familiar to frontend developers who are increasingly choosing Astro, and to LLMs which are already trained on ASTRO.

WordPress themes, though incredibly flexible, operate with a lot of the same security risks as plugins, and the more popular and commonplace your theme, the more of a target it is. Themes run through integrating with functions.php which is an all-encompassing execution environment, enabling your theme to be both incredibly powerful and potentially dangerous. EmDash themes, as with dynamic plugins, turns this expectation on its head. Your theme can never perform database operations.

An AI Native CMS — MCP, CLI, and Skills for EmDash

EmDash is designed to be managed programmatically by your AI agents. It provides the context and the tools that your agents need, including Agent Skills, EmDash CLI, and a built-in MCP Server.

Pluggable authentication, with Passkeys by default

The least fun part about working with any CMS is doing the rote migration of content: finding and replacing strings, migrating custom fields from one format to another, renaming, reordering and moving things around. This is either boring repetitive work or requires one-off scripts and “single-use” plugins and tools that are usually neither fun to write nor to use.

EmDash is designed to be managed programmatically by your AI agents. It provides the context and the tools that your agents need, including:
  • Agent Skills: Each EmDash instance includes Agent Skills that describe to your agent the capabilities EmDash can provide to plugins, the hooks that can trigger plugins, guidance on how to structure a plugin, and even how to port legacy WordPress themes to EmDash natively. When you give an agent an EmDash codebase, EmDash provides everything the agent needs to be able to customize your site in the way you need.
  • EmDash CLI: The EmDash CLI enables your agent to interact programmatically with your local or remote instance of EmDash. You can upload media, search for content, create and manage schemas, and do the same set of things you can do in the Admin UI.
  • Built-in MCP Server: Every EmDash instance provides its own remote Model Context Protocol (MCP) server, allowing you to do the same set of things you can do in the Admin UI.

Pluggable authentication, with Passkeys by default

EmDash uses passkey-based authentication by default, meaning there are no passwords to leak and no brute-force vectors to defend against. User management includes familiar role-based access control out of the box: administrators, editors, authors, and contributors, each scoped strictly to the actions they need. Authentication is pluggable, so you can set EmDash up to work with your SSO provider, and automatically provision access based on IdP metadata.

Import your WordPress sites to EmDash

You can import an existing WordPress site by either going to WordPress admin and exporting a WXR file, or by installing the EmDash Exporter plugin on a WordPress site, which configures a secure endpoint that is only exposed to you, and protected by a WordPress Application Password you control. Migrating content takes just a few minutes, and automatically works to bring any attached media into EmDash’s media library.


Import your WordPress sites to EmDash

Try it

EmDash is v0.1.0 preview, and we’d love you to try it, give feedback, and we welcome contributions to the EmDash GitHub repository.

If you’re just playing around and want to first understand what’s possible — try out the admin interface in the EmDash Playground.

To create a new EmDash site locally, via the CLI, run:

npm create emdash@latest Or you can do the same via the Cloudflare dashboard below:
We’re excited to see what you build, and if you're active in the WordPress community, as a hosting platform, a plugin or theme author, or otherwise — we’d love to hear from you. Email us at emdash@cloudflare.com, and tell us what you’d like to see from the EmDash project.

If you want to stay up to date with major EmDash developments, you can leave your email address here.

Cloudflare's connectivity cloud protects entire corporate networks, helps customers build Internet-scale applications efficiently, accelerates any website or Internet application, wards off DDoS attacks, keeps hackers at bay, and can help you on your journey to Zero Trust.

Shopify Introduces Commerce Components (CCS), the Modern, Composable Stack for Enterprise Retail

Shopify Introduces Commerce Components (CCS), the Modern, Composable Stack for Enterprise Retail

Shopify Enters its Next Era of Growth: Redefining Enterprise Retail.

Introducing Commerce Components by Shopify
  • Commerce Components by Shopify is the modern, composable stack for enterprise retail where retailers can take components of Shopify to integrate with their own systems
  • For the first time, we’re giving the world’s largest retailers access to Shopify’s component infrastructure that has powered over a half trillion dollars in global commerce, offering flexibility at scale
  • Mattel will bring its entire portfolio of brands to Shopify using Commerce Components
Shopify is built on components that form the world's most powerful retail platform. We've spent nearly two decades building, optimizing, and scaling that infrastructure, which today powers over 10% of US ecommerce and has processed over half a trillion dollars—all while giving millions of businesses full control of their brand identity, customer relationships, and data. Now, we’re opening that infrastructure to power the biggest retailers in the world with Commerce Components by Shopify (CCS), the modern, composable stack for enterprise retail.

For enterprise retailers today, challenges like the rapid pace of tech evolution and shifting customer expectations mean they must achieve real-time innovation just to remain competitive. To do that, they need a commerce solution that prioritizes choice, with the flexibility to integrate and innovate without restrictions, while offering trusted infrastructure components that help their teams move faster. These elements together are non-negotiable, and have never existed in one offering for enterprise—until now.

Commerce Components by Shopify combines the best of both worlds for enterprise retailers: access to Shopify’s foundational, high-performing components that just work—like our checkout, which converts 72% better than a typical checkout, and 91% better on mobile—plus flexible APIs to build dynamic customer experiences that integrate seamlessly with a retailer’s preferred back office services.

We’ve always approached innovation at Shopify by anticipating what retailers need, then providing those solutions,” said Harley Finkelstein, President of Shopify. “Commerce Components by Shopify opens our infrastructure so enterprise retailers don’t have to waste time, engineering power, and money building critical foundations Shopify has already perfected, and instead frees them up to customize, differentiate, and scale.”

Iconic American brand Mattel will be one of the first enterprise retailers to use Commerce Components, bringing their entire portfolio of brands to Shopify.

Innovation is at the heart of Mattel,” said Sven Gerjets, CTO of Mattel. “We first worked with Shopify on a project called Mattel Creations, a platform for creators to reimagine the most iconic toys in the world. Creations empowered Mattel to move quickly, meet our customers where they are, and most importantly leverage Shopify’s infrastructure to scale globally. It was hugely successful, and we’re excited to transform our brand offerings using Commerce Components.”

Featuring an all-new back-office management designed specifically for enterprise, Commerce Components by Shopify gives retailers the speed and flexibility needed to build for the future.

Build with choice

Flexible APIs, now with no rate limits, allow brands to integrate their existing services with Shopify’s modular components and build unparalleled customer experiences for any device. Enterprise retailers can take the components they need, and leave what they don’t, and developers are free to build with any front-end framework they choose.

Tap into unmatched global scale

Trusted commerce foundations, like the world’s best-converting checkout, with 99.99% uptime, processing up to 40,000 checkouts per minute per store, and unlocking over 100 million existing Shop Pay customers, who have opted in for Shopify’s one-click checkout.

Shopify’s globally scaled infrastructure with over 275 network edge points of presence enables lightning-fast storefronts no matter where customers are in the world.

Partner with a world-class ecosystem

The largest commerce ecosystem in the world, including a dedicated account team with solutions architects, priority 24/7/365 specialized support, and a network of seasoned agency partners and system integrators like Deloitte, EY, and KPMG.

View a full list of the components in Commerce Components by Shopify here.

We know that retailers have a myriad of opportunities in the digital and data age, whether it’s the shifting digital advertising landscape or showing up for their customers in a differentiated way during a looming recession,” said Sam Roddick, Global Deloitte Digital Leader. “In challenging times, we have seen best-in-class alliances between our clients and their platform partners unlock these opportunities. That’s why we’re thrilled to work with Shopify to bring Commerce Components by Shopify to enterprise retailers globally. Shopify is an industry leader in commerce, and we believe Commerce Components will be the advantage in helping propel the world’s largest retailers into the next era of commerce.”

Existing enterprise retailers on Shopify include Glossier, JB Hi-Fi, Coty, Steve Madden, Spanx, and Staples. Commerce Components by Shopify pricing is designed for enterprise. It's simple to understand, based on usage, and provides predictability. Learn more about Commerce Components by Shopify here.

About Shopify

Shopify is a leading provider of essential internet infrastructure for commerce, offering trusted tools to start, grow, market, and manage a retail business of any size. Shopify makes commerce better for everyone with a platform and services that are engineered for reliability, while delivering a better shopping experience for consumers everywhere. Proudly founded in Ottawa, Shopify powers millions of businesses in more than 175 countries and is trusted by brands such as Allbirds, Gymshark, Heinz, Tupperware, Netflix, Fablestreet, Go Colors, Yoga Bars, Duroflex, Le15, Sugar Cosmetics, Boat Lifestyle, LensKart, Vaadham Teas, and many more. For more information, visit shopify.in

White Paper on Cyber Security Releases by CMS IT Services


The 5 As of Identity and Access Management- Enterprise security's newest gatekeeper


Bangalore, 12 August 2021: CMS IT Services, the leading digital transformation partner of enterprises globally, has released a new framework for Identity and Access Management - the number one problem plaguing CISOs in the remote-working digital economy.

“With a staggering 4000 cyber-attacks carried out daily, cybercrime surged by 800 per cent during the pandemic. Social engineering is a prime threat, with hackers employing AI-assisted tools to steal user identities and perpetrate supply chain attacks and enterprise-wide fraud. Our 5A framework helps businesses stay ahead of disruption by heightening identity governance for all entities in the system - be it in-house employees, partners, or third-party integrations - while also preserving the user experience”, explains Anuj Vaid, Executive Director, CMS IT Services.

In modern enterprises, a hybrid IT architecture - along with a complex web of distributed users, devices, and applications - amplifies the access points to data and system vulnerabilities. With the volume, velocity, and variety of operational data generated every minute, it’s impossible to scale a piece-meal approach to control who has access to what, where and how.

The 5A framework utilizes the principles of Ikigai to ensure that all the layers and dimensions of functions that are fulfilled in an enterprise by different people, at different places come together in a reliable and secure way. This holistic approach is the foundation of a comprehensive suite of scalable security solutions that span the whole expanse of areas and entities in a contemporary business.

“The best part is that the 5As of IAM approach doesn’t require you to re-engineer your cybersecurity strategy. Instead, it helps you maximize the power of your existing security investments and fortify your enterprise-wide defenses without having to make new capex investments”, added SudhansuNayak, HeadCybersecurity, CMS IT Services.

A whitepaper on how to leverage the 5A methodology for enterprise-wide Identity and Access Management is available here. https://bit.ly/3jJ9crk

CMS IT services is an industry leader in Managed IT services and system integration. The company combine world-class cloud, digital, automation and cybersecurity expertise with a core strength in leveraging optimal technologies to rapidly create efficiencies and scale for our customer’s operations.

They offer an extensive array of services to help our customers thrive on next-generation technologies; helping build, transform and manage their IT operations. Their services include cloud assessments and migrations, application digitization and modernization, digital experience enhancement, information management and cybersecurity, IT automation. Currently CMS IT Services has over 6500 employees and serves more than 300 leading enterprises across key industries, with infrastructure spread across all 29 states of India. www.cmsitservices.com.

CMS IT Services Collaborates with Conversational AI Platform Senseforth.ai

AI-powered automation to enhance agility, drive business continuity and provide a growth engine for enterprises in the post COVID19 Scenario


CMS IT Services a leading System Integrator and Managed Services provider and Senseforth.ai a leading Full-Stack Conversational AI Platform announced a new partnership. Through the alliance, CMS IT’s Automation and Digital services will be powered by Senseforth’s award winning AI platform.

This alliance will be a powerful combination that Enterprise Customers can use to drive competitive advantage and reduce time to market. The combined offering will help enterprises provide faster and more reliable customer service, increase productivity and reduce cost rapidly.The digital agents will help enterprises to reduce people dependencies and will enable human-like conversations between organizations and people.

Speaking on the occasion Anuj Vaid, EVP, CMS IT Services said “CMS IT is delivering solutions to transformcustomer-experience by harnessing its rich domain expertise coupled with the power of AI to mimic human interactions while simultaneously providing sharp, precise and sophisticated solutions to unique challenges.”

"Conversational Chatbots have become an integral part of every company's business continuity plan. With our AI-powered self-help chatbots, enterprises can deliver a superior customer experience, without lifting and shifting their contact centres." Said Shridhar Marri CEO & Co-founder, Senseforth.

“Conversational AI Platforms enhance automation capabilities and augment digital experience specifically with regards to customer engagement channel efficiency. CMS IT builds deep business expertise into BOTs to create contactless solution for a variety of business needs”added Kunal Bhatt, Practice Head, Automation, CMS IT Services.

About CMS IT Services

CMS IT Services is a leading System Integrator and Managed Services provider. It offers an integrated portfolio of products, solutions, services, built around Automation, Cloud, Cybersecurity & Digital. Currently CMS IT Services has over 6500 employees serves more than 300 leading enterprises across key industries. 

About Senseforth.ai

Senseforth.ai is a leading Conversational AI Platform providing automated human-like conversations between organizations and people. Founded with a vision to “make technology behave like a friend”, Senseforth.ai helps organizations acquire, engage and assist customers using AI-powered chatbots. Senseforth.ai is trusted by leading brands in North America, Europe and Asia with 75+ live deployments for over 40 large enterprises.

What Is The Difference Between A DAM And A CMS?

There is a need to keep up with the technological advances that occur on a regular basis. This can be so taxing, especially for those who rely on websites to conduct digital marketing. The technology leveraged by websites is more often than not under improvement, and it is in your best interest to keep up with these technologies so that you do not allow your competitors to gain an edge over you.

Here’s why this article sheds some light on two vital technologies for websites, namely DAM and CMS. DAM and CMS are acronyms for Digital Asset Management and Content Management System respectively.

CMS and DAM are two solutions that work with digital content but are designed for different tasks and purpose.

Since both DAM and CMS are content management systems. Differences between them can be so confusing, especially considering the integration feature that allows you to unify the two platforms. Most people are left wondering why they need to have both systems. A keen look at the systems will enable you to delineate the difference in their functionalities.

Dissimilarities between a DAM and a CMS in terms of functionalities


A CMS allows you to manage your content fully, where content refers to anything that is on your website. In fact, without a CMS, one can boldly claim that you will be left with nothing to manage. A DMS, on the other hand, creates a strong link between the marketer and designer, allowing a faultless operation between the two groups.

Distinctions between a DAM and a CMS in terms of content they manage


A CMS enables you as the user to put different media into context in a bid to publish them in a blog or website. Hence, the type of content herein consist of videos, images, and pictures with words, and you can rely on the CMS to arrange them in a captivating manner. On the other hand, the DAM organizes its contents in the form of media files. The contents herein include images, videos, and documents. The difference in content managed is one reason why you need to integrate the two systems. You can easily do this here. This will help you enjoy the benefits of being able to manage a wide variety of content in your website or blog.

Contrast between a DAM and a CMS in terms of design


A DAM system is not designed to generate content but rather to manage it. You can use the DAM to organize all your media files. Be it sorting your media library, recomposing your videos and images, downloading files, or distributing them, DAM systems come in very handy when your intention is to manage content. On the other hand, CMS systems have the repository capabilities that DAMs lack. This gives it the unique potential to develop content on your website or blog. Hence, you do not have to download content or get it elsewhere.

Nevertheless, CMS does not give excellent content organization and manipulation as DAM systems do. In essence, therefore, the two systems complement each other. Consequently, they have been designed in such a manner that they integrate perfectly with each other. In order to enjoy free will content creation and management, integrate the two systems in your website or blog and take digital marketing to the next level.

Four Govt Websites Hacked/Crashed in A Single Day

The website of the Ministry of Defence was 'hacked' on Friday evening, reported PTI, quoting officials. According to officials, there were Chinese characters on the website, indicating that Chinese hackers may be involved in it.

Moreover, to everyone's surprise, three more websites of -- home, law and labour ministries, also crashed this evening around the same time, which raised suspicion that these had been hacked. But a top cyber security official emphatically denied any hacking and blamed the issue to be a hardware problem. The home ministry also denied that its website had been hacked.

The National Informatics Centre (NIC) also denied reports of hack of Defense Ministry website, instead terming the matter a "technical issue," reported ANI. "Ministry of Defence website is not hacked. There is some technical issue since 2:30pm today," said NIC manifesting the ignorant approach.

Later, defence minister Nirmala Sitharaman took to Twitter to say that "Action is initiated after the hacking of MoD website ( http://mod.nic.in ). The website shall be restored shortly. Needless to say, every possible step required to prevent any such eventuality in the future will be taken. @DefenceMinIndia @PIB_India @PIBHindi,” Sitharaman tweeted.




Eventually, websites of defence and labour ministries have been restored, although sites of home and law ministries are still down till writing this story.

The above news was taken from reports of NDTV.com and Times of India.

The National Informatics Centre, which maintains all these the government websites, is apparently using an in-house developed CMS (Content Management System) which is named as Content Management Framework a.k.a CMF, which was launched as part of the 'Digital India' programme, and is primarily directed towards making government Websites more usable, user centric and unusually accessible. Security feature is perhaps missing from the CMF features list.

Unlike to India, the US however do not use any in house built CMS at all instead they use the same CMS/software that are already available in market and mostly open source software such as Drupal, WordPress, IBM WebSphere WCM and Documentum, among others.

Drupal powers more than 150 sites for the US federal government, including the White House; the House of Representatives; NASA; and the departments of Education, Energy, Commerce, Health, Defense, Justice, Transportation, Homeland Security and Agriculture. It was perhaps the 2009 decision to move Whitehouse.gov and its associated sites to Drupal that gave the open source platform its biggest boost and gave other government agencies the confidence they needed to follow suit. To date, 34 state and territory agencies also use Drupal, with every new adopter solidifying the offering and creating new avenues for innovation. [Read More Here]

Earlier in March, a report in PTI stated that over 22,000 incidents of hacking of Indian websites were reported between April 2017 to January 2018. The report also mentioned that 114 government portals were hacked over that period. In a written reply to Lok Sabha, Minister of State for Electronics and IT K J Alphons had then stated, “As per information reported to and tracked by Indian Computer Emergency Response Team (CERT-In), a total of 22,207 Indian websites including 114 government websites were hacked during April 2017 to January 2018. A total number of 493 affected websites were used for malware propagation."

In February, IndianWeb2 reported that how a security analyst discovered that the official website of Start-up India was --or probably still -- infected with a hidden Trojan virus.

Last October, an IBM study report warned India that despite talents and tools, the country is still unprepared to protect itself from a big cyberattack.

Last year, India's billion dollar valued startup Zomato was hacked and passwords of about 17 million users were stole, however later the company managed to brought every thing in right place. Prior to that, in 2015 cab-hailing startup Ola website got hacked however the company denied any breach.

Four Govt Websites Hacked/Crashed in A Single Day

The website of the Ministry of Defence was 'hacked' on Friday evening, reported PTI, quoting officials. According to officials, there were Chinese characters on the website, indicating that Chinese hackers may be involved in it.

Moreover, to everyone's surprise, three more websites of -- home, law and labour ministries, also crashed this evening around the same time, which raised suspicion that these had been hacked. But a top cyber security official emphatically denied any hacking and blamed the issue to be a hardware problem. The home ministry also denied that its website had been hacked.

The National Informatics Centre (NIC) also denied reports of hack of Defense Ministry website, instead terming the matter a "technical issue," reported ANI. "Ministry of Defence website is not hacked. There is some technical issue since 2:30pm today," said NIC manifesting the ignorant approach.

Later, defence minister Nirmala Sitharaman took to Twitter to say that "Action is initiated after the hacking of MoD website ( http://mod.nic.in ). The website shall be restored shortly. Needless to say, every possible step required to prevent any such eventuality in the future will be taken. @DefenceMinIndia @PIB_India @PIBHindi,” Sitharaman tweeted.




Eventually, websites of defence and labour ministries have been restored, although sites of home and law ministries are still down till writing this story.

The above news was taken from reports of NDTV.com and Times of India.

The National Informatics Centre, which maintains all these the government websites, is apparently using an in-house developed CMS (Content Management System) which is named as Content Management Framework a.k.a CMF, which was launched as part of the 'Digital India' programme, and is primarily directed towards making government Websites more usable, user centric and unusually accessible. Security feature is perhaps missing from the CMF features list.

Unlike to India, the US however do not use any in house built CMS at all instead they use the same CMS/software that are already available in market and mostly open source software such as Drupal, WordPress, IBM WebSphere WCM and Documentum, among others.

Drupal powers more than 150 sites for the US federal government, including the White House; the House of Representatives; NASA; and the departments of Education, Energy, Commerce, Health, Defense, Justice, Transportation, Homeland Security and Agriculture. It was perhaps the 2009 decision to move Whitehouse.gov and its associated sites to Drupal that gave the open source platform its biggest boost and gave other government agencies the confidence they needed to follow suit. To date, 34 state and territory agencies also use Drupal, with every new adopter solidifying the offering and creating new avenues for innovation. [Read More Here]

Earlier in March, a report in PTI stated that over 22,000 incidents of hacking of Indian websites were reported between April 2017 to January 2018. The report also mentioned that 114 government portals were hacked over that period. In a written reply to Lok Sabha, Minister of State for Electronics and IT K J Alphons had then stated, “As per information reported to and tracked by Indian Computer Emergency Response Team (CERT-In), a total of 22,207 Indian websites including 114 government websites were hacked during April 2017 to January 2018. A total number of 493 affected websites were used for malware propagation."

In February, IndianWeb2 reported that how a security analyst discovered that the official website of Start-up India was --or probably still -- infected with a hidden Trojan virus.

Last October, an IBM study report warned India that despite talents and tools, the country is still unprepared to protect itself from a big cyberattack.

Last year, India's billion dollar valued startup Zomato was hacked and passwords of about 17 million users were stole, however later the company managed to brought every thing in right place. Prior to that, in 2015 cab-hailing startup Ola website got hacked however the company denied any breach.

Market Reports

Market Report & Surveys
IndianWeb2.com © all rights reserved