Privacy Act 1988 and Your Website's Security Obligations
The Privacy Act 1988 imposes specific security obligations on Australian businesses that collect personal information online. Here's what your website must do to comply.
Man-in-the-middle attacks intercept data between your customers and your website. Here's how SSL prevents them — and what happens when it doesn't.
By CertGuard Team
Every time a customer submits their details on your website — an email address, a password, a payment card number — that data travels across the internet to your server. Without SSL, that journey is made in plain text that anyone on the network can read.
A man-in-the-middle (MITM) attack is when someone positions themselves between your customer and your server and intercepts that traffic. It's one of the oldest attacks in security, and SSL/TLS is the primary defence against it.
Imagine your customer is using a café's Wi-Fi. The attacker is also on that network. Without encryption:
The customer sees nothing unusual. Your website received the login. The attacker has the credentials.
This is the passive version — eavesdropping. The active version is more sophisticated:
The traffic downgrade from HTTPS to HTTP is called SSL stripping; modifying the content in transit is called content injection. Both techniques have been used in real attacks against businesses of all sizes, and both are prevented by properly implemented HTTPS.
SSL/TLS solves the MITM problem through two mechanisms:
All data between the browser and your server is encrypted using the public key from your SSL certificate. Only your server — which holds the matching private key — can decrypt it.
Even if an attacker captures the encrypted traffic on the network, they see gibberish. The mathematics of modern encryption (AES-256, for example) means decrypting the traffic without the private key would take longer than the age of the universe.
Encryption alone isn't enough. An attacker could potentially intercept the connection and present their own certificate — one that says it belongs to your domain.
This is where Certificate Authorities matter. When your browser connects to a site, it checks:
If all three check out, the browser shows the padlock. If an attacker tries to substitute their own certificate — one that wasn't issued by a trusted CA for your domain — the browser immediately shows a warning.
This is why a valid SSL certificate from a trusted CA is fundamental to web security, not just a cosmetic feature.
Public Wi-Fi attacks: Research consistently shows that attacks on public Wi-Fi networks — airports, cafés, hotels — are common. HTTPS makes them largely harmless; HTTP makes them trivial.
ISP injection: In 2017, a major US ISP was caught injecting tracking scripts into HTTP pages loaded by customers. With HTTPS, this is technically impossible — any modification to the content breaks the encryption and triggers a browser error.
Hotel networks: Several incidents have documented hotel networks injecting advertising into HTTP traffic — technically a MITM attack. HTTPS prevents this entirely.
BGP hijacking: In sophisticated attacks, entire IP routes can be redirected. Without certificate pinning or HTTPS, legitimate traffic can be silently redirected to attacker-controlled servers.
It's important to be clear about SSL's limits:
It doesn't protect against attacks on your server itself. If an attacker compromises your web server, they can access data after it's been decrypted.
It doesn't protect against phishing. A scam website can have a perfectly valid HTTPS certificate. The padlock means the connection is encrypted — not that the website is legitimate. Modern phishing sites almost always use HTTPS.
It doesn't protect against your own application's vulnerabilities. SQL injection, XSS, and other application-layer attacks happen after the HTTPS connection is established.
It doesn't prevent traffic analysis. Even with encryption, an attacker can see which domains you're connecting to (though not the specific pages or content).
Here's the overlooked part: when your SSL certificate expires, the protection stops — not gradually, but instantly.
The moment the certificate expires:
An expired certificate is therefore not just a business continuity issue — it's a security issue. Even a brief window of expired certificate leaves customers who bypass the warning exposed to interception.
The minimum requirements for protecting customers from MITM attacks:
1. HTTPS on every page — including internal ones
HTTP Strict Transport Security (HSTS) forces browsers to always use HTTPS for your domain, even if someone types http:// in the address bar. Note: HSTS only protects returning visitors whose browsers have cached the HSTS header. First-time visitors are not protected unless your domain is on the HSTS preload list.
2. Keep your certificate valid at all times An expired certificate is a hole in your security. Monitoring with automated alerts ensures you always have time to renew before expiry.
3. Check your TLS configuration Old TLS versions (1.0, 1.1) have known weaknesses. Run your site through SSL Labs (ssllabs.com/ssltest) and aim for an A rating.
4. Use certificate pinning for mobile apps If you have a mobile app, certificate pinning prevents the app from accepting certificates from any CA except the one you've specified — a defence against MITM attacks targeting app traffic. Note: certificate pinning requires careful management — if you don't update the pinned certificate before renewing your SSL certificate, your app will stop working for all users.
5. Monitor for unexpected certificates Check Certificate Transparency logs periodically for any certificates issued for your domain that you didn't authorise.
SSL monitoring handles the most critical part — keeping your certificate valid. CertGuard checks every 6 hours and alerts you at 30, 14, 7, and 1 day before expiry. Free for up to 3 domains.
CertGuard monitors your certificates automatically and alerts you before anything expires. Free for up to 3 domains.
Start Free →The Privacy Act 1988 imposes specific security obligations on Australian businesses that collect personal information online. Here's what your website must do to comply.
The Australian Cyber Security Centre's Essential Eight framework addresses certificate management through patch management and application hardening. Here's how SSL monitoring fits in.
SSL and TLS are often used interchangeably, but they're not the same thing. Here's what the difference means for your website's security.