eCPPTv2-PTP-Notes
HomeGitHubPortfolioTwitter/XMediumCont@ct
  • 📝eCPPTv2 / PTP - Notes
  • 1️⃣1 - ​System Security
    • 1.1 Architecture Foundamentals
    • 1.2 Assemblers and Tools
    • 1.3 Buffer Overflow
    • 1.4 Cryptography
    • 1.5 Malware
    • 1.6 Shellcoding
  • 2️⃣2 - Network Security
    • 2.1 System/Host Based Attacks
      • 2.1.1 Windows Vulnerabilities
    • 2.2 Network Based Attacks
    • 2.3 The Metasploit Framework (MSF)
      • MSF Introduction
      • Information Gathering & Enumeration
      • Vulnerability Scanning
      • Client-Side Attacks
      • Post Exploitation
      • Armitage
    • 2.4 Exploitation
    • 2.5 - Post Expolitation / Pivoting
      • 2.5.1 Pivoting Guidelines
      • 2.5.2 Pivoting Example (3 Targets)
    • 2.6 Social Engineering
  • 3️⃣3 - PowerShell for PT
    • 3.1 PowerShell
  • 4️⃣4 - Linux Exploitation
    • 4.1 Linux Vulnerabilities
    • 4.2 Linux Exploitation
    • 4.3 Linux Post-Exploitation
    • 4.4 Linux Privilege Escalation
      • 4.4.1 Kernel Exploitation
      • 4.4.2 SUID Exploitation
      • 4.4.3 CronJobs
  • 5️⃣5 - Web App Security
    • 5.1 - Web App Concepts
      • 5.1.1 HTTP/S Protocol
      • 5.1.2 Encoding
      • 5.1.3 Same Origin
      • 5.1.4 Cookies
      • 5.1.5 Session
      • 5.1.6 Web App Proxies
    • 5.2 - Information Gathering
      • 5.2.1 Gathering Information on Your Targets
      • 5.2.2 Infrastructure
      • 5.2.3 Fingerprinting Frameworks and Applications
      • 5.2.4 Fingerprinting Custom Applications
      • 5.2.5 Enumerating Resources
      • 5.2.6 Information Disclosure Through Misconfiguration
      • 5.2.7 Google Hacking
      • 5.2.8 Shodan HQ
    • 5.3 - Cross Site Scripting
      • 5.3.1 XSS Anatomy
      • 5.3.2 Reflected XSS
      • 5.3.3 Stored XSS
      • 5.3.4 DOM-Based XSS
      • 5.3.5 Identifying & Exploiting XSS with XSSer
    • 5.4 - SQL Injection
      • 5.4.1 Introduction to SQL Injection
      • 5.4.2 Finding SQL Injection
      • 5.4.3 Exploiting In-Band SQL Injection
      • 5.4.4 Exploiting Error-Based SQL Injection
      • 5.4.5 Exploiting Blind SQL Injection
      • 5.4.6 SQLMap
      • 5.4.7 Mitigation Strategies
      • 5.4.8 From SQLi to Server Takeover
    • 5.5 - Other Common Web Attacks
      • 5.5.1 Session Attacks
      • 5.5.2 CSRF
  • 6️⃣6 - ​Wi-Fi Security
    • 6.1 Traffic Analysis
  • 7️⃣7 - ​Metasploit & Ruby
    • 7.1 Metasploit
  • 📄Report
    • How to write a PT Report
  • 🛣️RoadMap & My Experience
  • 📔eCPPT Cheat Sheet
Powered by GitBook
On this page
  • Fingerprinting Custom Applications
  • Initial Overview
  • Burp Target Crawler
  • Creating a Functional Graph
  • Mapping the Attack Surface
  • Charting
  1. 5 - Web App Security
  2. 5.2 - Information Gathering

5.2.4 Fingerprinting Custom Applications

Fingerprinting Custom Applications

When dealing with custom applications, particularly those tailored for a specific organization, a thorough approach is required to understand their intricacies. Below is a detailed breakdown of the fingerprinting process, with specific examples related to your message.

Initial Overview

  • Understand the Scope:

    • Questions to Address:

      • What is the primary purpose of the application?

      • Does it facilitate user registration?

      • Is there an administration panel?

      • What types of user input are accepted?

      • Does it allow file uploads?

      • Does it utilize JavaScript, AJAX, or Flash?

    • Example:

      • Suppose you're auditing a custom application for a financial institution. Understanding whether it enables online banking, user registrations, and financial transactions is crucial.

  • Visit the Website:

    • Questions to Answer:

      • What is the application's core functionality?

      • Does it involve online sales, corporate presence, or blogging?

      • Are there specific areas that require user authentication?

    • Example:

      • While navigating the website, you may discover that the application is primarily focused on corporate financial management and includes a secure login area for clients.

  • Consider Common Software:

    • Example:

      • Even in a custom application, you might find integrated functionalities such as forums or blogs. Recognizing these can be essential, as they may introduce vulnerabilities commonly associated with off-the-shelf software.

Burp Target Crawler

  • Proxy Setup:

    • Tool:

      • Utilize Burp Proxy for browsing, enabling the configuration of a scope through regular expressions.

    • Example:

      • Configure Burp Proxy to intercept requests related to user authentication or financial transactions within the application.

  • Crawling with Burp:

    • Tool:

      • Enable the Burp crawler (Spider tab) to automatically generate and record requests and response headers.

    • Example:

      • The crawler will traverse through different sections of the financial application, capturing relevant information about the structure and behavior.

Creating a Functional Graph

  • Study the Target:

    • Questions to Answer:

      • What is the primary purpose of each section?

      • Are there specific functionalities tied to user authentication?

      • What are the critical areas, such as eCommerce or client dashboards?

    • Example:

      • Identify that the eCommerce section is a core element, and there are login-protected areas containing sensitive financial data.

  • Study the Blocks:

    • Example:

      • Recognize that certain blocks may use third-party components, like a financial analytics tool or a secure payment gateway. Note any login-protected areas with a rhombus symbol.

  • Functional Graph:

    • Example:

      • Visualize the eCommerce block as a green hexagon, indicating its significance. The graph helps illustrate the application's structure and critical components.

Mapping the Attack Surface

  • Client-Side Validation:

    • Identification:

      • Locate client-side validation points by inspecting JavaScript functions triggered upon form submission.

    • Example:

      • Use tools like Firebug to identify JavaScript functions that validate user inputs in financial transaction forms.

  • Database Interaction:

    • Detection:

      • Identify changes in page appearance indicating active database interaction, as this may hint at SQL injection vulnerabilities.

    • Example:

      • Notice that certain pages dynamically update based on user queries, potentially indicating database interactions for financial data retrieval.

  • File Uploading and Downloading:

    • Example:

      • Identify pages that allow dynamic downloads or file uploads. These areas might pose risks related to Remote or Local File Inclusion vulnerabilities.

  • Display of User Supplied Data:

    • Example:

      • Locate sections displaying user-supplied data, which could be vulnerable to Cross-Site Scripting (XSS) attacks.

  • Redirections:

    • Example:

      • Investigate server-side directives and meta refresh tags. Improper handling could lead to HTTP response splitting and other attacks.

  • Access Controls and Login Protected Pages:

    • Example:

      • Identify login pages and areas protected by authentication. Test the security of these authentication routines.

  • Error Messages:

    • Example:

      • Collect error messages encountered during browsing. While intentional error generation may come later, noting spontaneous errors is crucial.

Charting

  • Organize Information:

    • Example:

      • Use a table-based chart to categorize information for each block, including client-side validation, redirections, database interaction, errors, display of user data, and login details.

Previous5.2.3 Fingerprinting Frameworks and ApplicationsNext5.2.5 Enumerating Resources

Last updated 1 year ago

5️⃣