📦
HTB
  • Machines
    • Starting Point Machines
      • Tier 0 Machines
        • Meow
        • Fawn
        • Dancing
        • Redeemer
        • Explosion
        • Preignition
        • Mongod
        • Synced
      • Tier 1 Machines
        • Appointment
        • Sequel
        • Crocodile
        • Responder
        • Three
        • Ignition
        • Bike
        • Funnel
        • Pennyworth
        • Tactics
      • Tier 2 Machines
        • Archetype
        • Oopsie
        • Vaccine
        • Unified
        • Included
        • Markup
        • Base
    • Easy Machines
      • Nibbles
      • Stocker
      • Lame
        • Findings
        • Recon
          • NMAP
          • FTP
          • SSH
          • SMB Client
        • Exploitation
          • FTP
          • Samba
      • Find the easy Pass
      • Weak RSA
      • Jerry (Windows)
        • Recon
        • Enumeration
        • Vulnerabilities
      • You know 0xDiablos
      • Netmon
      • Blue
      • Precious
      • Optimum
      • Cap
      • Knife
    • Medium Machines
      • Under Construction
  • Getting Started Notes
    • Getting Help
    • SSL/TLS Certificates
    • Tutorial Websites
    • Wayback Machine
    • Wappalyzer
    • Google Hacking/Dorking
    • Blogs
    • Youtube Resources
    • Vulnerable Machines
    • Challenges
    • Parrot
    • Common Terms
    • Common Ports
    • SecLists
    • Shells
    • Enumeration Scripts
    • Escalation
    • Downloading files from Target
    • Knowledge Check
Powered by GitBook
On this page
  • NMAP
  • Findings:
  1. Machines
  2. Easy Machines
  3. Jerry (Windows)

Recon

PreviousJerry (Windows)NextEnumeration

Last updated 2 years ago

NMAP

  • Start with nmap scan:

nmap [Target IP]
  • Pings are being blocked so I will need to run nmap with the -Pn flag.

nmap -Pn [Target IP]
  • I checked all ports to see what was open but got nothing except port 8080.

  • Next is to run a version and script scan of the system.

nmap -Pn -A -p 8080 [Target IP]

Findings:

  • Port 8080 is running Apache-Coyote/1.1 or Apache Tomcat which is a web server.

  • The version is Apache Tomcat/Coyote JSP engine 1.1

  • No other services are available.