AcademySky-High Systems: The AWS OdysseySector 1: The Infinite Warehouse (S3)

Sector 1: Smuggling Data

Building the warehouse was just the start. Now, you need to deliver the payload. In AWS, we don't just "save" files; we upload Objects to our Buckets.

Tactical Intel: The cp Command

The command cp (Copy) is used to move data from your local machine into the cloud. Think of it as a delivery truck transporting cargo from your house to the warehouse.

# Uploading cargo
aws s3 cp local_file.txt s3://your-bucket-name/remote_file.txt

Directive: Payload Delivery

You have sensitive intel that needs to be stored in your newly created cyber-ops-data bucket.

booting...

Tactical Objectives

  1. Prepare Payload: Run echo "Top Secret Data" > intel.txt to create the data file.
  2. Launch Delivery: Run aws s3 cp intel.txt s3://cyber-ops-data/intel.txt to upload it.
  3. Confirm Arrival: Run aws s3 ls s3://cyber-ops-data to see if the payload arrived safely.

Operative's Insight

Once a file is in S3, it has a URL. You can share this URL with other agents (or users) so they can download the payload from anywhere in the world!

Mission Control

Create a Tactical Payload

Expected Command

echo 'Top Secret Data' > intel.txt

Deliver Payload to the Warehouse