Justin Clarke Lead Author and Technical Editor Rodrigo Marcos Alvarez Dave Hartley Joseph Hemler Alexander Kornbrust Haroon Meer Gary O’Leary-Steele Alberto Revelli Marco Slaviero Dafydd Stuttard


Chapter 9 Platform-Level Defenses . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 377



Download 6,54 Mb.
Pdf ko'rish
bet14/64
Sana12.07.2022
Hajmi6,54 Mb.
#784293
1   ...   10   11   12   13   14   15   16   17   ...   64
Bog'liq
SQL Injection Attacks and Defense.pdf ( PDFDrive )

Chapter 9 Platform-Level Defenses . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 377
Introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 378
Using Runtime Protection . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 378
Web Application Firewalls . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 379
Using ModSecurity . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 380
Configurable Rule Set . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 380
Request Coverage . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 383


xvi 
Contents
Request Normalization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 383
Response Analysis . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 384
Intrusion Detection Capabilities . . . . . . . . . . . . . . . . . . . . . . . . . . . . 385
Intercepting Filters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 386
Web Server Filters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 386
Application Filters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 389
Implementing the Filter Pattern in Scripted Languages . . . . . . . . . . . . . 390
Filtering Web Service Messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 391
Non-Editable versus Editable Input Protection . . . . . . . . . . . . . . . . . . . . . . 391
URL/Page-Level Strategies . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 392
Page Overriding . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 392
URL Rewriting . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 393
Resource Proxying/Wrapping . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 393
Aspect-Oriented Programming (AOP) . . . . . . . . . . . . . . . . . . . . . . . . . . . 393
Application Intrusion Detection Systems (IDSs) . . . . . . . . . . . . . . . . . . . . . 394
Database Firewall . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 394
Securing the Database . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395
Locking Down the Application Data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 395
Use the Least-Privileged Database Login . . . . . . . . . . . . . . . . . . . . . . . . 395
Revoke PUBLIC Permissions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396
Use Stored Procedures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 396
Use Strong Cryptography to Protect Stored Sensitive Data . . . . . . . . . . 397
Maintaining an Audit Trail . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 398
Oracle Error Triggers . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 398
Locking Down the Database Server . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 400
Additional Lockdown of System Objects . . . . . . . . . . . . . . . . . . . . . . . . 400
Restrict Ad Hoc Querying . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 401
Strengthen Controls Surrounding Authentication . . . . . . . . . . . . . . . . . 401
Run in the Context of the Least-Privileged
Operating System Account . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 401
Ensure That the Database Server Software Is Patched . . . . . . . . . . . . . . . 402
Additional Deployment Considerations . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 403
Minimize Unnecessary Information Leakage . . . . . . . . . . . . . . . . . . . . . . . 403
Suppress Error Messages . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 403
Use an Empty Default Web Site . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 406
Use Dummy Host Names for Reverse DNS Lookups . . . . . . . . . . . . . . 406
Use Wildcard SSL Certificates . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 407
Limit Discovery via Search Engine Hacking . . . . . . . . . . . . . . . . . . . . . 407
Disable Web Services Description Language
(WSDL) Information . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 408



Download 6,54 Mb.

Do'stlaringiz bilan baham:
1   ...   10   11   12   13   14   15   16   17   ...   64




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish