Eight cybersecurity predictions shaping the future of cyber defense
Two-thirds of the Global 100 businesses are expected to offer directors and officers insurance to cybersecurity leaders due to personal legal risk exposure. Additionally, combating disinformation is expected to cost businesses more than $500 billion.
We are starting to see a solid opportunity beyond what is possible with GenAI to help solve some of the problems that have long plagued cybersecurity, particularly skills shortages and unsafe user behavior. This year's hottest predictions clearly don't range from technology, as the human element continues to gain more attention. Any CISO seeking to build an effective and sustainable cybersecurity program should make this a priority.
Basic Assumptions for Cybersecurity Leaders’ Strategic Planning
Gartner recommends that cybersecurity leaders establish the following strategic planning assumptions in their security strategy for the next two years.
By 2028, GenAI adoption will close the skills gap, with 50% of entry-level cybersecurity positions no longer requiring specialized education.
Augmentations through GenAI will change the way enterprises recruit and educate cybersecurity personnel, who look for the right competencies, as well as the right education. Conversation enhancements are already available on mainstream platforms, but these will continue to evolve. Gartner recommends that cybersecurity teams focus on internal use cases that support user efforts, coordinating with HR asset partners to ensure adjacent talent is filling more critical cybersecurity roles.
By 2026, by combining GenAI with the Security Behavior and Platform Culture Program (SBCP), an integrated platform-based architecture, the enterprise will experience a 40% reduction in employee-driven cybersecurity incidents.
In the future, enterprises will pay more and more attention to personalized participation as an important part of effective SBCP. GenAI tools have the potential to generate hyper-personalized content and training materials that take into account employees’ unique attributes. According to Gartner, this will increase the likelihood that employees will adopt safer measures in their daily work, thus reducing cybersecurity incidents.
Enterprises that are not yet leveraging GenAI capabilities should evaluate their current external security awareness partners to understand how to leverage GenAI as part of their solution roadmap.
By 2026, 75% of enterprises will exclude unmanaged, legacy and cyber-physical systems from their zero trust strategy.
Under a zero trust strategy, users and endpoints are only given the access they need to do their jobs and are continuously monitored against evolving threats. In production or mission-critical environments, these concepts do not apply to unmanaged devices, legacy applications, and cyber-physical systems (CP) that are designed to perform specific tasks in unique security- and reliability-focused environments. .
By 2027, two-thirds of the Global 100 businesses will offer directors and officers (D&O) insurance to cybersecurity leaders due to personal legal risk exposure.
New laws and regulations — such as the SEC’s Cybersecurity Disclosure and Reporting Rule — hold cybersecurity leaders personally accountable. CISO roles and responsibilities need to be updated to allow for relevant reporting and disclosure. Gartner recommends that enterprises explore the benefits of underwriting D&O insurance as well as other insurance and indemnity underwriting roles to mitigate personal liability, professional risk and legal expenses.
By 2028, companies will spend more than $500 billion combating malicious information, eating into 50% of marketing and cybersecurity budgets.
The combination of artificial intelligence, analytics, behavioral science, social media, the Internet of Things and other technologies enables bad actors to create and spread efficient, mass-tailored malicious information (or misinformation). Gartner recommends that CIOs define responsibilities for managing, designing, and executing an enterprise-wide anti-malware program and invest in tools and techniques that use chaos engineering to test resiliency to address this issue.
By 2026, 40% of identity and access management (IAM) leaders will have primary responsibility for detecting and responding to IAM-related breaches.
IAM leaders often struggle to articulate security and business value to drive accurate investments and do not engage in security resource and budget discussions. As IAM leaders grow in importance, they will move in different directions, each with increased responsibility, visibility, and influence. Gartner recommends that CIOs break down traditional IT and security silos by aligning IAM plans with security plans so stakeholders understand the role IAM plays.
By 2027, 70% of enterprises will integrate data loss prevention and internal risk management rules with their IAM environment to more effectively identify suspicious behavior.
Growing interest in integrated controls is prompting vendors to develop overlapping capabilities between user behavior-centric controls and data loss prevention, giving security teams a more comprehensive set of capabilities to provide Dual use of data security and internal risk mitigation creates a single policy. Gartner recommends that enterprises identify data risks and identity risks as primary directives for strategic data security.
By 2027, 30% of cybersecurity capabilities will be reimagined for application security, directly usable by non-cyber experts and owned by application owners.
The volume, variety and environments of applications created by business technical staff and distributed delivery teams mean that the potential for exposure is far beyond what a dedicated application security team can handle.
To bridge this gap, cybersecurity functions must build a minimum level of effective expertise within these teams, leveraging a combination of technology and training to generate only the capabilities needed to autonomously make cyber risk-informed decisions.
The above is the detailed content of Eight cybersecurity predictions shaping the future of cyber defense. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











The key to PHPMyAdmin security defense strategy is: 1. Use the latest version of PHPMyAdmin and regularly update PHP and MySQL; 2. Strictly control access rights, use .htaccess or web server access control; 3. Enable strong password and two-factor authentication; 4. Back up the database regularly; 5. Carefully check the configuration files to avoid exposing sensitive information; 6. Use Web Application Firewall (WAF); 7. Carry out security audits. These measures can effectively reduce the security risks caused by PHPMyAdmin due to improper configuration, over-old version or environmental security risks, and ensure the security of the database.

The steps to update a Docker image are as follows: Pull the latest image tag New image Delete the old image for a specific tag (optional) Restart the container (if needed)

Common problems and solutions for Hadoop Distributed File System (HDFS) configuration under CentOS When building a HadoopHDFS cluster on CentOS, some common misconfigurations may lead to performance degradation, data loss and even the cluster cannot start. This article summarizes these common problems and their solutions to help you avoid these pitfalls and ensure the stability and efficient operation of your HDFS cluster. Rack-aware configuration error: Problem: Rack-aware information is not configured correctly, resulting in uneven distribution of data block replicas and increasing network load. Solution: Double check the rack-aware configuration in the hdfs-site.xml file and use hdfsdfsadmin-printTopo

Oracle lock tables can be solved by viewing lock information and finding locked objects and sessions. Use the KILL command to terminate the idle locked session. Restart the database instance and release all locks. Use the ALTER SYSTEM KILL SESSION command to terminate a stubborn locked session. Use the DBMS_LOCK package for programmatic lock management. Optimize query to reduce lock frequency. Set lock compatibility level to reduce lock contention. Use concurrency control mechanisms to reduce locking requirements. Enable automatic deadlock detection, and the system will automatically roll back the deadlock session.

How to clean all Redis data: Redis 2.8 and later: The FLUSHALL command deletes all key-value pairs. Redis 2.6 and earlier: Use the DEL command to delete keys one by one or use the Redis client to delete methods. Alternative: Restart the Redis service (use with caution), or use the Redis client (such as flushall() or flushdb()).

Redis persistence will take up extra memory, RDB temporarily increases memory usage when generating snapshots, and AOF continues to take up memory when appending logs. Influencing factors include data volume, persistence policy and Redis configuration. To mitigate the impact, you can reasonably configure RDB snapshot policies, optimize AOF configuration, upgrade hardware and monitor memory usage. Furthermore, it is crucial to find a balance between performance and data security.

How to choose Oracle 11g migration tool? Determine the migration target and determine the tool requirements. Mainstream tool classification: Oracle's own tools (expdp/impdp) third-party tools (GoldenGate, DataStage) cloud platform services (such as AWS, Azure) to select tools that are suitable for project size and complexity. FAQs and Debugging: Network Problems Permissions Data Consistency Issues Insufficient Space Optimization and Best Practices: Parallel Processing Data Compression Incremental Migration Test

When Oracle log files are full, the following solutions can be adopted: 1) Clean old log files; 2) Increase the log file size; 3) Increase the log file group; 4) Set up automatic log management; 5) Reinitialize the database. Before implementing any solution, it is recommended to back up the database to prevent data loss.
