Skip to content
mimi

Associate Software Engineer- Secure Networks & Protocols with Security Clearance

Hirebase

South Africa · On-site Full-time Mid Level $101k – $137k/yr Today

About the role

It looks like you’ve posted the full posting for the Software Engineer – Secure Networks & Protocols role on Boeing’s SPD Training Software team. If you’re planning to apply (or you’re helping someone else apply), here are a few ways I can help you move forward:


1. Quick‑Read Summary (for a recruiter or networking chat)

Role: Software Engineer – Secure Networks & Protocols (full‑time, onsite, lab‑focused)
Location: Richardson, TX (25 % domestic travel)
Clearance: Active Top‑Secret (required)
Core Tech Stack: Linux (RHEL 8), Windows Server/10/11, Bash & PowerShell scripting, Active Directory, GPO, Cisco/Nexus IOS/NX‑OS, InfiniBand, PCoIP, NetApp NAS/SAN, iSCSI, STIG/ACAS scanning, Git/GitLab, Atlassian Jira/Confluence.
Key Responsibilities:

  • Maintain and upgrade P‑8A AAS training devices (Linux‑heavy).
  • Engineer scripts/processes for software integration, cyber‑patching, and lab maintenance.
  • Install/configure Windows & Linux VMs to meet DoD cyber‑security requirements.
  • Troubleshoot hardware/software/network issues, perform root‑cause analysis, and work with functional teams.
  • Participate in Agile scrum ceremonies and document SOPs.

Must‑Haves:

  • 5+ years Linux & Windows Server administration.
  • 5+ years troubleshooting/analysis.
  • DoD 8570 IAT II+ (Security+, GSEC, etc.).
  • Ability to obtain OS certifications (Linux+, CCNA, Server+).

Nice‑to‑Haves:

  • Red Hat 8, Bash/PowerShell, Cisco/Nexus, InfiniBand, PCoIP, NetApp, STIG/ACAS, Atlassian suite, Git.

Compensation: $101,150 – $136,850 (DOE) + full Boeing Total Rewards package.


2. Tailoring Your Resume – What to Highlight

Section What Boeing Wants How to Phrase It (example)
Professional Summary 5+ yr Linux & Windows admin, Top‑Secret clearance, DoD 8570 cert. “Seasoned Systems Engineer with 7 years of Linux (RHEL) and Windows Server administration, active Top‑Secret clearance, and Security+ certification. Proven track record delivering secure, mission‑critical software integrations for DoD training platforms.”
Core Competencies Linux (RHEL 8), Bash, PowerShell, AD/DNS/DHCP, GPO, Cisco/Nexus, InfiniBand, STIG/ACAS, NetApp, Git, Jira/Confluence, Agile/Scrum. List each as a bullet or a comma‑separated line.
Experience • Maintain training devices in lab environment
• Write/maintain install & configuration scripts
• Perform cyber‑patching & STIG compliance
• Troubleshoot hardware/software/network issues
• Agile scrum participation
Example bullet: “Managed a fleet of 30+ RHEL 8 training devices, automating OS patching and STIG compliance via Bash and Ansible, reducing monthly downtime by 40 %.”
Security & Clearance Active Top‑Secret, DoD 8570 IAT II+ “Active Top‑Secret clearance; DoD 8570 IAT II (Security+), currently pursuing Linux+ certification.”
Certifications Security+, (optional) Linux+, CCNA, Server+ List them with dates.
Tools & Platforms GitLab, Atlassian Jira/Confluence, NetApp NAS/SAN, iSCSI, PCoIP “Implemented CI/CD pipelines in GitLab for automated deployment of training software across Windows and Linux VMs.”
Education Relevant degree (BS/BA in CS, EE, or related) Keep it concise.

Tips:

  1. Quantify Impact – Use numbers (e.g., “Reduced patch‑deployment time from 4 hrs to 30 min,” “Supported 15+ remote installations with 100 % on‑time delivery”).
  2. Mirror Keywords – The ATS will scan for terms like “RHEL 8,” “STIG,” “Active Directory,” “PowerShell,” “Bash,” “DoD 8570,” “Top‑Secret.” Include them verbatim where appropriate.
  3. Show Agile Experience – Mention sprint planning, story points, or Jira board usage.
  4. Highlight Collaboration – “Coordinated with external software vendors to resolve integration issues, acting as the primary technical liaison.”

3. Draft Cover Letter Outline

[Your Name]
[Address] • [Phone] • [Email] • [LinkedIn]
[Date]

Hiring Manager
Boeing Defense, Space & Security – Mobility, Surveillance & Bombers
Richardson, TX

Re: Software Engineer – Secure Networks & Protocols (Req # XXXXX)

Paragraph 1 – Hook

  • State the role you’re applying for, your clearance, and a one‑sentence “value proposition.”
  • Example: “With an active Top‑Secret clearance, Security+ certification, and seven years of hands‑on Linux and Windows system engineering for DoD training platforms, I am excited to bring my expertise in secure network integration to Boeing’s SPD Training Software team.”

Paragraph 2 – Core Fit

  • Highlight 2‑3 most relevant achievements that map directly to the job duties.
  • Example: “At XYZ Corp., I led the migration of 25 P‑8A AAS training devices from legacy OS images to RHEL 8, automating patch management and STIG compliance via Bash/Ansible scripts, which cut monthly maintenance windows by 45 %.”

Paragraph 3 – Collaboration & Agile

  • Emphasize teamwork, scrum participation, and cross‑functional liaison work.
  • Example: “I regularly partnered with software vendors and internal functional teams to troubleshoot integration issues, documenting SOPs in Confluence and tracking progress in Jira, ensuring on‑time delivery for 12+ remote installations per year.”

Paragraph 4 – Why Boeing

  • Show you’ve researched Boeing’s mission and the specific program.
  • Example: “Boeing’s commitment to delivering cutting‑edge training solutions for the P‑8A fleet aligns with my passion for secure, mission‑critical systems, and I am eager to contribute to the continued success of the MS&B portfolio.”

Closing

  • Thank them, express enthusiasm for an interview, and sign off.

4. Preparing for the CodeVue Coding Challenge

Boeing’s “CodeVue” assessment typically evaluates:

Focus Area Likely Topics Prep Tips
Linux scripting Bash, file manipulation, process control, networking commands (ifconfig/ip, netstat, ss) Write small scripts that parse /proc, manage services, or automate patch installs.
PowerShell Cmdlet usage, pipeline, remote sessions, DSC (Desired State Configuration) basics Practice converting a Bash task to PowerShell (e.g., reading event logs, managing services).
Networking Basic socket programming, parsing logs, simple client/server, IP/Port handling Implement a tiny TCP echo server in Python or C, then wrap it in a Bash wrapper.
Problem‑solving Algorithms (arrays, strings, hash maps), time/space analysis Review common LeetCode patterns (two‑pointer, sliding window, hashmap).
Security‑aware coding Input validation, handling privileged operations, avoiding command injection Write a script that safely executes a user‑provided command using sudo with proper checks.

Study Plan (2‑week sprint)

  1. Day 1‑3: Review Bash fundamentals – loops, functions, error handling (set -euo pipefail). Build a script that reads a CSV of device IPs, pings each, and writes results to a log.
  2. Day 4‑5: PowerShell basics – Get-Service, Invoke-Command, Export-Csv. Convert the Bash script to PowerShell.
  3. Day 6‑8: Networking basics – write a simple TCP client/server in Python (or C) and test locally.
  4. Day 9‑10: Algorithm practice – pick 5 medium‑difficulty LeetCode problems, solve them in your language of choice, and time yourself.
  5. Day 11: Security focus – read up on OWASP Top 10, especially command injection and insecure deserialization. Write a secure wrapper around a system call.
  6. Day 12‑13: Mock assessment – set a timer (90 min), run through a full practice test (you can find sample “online coding challenge” platforms). Review any mistakes.
  7. Day 14: Rest, review notes, ensure your development environment (IDE, terminal, Git) is ready.

During the test:

  • Read the problem statement twice before coding.
  • Write a quick pseudocode comment block.
  • Implement a minimal, correct solution first; optimize only if time permits.
  • Add basic input validation (especially for scripts).
  • Test with edge cases you can think of before submitting.

5. Interview Topics You Might Face

Category Sample Questions
Linux Administration “Explain how you would harden a RHEL 8 system to meet DoD STIG requirements.”
Windows Server “Describe the process of creating a GPO that enforces BitLocker encryption on all domain‑joined laptops.”
Networking “What are the differences between InfiniBand and Ethernet for high‑throughput training devices?”
Scripting “Show me a Bash script that checks for missing security patches and logs the results to a central server.”
Security Certifications “How does the 8570 IAT II requirement influence your daily workflow?”
Agile/Scrum “How do you handle a story that is blocked by an external vendor’s software release schedule?”
Problem‑Solving “Given a log file with timestamps, write a script to identify any 5‑minute window where more than 10 error events occurred.”
Collaboration “Tell us about a time you had to coordinate a remote installation with a customer site under a tight deadline.”

Prepare concise STAR (Situation‑Task‑Action‑Result) stories for each.


6. Checklist Before You Submit

  • Resume – Tailored, keyword‑rich, ≤2 pages, PDF (no hidden text).
  • Cover Letter – Customized for Boeing, includes clearance and relevant achievements.
  • Certificates – Scan/upload Security+ (or equivalent) and any DoD 8570 proof.
  • Clearance Documentation – Ensure your active Top‑Secret status is current (date, sponsor).
  • References – Have 2‑3 professional references ready (preferably with DoD or defense‑industry experience).
  • CodeVue Assessment – Completed, uploaded, and confirmation received.
  • Application Form – All required fields filled, “Export Control” question answered (U.S. Person).

Need Anything Specific?

  • A full‑draft resume in your own wording?
  • A polished cover letter ready to copy‑paste?
  • Mock interview questions and answers?
  • Practice coding problems with solutions?

Just let me know which piece you’d like to dive into, and I’ll provide it right away!

Requirements

  • Active Top-Secret Clearance
  • 5+ years of experience and competency in troubleshooting, analysis and problem- solving strategies
  • 5+ years of experience in Linux OS administration
  • 5+ years of experience on Windows/Windows Server OS administration
  • DoD 8570 certification at IAT Level II or higher (Security+, GSEC, SCNP, SSCP, CISSP, CISA, GSE, SCNA, CASP)
  • Ability to obtain an Operating System (OS) Certification after employment (Linux+, CCNA, Server+, etc.)

Responsibilities

  • Maintain P-8A AAS training devices in a predominantly Linux environment.
  • Engineer new processes, scripts, methodologies, and solutions to provide a better product for our customers.
  • Integration of locally developed software into training devices.
  • Integration and troubleshooting of software from outside entities, requiring external support for configuration and troubleshooting.
  • Install and configure Windows and Linux physical and virtual machines to meet cyber security requirements; install and test monthly patches on the operating systems.
  • Troubleshoot hardware, software, and network problems to find root cause and collaborate with the functional teams to find resolutions.
  • Perform scheduled lab maintenance operations and continuous cyber monitoring activities in the labs.
  • Integration, configuration, and verification of databases.
  • Develop and maintain scripts used to install, integrate, and configure software products.
  • Verify device functionality after software integration and cyber updates.
  • Support testing of training system devices.
  • Participate in scrum meetings and use Agile tools for task tracking.
  • Develop and maintain documentation for troubleshooting procedures, software configuration and installation, and standard operating procedures.

Benefits

health insuranceflexible spending accountshealth savings accountsretirement savings planslife insurancedisability insurancepaid time away from workunpaid time away from work

Skills

Bash scriptingCisco/Nexus IOS/NXOSDHCPDNSGitGitlabInfiniBand networkingiSCSIJiraLinuxNetApp NAS/SANPCoIPPowershell ScriptingRed Hat Linux 8Security+STIG/ACAS scanningWindowsWindows Active DirectoryWindows 10/11/ServerWindows GPOs

Don't send a generic resume

Paste this job description into Mimi and get a resume tailored to exactly what the hiring team is looking for.

Get started free