FTP & S3 Test
FTP
Public FTP test server for uploading DLP test files. Uploaded files are deleted after about 10 minutes.
| FTP host | ftp.dlptest.com |
|---|---|
| User | dlpuser |
| Password | rNrKYTX9g7z3RgJRmxWuGHbeu |
| Mode | Passive (active is not supported) |
| Retention | 10 minutes |
On Windows, use a client likeFileZilla; the active FTP transport built into cmd.exe does not support passive mode. Import our pre-configured FileZilla profile:DLP_Test_FTP_FileZilla.xml.
IP block list
To limit hosting costs from automated upload abuse, an IP block list is enforced. If you believe your address has been blocked in error, use thecontact page.
S3
Public S3 bucket for testing cloud-storage DLP policies. No authentication required — upload any file with an HTTP PUT. Objects are automatically deleted after 24–48 hours via a lifecycle rule.
| Bucket | dlptest-public-bucket |
|---|---|
| Region | us-west-2 |
| Endpoint | https://dlptest-public-bucket.s3.us-west-2.amazonaws.com/FILENAME |
| Auth | None (public PutObject) |
| Retention | 24–48 hours |
Upload (curl)
curl -X PUT --upload-file "/path/to/testfile.txt" \
https://dlptest-public-bucket.s3.us-west-2.amazonaws.com/testfile.txtDownload (curl)
curl -O https://dlptest-public-bucket.s3.us-west-2.amazonaws.com/testfile.txtUpload (Python boto3)
import boto3
from botocore import UNSIGNED
from botocore.client import Config
s3 = boto3.client("s3", region_name="us-west-2", config=Config(signature_version=UNSIGNED))
s3.upload_file("testfile.txt", "dlptest-public-bucket", "testfile.txt")