Website Security Audit

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_crm_chasseurs_493_0.webp
    CRM development for Chasseurs
    847
  • image_website-sbh_0.png
    Website development for SBH Partners
    999
  • image_website-_0.png
    Website development for Red Pear
    451

Website Security Audit

Security audit is a systematic search for vulnerabilities before attackers find them. It combines automated scanning and manual testing. The result is a prioritized list of vulnerabilities with specific remediation steps.

OWASP Top 10 — What We Check

A01: Broken Access Control — can unauthorized users access others' data? A02: Cryptographic Failures — are passwords stored in plain text, is HTTPS used everywhere? A03: Injection — SQL, NoSQL, OS Command injection A04: Insecure Design — logical vulnerabilities in business processes A05: Security Misconfiguration — open directories, default passwords A07: Identification and Authentication Failures — missing rate limiting, weak sessions

Automated Scanning

# OWASP ZAP: comprehensive web scanning
docker run -v $(pwd):/zap/wrk/:rw \
  ghcr.io/zaproxy/zaproxy:stable zap-baseline.py \
  -t https://mysite.com \
  -r zap-report.html \
  -a  # active scanning

# Nikto: fast scanning
nikto -h https://mysite.com -output nikto-report.html -Format htm

# Nuclei: CVE template scanning
nuclei -u https://mysite.com -severity critical,high -o nuclei-results.txt

# SSL/TLS
testssl.sh --fast --html https://mysite.com

# Headers
curl -I https://mysite.com | grep -E "(X-Frame|X-XSS|Content-Security|Strict-Transport|X-Content-Type)"

Manual Testing

SQL Injection:

# Test all input points:
GET /users?id=1'  # if 500 — vulnerable
GET /search?q=1' OR '1'='1

# Verification with sqlmap (only on your own site!)
sqlmap -u "https://mysite.com/users?id=1" --dbs --batch

XSS:

# Basic payloads
<script>alert(1)</script>
"><img src=x onerror=alert(1)>
javascript:alert(1)

# In form fields, URL parameters, headers

IDOR (Insecure Direct Object Reference):

# After logging in as user1, try to get user2's data
curl -H "Cookie: session=user1_session" https://mysite.com/api/users/2/profile
curl -H "Cookie: session=user1_session" https://mysite.com/api/orders/other_user_order_id

Authentication:

# Brute force without blocking?
for i in {1..100}; do
  curl -s -o /dev/null -w "%{http_code}" \
    -d "[email protected]&password=wrong$i" \
    https://mysite.com/login
done | sort | uniq -c

# Predictable tokens?
# Weak JWT?
jwt-cracker <token> -d rockyou.txt

Security Headers: Checklist

add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'nonce-{RANDOM}'; style-src 'self'; img-src 'self' data: https://cdn.mysite.com; frame-ancestors 'none';" always;
add_header X-Frame-Options "DENY" always;
add_header X-Content-Type-Options "nosniff" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
add_header Permissions-Policy "camera=(), microphone=(), geolocation=()" always;
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" always;

Verification Tools

# Mozilla Observatory
curl "https://http-observatory.security.mozilla.org/api/v1/analyze?host=mysite.com&rescan=true" \
  -X POST | jq '.grade'

# securityheaders.com API
curl "https://securityheaders.com/?q=mysite.com&followRedirects=on" -I | grep "X-Grade"

Audit Report

## Critical Vulnerabilities (require immediate remediation)

### CVE-001: SQL Injection in /api/search
- **CVSS:** 9.8 (Critical)
- **Vector:** Parameter `q` is not sanitized, entire database can be extracted
- **PoC:** `GET /api/search?q=1' UNION SELECT table_name FROM information_schema.tables--`
- **Remediation:** Parameterized queries

## High Vulnerabilities

### CVE-002: Missing rate limiting on /login
- **CVSS:** 7.5 (High)
- **Vector:** Unlimited password brute force
- **Remediation:** Fail2ban, CAPTCHA after 5 attempts, temporary IP blocking

Security audit of medium web application — 3–7 business days.