ECIH - web?

 0    23 Datenblatt    dawidwilk3
mp3 downloaden Drucken spielen überprüfen
 
Frage Antworten
Shell Injection uses
Lernen beginnen
system(); StartProcess(); java. lang. Runtime exec()
File Injection uses
Lernen beginnen
via URL hhtps://... COLOR=http://evil...
SQL uses
Lernen beginnen
' or 1=1 --; xp_cmdshell; exec master
SQL detect regex
Lernen beginnen
%27 '; %3D =; union keyword
XSS uses
Lernen beginnen
html tags, <script><IMG><INPUT>
XSS regex
Lernen beginnen
%3C <
Path traversal regex
Lernen beginnen
%2E . ; %2F /
XSS ways to attack/manipulate/bypass
Lernen beginnen
hex encoding, toggle case <SCRIPT>, double encoding, replaced keywords, whitespace manipulation
DDos detection
Lernen beginnen
netstat -ab; many TIME_WAIT sent by single IP
Eradicating SQL
Lernen beginnen
limit length of input, hex encoding, custom error messages, disable XP_CMDSHELL, monitor traffic
Eradicating File Injection
Lernen beginnen
chroot jail, disable allow_url_open/include
Eradicating Command Injection
Lernen beginnen
input validation, safe API, input/output encoding
Eradaicating LDAP Injection
Lernen beginnen
LDAP filters, domain value validation, access control tight, dynamic testing and source code analysis
Eradicating: Broken authentication (1)
Lernen beginnen
use SSL, use MFA, no IDs in URL, password policy
Eradicating: Sensitive data exposure (2)
Lernen beginnen
data is encrypted, dont create or use weak algorithms, no caching for data that is sensitive, secure protocols
Eradicating: XML external entity attacks (3)
Lernen beginnen
no weakly configure XML parsers, XML unmarshaller, no DOC TYPE tag, input validation, avoid simple forms like JSON
Eradicating: Broken Access Control (4)
Lernen beginnen
check before redirect, limit file permissions, avoid client-side caching mechanisms, remove login tokens when logout
Eradicating: Security missconfigurations attacks (5)
Lernen beginnen
disable unused services, default accounts change/disable, use SSL, secure flag on sensitive cookiies, valid certificates
Eradicating: Insecure deserialization (7)
Lernen beginnen
validate input, avoid serialization, filter usntrased data
Eradicating: XSS attacks (6)
Lernen beginnen
rigorus validation of input, use testing tool during design, WAF to block malicious scripts, use HTML encoding, filter Meta characters, deplot PKI (PUBLIC)
Eradicating: due to Known Vulnerabilities (8)
Lernen beginnen
updates, monitor vulnerabilities, patch regulary, scan with security scanners, enforce best prtactices
Eradaicating: Insufficient logging and monitoring
Lernen beginnen
define scope of assets, minimum baseline for logging, proactive approach, prevent log injection attacks by sanitization, logs with user context
Eradicating: DoS attacks (10)
Lernen beginnen
deny external ICMP, limit length of input, block inbound traffic transmitted through service ports

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.