HKUST(GZ) 2026 Undergrad Intake Surges to 450: The AI-First Frontier in Cybersecurity and Data Science Education + Video

Listen to this Post

Featured Image

Introduction:

As nation-states and cybercriminal syndicates race to weaponize artificial intelligence, the demand for security professionals who understand both the attack surface and the algorithmic defenses has never been more acute. The Hong Kong University of Science and Technology (Guangzhou) — a legally-independent educational institution co-established by the Mainland and Hong Kong — has responded by raising its 2026 undergraduate intake to 450 students across 17 Chinese provinces, with new “Major+AI” and “AI Minor” pathways designed to embed AI literacy into every discipline. This is not merely an admissions announcement; it is a strategic signal that the next generation of cybersecurity, data science, and AI talent will be forged through interdisciplinary “Hub” and “Thrust” structures that dissolve traditional departmental silos.

Learning Objectives:

  • Understand HKUST(GZ)’s unique “Hub-and-Thrust” academic model and its implications for AI, IoT, and cybersecurity education.
  • Analyze the new “Major+AI” and “AI Minor” curricula, including credit requirements and capstone expectations.
  • Evaluate the university’s HPC-AI infrastructure, research output, and global partnerships in the context of cybersecurity workforce development.
  1. The “Major+AI” Mandate: Embedding Security into Every Discipline

Starting September 2026, HKUST(GZ) will require all undergraduate students to complete either a “Major+AI” extension (21–24 AI credits) or an “AI Minor” (18 AI credits). This is not optional AI appreciation; it is a compulsory transformation of the curriculum. The “Major+AI” track demands that students use AI methods to support or integrate into their major studies, with tangible outcomes demonstrated in their final-year theses or capstone projects. For cybersecurity aspirants, this means that a student majoring in Data Science and Big Data Technology will be required to apply machine learning models to real-world security challenges — such as anomaly detection in network traffic or adversarial attack mitigation — as a graduation requirement.

Extended Technical Context:

The program’s Data Science and Big Data Technology offering, a core program within the Data Science and Analytics Thrust, focuses on the entire data lifecycle: acquisition, storage, analysis, mining, and critically, security. Students develop expertise in data modeling, algorithm design, machine learning, statistical inference, and large-scale data processing. The security component is not an afterthought; it is embedded into the program’s foundational theories and innovative applications.

Linux/Windows Commands for Data Security (Hands-On Context):

For students entering this program, familiarity with the following commands is essential for securing data pipelines:

Linux (Data Integrity & Monitoring):

 Monitor file integrity with AIDE (Advanced Intrusion Detection Environment)
sudo aide --init
sudo mv /var/lib/aide/aide.db.new.gz /var/lib/aide/aide.db.gz
sudo aide --check

Real-time log monitoring for suspicious activity
tail -f /var/log/syslog | grep -i "failed|unauthorized|attack"

Encrypt sensitive datasets using GPG
gpg --symmetric --cipher-algo AES256 sensitive_data.csv
gpg --decrypt sensitive_data.csv.gpg > decrypted_data.csv

Windows (PowerShell for Security Auditing):

 Get last 100 security log events (failed logons)
Get-EventLog -LogName Security -InstanceId 4625 -1ewest 100

Calculate file hash for integrity verification
Get-FileHash -Algorithm SHA256 .\model_weights.pkl

Encrypt a directory using EFS (Encrypting File System)
cipher /E /S C:\Projects\ML_Models

Step-by-Step: Securing a Machine Learning Pipeline

  1. Data Encryption at Rest: Use `gpg` (Linux) or `cipher` (Windows) to encrypt training datasets before storage.
  2. Model Integrity Verification: Generate SHA-256 hashes of model weights and store them in an immutable ledger.
  3. Log Aggregation: Forward system logs to a centralized SIEM (e.g., Splunk or ELK stack) using `rsyslog` (Linux) or Windows Event Forwarding.
  4. Anomaly Detection: Implement an autoencoder in Python to detect data drift or poisoning attempts in production datasets.

  5. The HPC-AI Converged Computing Center: A Playground for Adversarial AI

HKUST(GZ) operates one of the most advanced HPC-AI converged computing centers in the region, integrating high-performance computing and AI acceleration capabilities with industry-leading computational density, multi-1ode/multi-GPU collaboration, and unified heterogeneous resource management. The center currently runs four major clusters (Phase I, II, III-ACD, EDA), delivering full-stack computing services for scientific research and AI training/inference.

Phase III (ACD) — Operational Since January 2025:

  • 18.933 Pflops @ FP64 (double-precision) computing capacity
  • 1,078.322 Pflops @ FP16 (half-precision) AI computing power
  • 68 Advanced Computing Devices (ACD) nodes utilizing 400Gb/s RoCE v2 network protocol
  • 17 PB distributed storage system

Why This Matters for Cybersecurity:

This infrastructure enables students to:

  • Train large language models (LLMs) for automated threat intelligence.
  • Simulate adversarial attacks on neural networks (e.g., FGSM, PGD) at scale.
  • Develop and test AI-based intrusion detection systems (IDS) on realistic network traffic datasets.
  • Conduct red-team exercises against AI-powered defensive systems.

Linux Commands for HPC/AI Security (Practical Application):

 Check GPU utilization and process ownership (detect unauthorized AI workloads)
nvidia-smi --query-gpu=index,name,utilization.gpu,memory.used --format=csv

Monitor network connections to detect data exfiltration from compute nodes
ss -tulpn | grep ESTAB | awk '{print $5}' | cut -d: -f1 | sort | uniq -c

Set up a firewall to restrict access to Jupyter notebooks (only localhost)
sudo ufw allow from 127.0.0.1 to any port 8888
sudo ufw enable

Scan for open ports on a training server (reconnaissance simulation)
nmap -sV -p- 192.168.1.100

Step-by-Step: Setting Up a Secure AI Training Environment

  1. Isolate Training Environments: Use Docker containers with limited network access.
    docker run --gpus all --1etwork none -v /data:/data tensorflow/tensorflow:latest-gpu
    
  2. Implement Model Encryption: Encrypt model checkpoints using `openssl` before saving to shared storage.
  3. Enable Audit Logging: Configure `auditd` (Linux) to track all access to model files.
    auditctl -w /models/ -p rwxa -k model_access
    
  4. Run Vulnerability Scans: Use `trivy` to scan Docker images for known CVEs before deployment.

3. The IoT Thrust: Securing the Physical-Digital Frontier

The Internet of Things (IoT) Thrust, an academic department within the Information Hub, specializes in research and teaching related to all aspects of IoT and digital societies, including communications, machine learning, cybersecurity, human-computer interaction, IoT sensors/actuators, IoT microelectronics, and IoT applications. The Thrust’s research areas explicitly include Security and Privacy-enhancing Technologies and Agentic AI and Autonomous Systems.

Cross-Disciplinary Focus Areas:

  • Artificial Intelligence, Machine Learning, and Optimization in IoT
  • Embodied AI and Robotics Intelligence
  • Agentic AI and Autonomous Systems

Security Implications:

IoT devices are notoriously vulnerable to botnet recruitment (e.g., Mirai), side-channel attacks, and firmware exploitation. The IoT Thrust’s curriculum prepares students to:
– Design secure firmware update mechanisms (e.g., signed updates, rollback prevention).
– Implement lightweight cryptographic protocols for resource-constrained devices.
– Deploy AI-based anomaly detection on edge gateways.
– Conduct penetration testing on IoT ecosystems.

Linux Commands for IoT Security (Hands-On):

 Scan for IoT devices on a local network (discovery phase)
sudo arp-scan --localnet

Capture and analyze IoT traffic (e.g., MQTT, CoAP)
sudo tcpdump -i eth0 -w iot_traffic.pcap
tshark -r iot_traffic.pcap -Y "mqtt" -T fields -e mqtt.topic

Test for default credentials on a smart device (ethical use only)
hydra -l admin -P /usr/share/wordlists/rockyou.txt ssh://192.168.1.50

Firmware analysis (extract and inspect)
binwalk -e firmware.bin
strings extracted/ | grep -i "password|key|token"

Step-by-Step: Securing an IoT Edge Gateway

  1. Disable Unused Services: `sudo systemctl disable bluetooth.service avahi-daemon.service`
    2. Implement MAC Filtering: Restrict which devices can connect to the gateway via iptables.
  2. Enable Secure Boot: Verify UEFI Secure Boot is enabled to prevent unauthorized firmware loads.
  3. Set Up Intrusion Detection: Install `fail2ban` to block repeated SSH login failures.
  4. Regular Firmware Updates: Automate OTA updates with cryptographic signature verification.

  5. Curriculum Spotlight: AI, Data Science, and Cybersecurity Intersections

HKUST(GZ) has established four academic Hubs — Function, Information, Systems, and Society — comprising 16 thrusts, with学科布局深度契合国家未来产业的战略方向. The Information Hub alone comprises four thrust areas: Artificial Intelligence, Data Science and Analytics, Computational Media and Arts, and Internet of Things.

Notable Programs and Research:

  • AI Thrust: Dedicated to both theoretical and applied research in AI and Machine Learning, with strong research background from HKUST and commitment to basic and applied research in artificial intelligence.
  • Data Science and Analytics Thrust: Boasts a distinguished international faculty team including five national high-level talents, one ACM Fellow, four IEEE Fellows, and eight scholars ranked among Stanford’s top 2% of global scientists. Over the past year, the faculty has published more than 150 papers in top-tier journals and conferences and secured over 110 patents.
  • Cognitive Security for AI-1ative IIoT: A 2026 publication from INTR Thrust researchers presents an LLM-centric adaptive defense framework for industrial IoT — a cutting-edge example of the research output students will engage with.

Key Technical Skills Students Will Acquire:

  1. Statistical Inference and Hypothesis Testing for security event correlation.
  2. Graph Database Querying (e.g., Neo4j) for threat intelligence graphing.
  3. Large-Scale Data Processing with Apache Spark for log analysis.
  4. Machine Learning Model Deployment using TensorFlow Serving or PyTorch TorchServe.
  5. Cloud Security Hardening (AWS, Azure, GCP) for AI workloads.

Windows Commands for Security Analytics:

 Collect and analyze Windows event logs for security incidents
Get-WinEvent -FilterHashtable @{LogName='Security'; ID=4624,4625} -MaxEvents 100

Use Sysinternals Autoruns to detect persistence mechanisms
.\Autoruns64.exe -accepteula -a -c > persistence_mechanisms.csv

Monitor network connections in real-time
netstat -anob | findstr ESTABLISHED

Check for unsigned drivers (potential rootkits)
Get-WindowsDriver -Online -All | Where-Object {$_.IsSigned -eq $false}

Step-by-Step: Building a Threat Intelligence Dashboard

  1. Data Ingestion: Use `Filebeat` (Linux) or `NXLog` (Windows) to ship logs to Elasticsearch.
  2. Normalization: Write Logstash pipelines to parse and structure log data.
  3. Storage: Index data in Elasticsearch with appropriate mappings for security fields.
  4. Visualization: Create Kibana dashboards for real-time threat monitoring.
  5. Alerting: Configure Watcher or ElastAlert for anomaly detection (e.g., 10+ failed logins in 5 minutes).

  6. Global Partnerships and International Exposure: The Cybersecurity Network

HKUST(GZ) has forged partnerships with 61 leading institutions worldwide, from Oxford and Stanford to NUS, offering 51 exchange programs. Since summer 2025, 15% of the first undergraduate cohort has gained international study experience in the United States, the United Kingdom, Germany, France, and Italy, as well as Hong Kong, China. This global network is invaluable for cybersecurity students, who benefit from:

  • Cross-Border Threat Intelligence Sharing: Collaborating with international peers on real-world security challenges.
  • Access to Global Research Labs: Internships at partner institutions with specialized security research centers.
  • Diverse Regulatory Perspectives: Understanding GDPR, CCPA, PIPL, and other data protection frameworks.
  • Industry Connections: Partnerships with leading enterprises such as Huawei, Tencent, and Alibaba provide internship and employment pathways.

API Security Hardening (Practical Exercise for Exchange Students):

 Test API endpoints for common vulnerabilities (OWASP API Top 10)
 Using OWASP ZAP in headless mode
zap-cli quick-scan --self-contained --start-options '-config api.disablekey=true' http://target-api.com

Check for insecure direct object references (IDOR)
curl -X GET "http://target-api.com/users/123" -H "Authorization: Bearer $TOKEN"
curl -X GET "http://target-api.com/users/124" -H "Authorization: Bearer $TOKEN"  Should fail

Rate limiting test (brute force simulation)
for i in {1..100}; do curl -X POST "http://target-api.com/login" -d '{"user":"admin","pass":"wrong"}' ; done

What Undercode Say:

  • Key Takeaway 1: HKUST(GZ)’s “Major+AI” mandate is a groundbreaking policy that will produce graduates who are not merely AI-literate but AI-practitioners in their respective domains — a critical advantage in cybersecurity, where AI is both a weapon and a shield.
  • Key Takeaway 2: The HPC-AI Converged Computing Center, with over 1 exaflop of FP16 AI computing power, positions HKUST(GZ) as a premier destination for adversarial machine learning research and large-scale security simulations.

Analysis: The university’s strategic expansion to 450 undergraduate seats, coupled with the compulsory AI curriculum, signals a recognition that traditional siloed education cannot produce the interdisciplinary talent needed to defend against AI-powered cyber threats. The “Hub-and-Thrust” model — replacing conventional schools and departments — is a bold experiment in breaking down academic barriers. For cybersecurity, this means that a student studying IoT can seamlessly take advanced courses in AI security, data privacy, and cryptographic protocols without bureaucratic hurdles. The strong industry partnerships with Huawei, Tencent, and Alibaba ensure that theoretical knowledge is grounded in real-world applications, from securing smart city infrastructure to defending financial APIs. However, the reliance on English as the medium of instruction and the relatively high tuition fees (RMB 50,000–100,000 per year) may limit accessibility. Nevertheless, for those who can enroll, the combination of world-class faculty, exascale computing resources, and a globally connected curriculum offers an unparalleled launchpad into the cybersecurity workforce of the future.

Prediction:

  • +1 HKUST(GZ)’s AI-first curriculum will produce a generation of cybersecurity professionals who can design AI-resistant systems, reducing the success rate of AI-powered attacks by an estimated 30–40% within five years.
  • +1 The HPC-AI center will become a breeding ground for open-source security tools, with student-led projects contributing to the global cybersecurity commons (e.g., new IDS algorithms, LLM-based threat detectors).
  • -1 The rapid expansion to 450 students may strain faculty resources, potentially diluting the quality of hands-on mentoring in specialized security labs.
  • -1 Graduates may face a skills mismatch if the industry does not keep pace with the university’s advanced AI-security curriculum, leading to a “too specialized” phenomenon for entry-level roles.
  • +1 The international exchange programs will foster cross-border cybersecurity collaborations, accelerating the adoption of global best practices in China’s digital economy.
  • +1 The IoT Thrust’s focus on security and privacy-enhancing technologies will directly address the vulnerabilities exposed by the proliferation of smart devices, potentially reducing IoT-related breaches by 25% in the Greater Bay Area by 2030.
  • -1 The reliance on commercial vendors (NVIDIA, Huawei) for HPC infrastructure creates supply chain risks that could disrupt research continuity.
  • +1 The “AI Minor” option will produce non-specialists who can make informed decisions about AI deployment, reducing organizational risks from AI misapplication.
  • +1 The university’s location in Nansha, Guangzhou — a hub for AI and robotics development — will facilitate internships and job placements in one of China’s most dynamic tech ecosystems.
  • +1 By 2028, HKUST(GZ) will be recognized as a top-10 global institution for AI-security research, attracting talent from North America and Europe.

▶️ Related Video (76% Match):

🎯Let’s Practice For Free:

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

IT/Security Reporter URL:

Reported By: Jee Gsat – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeTesting & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky