• HOME
  • ABOUT US
    • VISION
    • SOCIAL NETWORK>
      • FACEBOOK SECURITY
      • TWITTER SECURITY
      • SECURITY BLOG
      • SECURITY PRESENTATION
      • JOIN LINKEDIN
      • Ethical Hacking Blog
    • PEOPLE
    • CLIENTS
    • CREDENTIALS
    • MEDIA
  • EGUARD 360
  • SERVICES
    • AUDIT>
      • WEBSITE SECURITY AUDIT
      • APPLICATION SECURITY AUDIT
      • NETWORK SECURITY AUDIT
      • PHYSICAL SECURITY AUDIT
    • COMPLIANCE>
      • ISO 27001 IEC 27002 COMPLIANCE
      • HIPAA COMPLIANCE
      • ISO 20000 COMPLIANCE
      • PCI/DSS
      • TL 9000
    • PENETRATION TESTING
    • MANAGED NETWORK SECURITY
    • MANAGED WEBSITE & APPLICATION SECURITY
    • CONSULTING
    • EMERGENCY RESPONSE & FORENSICS
  • PRODUCTS
    • SECURITY MONITORING
    • GATEWAY SECURITY
    • FORT APPIN ANTI-VIRUS
    • aENCRYPT ENCRYPTION SOFTWARE
  • INDUSTRY FOCUS
    • Aviation & Airlines
    • Telecom & ISP
    • Education Sector
    • BFSI/Banking/Insurance
    • IT / ITES / BPO
    • E-Commerce
    • Government & Defense
    • Health Care & Life Sciences
    • Infrastructure
    • Manufacturing & Engineering
    • Media
    • Retail & FMCG
    • Security Articles>
      • NETWORK SECURITY MANAGEMENT
      • Information security companies
      • WEB APPLICATION SECURITY>
        • Wireless Pen Testing
        • Web Authentication Server
        • Web Application Testing
        • Web App Vulnerability
        • Web Application Monitoring
        • Application Server Monitoring
        • Application Vulnerabilities
        • website security audit
        • Application Security Assessment
        • Application Penetration Testing
        • Juniper firewall india
        • Managed security services
        • Security consultancy service
      • NETWORK SECURITY>
        • TCP IP Stack
        • E-mail Password Encryption
        • Block Port Problem
        • Secured E-mail Server Hosting
        • Infosec Phishing Protection
        • Information Security Policy
        • IT Security Management
        • Intrusion Prevention System
        • Intruder Detection System
        • Internet Security Firewalls
        • Identity Access Management
        • Security Event Log
        • Cyberoam Firewall
        • Network Security Software
        • Antivirus Firewall Software
        • Symantec Antivirus Corporate
        • Sonicwall firewall
        • Online antivirus
        • Best antivirus 2012
        • Hardware Firewall
        • Internet software security suites
      • Industry>
        • Bank Online Application Security
        • Healthcare Hipaa Compliance Security
        • Banking Financial Risk Management
      • CONSULTING AND AUDIT>
        • Security Risk Consultant
        • Enterprise IT Security
        • Corporate Risk Management
        • Audit ISO 9001
        • ISO 27001 Compliance
        • Auditor Wireless Security
        • PCI Compliance Credit Card
        • Network Security Scanner Scan
        • Risk Assesment Management
        • ISO 20000 IT Service
        • ISO 27001
        • TL 9000 telecom
      • Data security>
        • XSS Cross-Site Attack
        • SQL Injection Database
        • Database File Encryption
        • VPN HTTPS System
        • IP Spoofing Data Privacy
        • Man In Middle Attack
        • Data Loss Prevention
        • Data Protection Act
      • Appliance>
        • Voip Voice Encryption
        • IDS IPS UTM Appliance
        • Load Balancer Bandwidth Manager
        • Managed Firewall Services
        • Cisco Mars Pix
        • Firewall Web Server
        • Firewall For Windows Server
  • CONSULTANT
    • BECOME FORT APPIN AUTHORIZED CONSULTANT
    • FORT APPIN AUTHORIZED CONSULTANT LIST>
      • Security-Consulting-Hyderabad-Himayath Nagar
      • Security-Consulting-Hyderabad-Secunderabad
      • Security-Consulting-Hyderabad-Ameerpet
      • Security-Consulting-Rajasthan-Kota
      • Security-Consulting-Bangalore-JP Nagar
      • Security-Consulting-Bangalore-Sahakarnagar
      • Security-Consulting-Mumbai-Thane
      • Security-Consulting-Thiruvananthapuram-Manacuad
  • APPIN GROUP
  • CONTACT US
  • test

SQL Injection Database

A SQL injection attack consists of insertion or "injection" of a SQL query via the input data from the client to the application. A successful SQL injection exploit can read sensitive data from the database, modify database data (Insert/Update/Delete), execute administration operations on the database (such as shutdown the DBMS), recover the content of a given file present on the DBMS file system and in some cases issue commands to the operating system. SQL injection attacks are a type of injection attack, in which SQL commands are injected into data-plane input in order to effect the execution of predefined SQL commands.

Threats

SQL injection attacks allow attackers to spoof identity, tamper with existing data, cause repudiation issues such as voiding transactions or changing balances, allow the complete disclosure of all data on the system, destroy the data or make it otherwise unavailable, and become administrators of the database server.

SQL Injection is very common with PHP and ASP applications due to the prevalence of older functional interfaces. Due to the nature of programmatic interfaces available, J2EE and ASP.NET applications are less likely to have easily exploited SQL injections.

The severity of SQL Injection attacks is limited by the attacker’s skill and imagination, and to a lesser extent, defense in depth countermeasures, such as low privilege connections to the database server and so on. In general, consider SQL Injection a high impact severity.


Prevention

The most common way of detecting SQL injection attacks is by looking for SQL signatures in the incoming HTTP stream. For example, looking for SQL commands such as UNION, SELECT or xp_. The problem with this approach is the very high rate of false positives. Most SQL commands are legitimate words that could normally appear in the incoming HTTP stream. This will eventually case the user to either disable or ignore any SQL alert reported. In order to overcome this problem to some extent, the product must learn where it should and shouldn't expect SQL signatures to appear. The ability to discern parameter values from the entire HTTP request and the ability to handle various encoding scenarios are a must in this case.


Artticle source: https://www.owasp.org/index.php/SQL_Injection
Article source: http://www.imperva.com/resources/glossary/sql_injection.html