Assets
Assets
Section titled “Assets”Assets represent the systems, applications, and infrastructure that are targets of your security assessments. NEURO provides comprehensive asset management to track what you’re testing and link findings to specific systems.
Overview
Section titled “Overview”An asset in NEURO can be:
- IP addresses and ranges
- Hostnames and domains
- Web applications
- Mobile applications
- Network devices
- Cloud resources
- APIs and services
Asset Properties
Section titled “Asset Properties”Each asset includes:
| Property | Description |
|---|---|
| Name | Descriptive identifier |
| Type | Category of asset |
| IP Address | Network address |
| Hostname | DNS name |
| Ports | Open ports/services |
| OS | Operating system |
| Status | Testing status |
| Notes | Additional information |
Asset Types
Section titled “Asset Types”| Type | Examples |
|---|---|
| Server | Web servers, database servers |
| Workstation | Employee computers |
| Network Device | Routers, switches, firewalls |
| Web Application | Websites, web apps |
| Mobile Application | iOS/Android apps |
| API | REST/SOAP endpoints |
| Cloud Resource | AWS, Azure, GCP resources |
| IoT Device | Smart devices, embedded systems |
| Other | Custom categories |
Viewing Assets
Section titled “Viewing Assets”Project Assets
Section titled “Project Assets”- Open a project
- Navigate to Assets tab
- View all assets for that project
Asset List Features
Section titled “Asset List Features”- Search by name, IP, hostname
- Filter by type, status
- Sort by any column
- Bulk selection
Adding Assets
Section titled “Adding Assets”Manual Entry
Section titled “Manual Entry”- Go to project Assets tab
- Click + Add Asset
- Fill in asset details:
- Name (required)
- Type
- IP Address
- Hostname
- Ports
- Operating System
- Notes
- Click Save Asset
Nmap Import (Recommended)
Section titled “Nmap Import (Recommended)”Import assets discovered by Nmap:
- Click Import from Nmap
- Upload your Nmap XML file
- Review discovered hosts:
- IP addresses
- Hostnames
- Open ports
- Services
- OS detection
- Select assets to import
- Click Import Selected
Nessus Import
Section titled “Nessus Import”Import assets from Nessus scans:
- Click Import from Nessus
- Upload Nessus export file (.nessus)
- Review discovered assets
- Import selected assets
CSV Import
Section titled “CSV Import”Bulk import via CSV:
- Click Import → CSV
- Download the template
- Fill in your asset data
- Upload the completed CSV
- Map columns to fields
- Import assets
CSV Template columns:
name,type,ip_address,hostname,ports,os,notesWeb Server,Server,192.168.1.10,web.example.com,"80,443",Ubuntu 22.04,Primary web serverEditing Assets
Section titled “Editing Assets”- Click on an asset row
- Click Edit or double-click
- Modify fields
- Click Save Changes
Quick Edit
Section titled “Quick Edit”For rapid updates:
- Double-click a cell
- Edit the value inline
- Press Enter to save
Asset Status
Section titled “Asset Status”Track testing progress:
| Status | Description |
|---|---|
| Not Tested | Initial state |
| In Progress | Currently testing |
| Tested | Assessment complete |
| Out of Scope | Excluded from testing |
Update status:
- Select asset(s)
- Click Status dropdown
- Choose new status
Linking Findings to Assets
Section titled “Linking Findings to Assets”Associate vulnerabilities with affected systems:
From Finding
Section titled “From Finding”- Open or create a finding
- Go to Affected Assets section
- Search and select assets
- Save the finding
From Asset
Section titled “From Asset”- Open asset details
- View Related Findings
- Click + Link Finding
- Select finding(s)
Asset Details View
Section titled “Asset Details View”Click an asset to see full details:
Overview
Section titled “Overview”- All asset properties
- Quick stats
- Last modified
Findings
Section titled “Findings”- Vulnerabilities affecting this asset
- Severity breakdown
- Finding status
Ports & Services
Section titled “Ports & Services”- Detailed port information
- Service versions
- Protocol details
History
Section titled “History”- All changes to the asset
- Import history
- Status changes
Bulk Operations
Section titled “Bulk Operations”Perform actions on multiple assets:
- Select assets using checkboxes
- Click Bulk Actions
- Choose action:
- Update status
- Update type
- Add tags
- Delete
- Export
Asset Tags
Section titled “Asset Tags”Organize assets with tags:
- Select asset(s)
- Click Tags
- Add or remove tags
Common tags:
- Environment (Production, Staging, Dev)
- Network segment (DMZ, Internal, External)
- Priority (Critical, Standard)
- Owner (Team, Department)
Exporting Assets
Section titled “Exporting Assets”Export to CSV
Section titled “Export to CSV”- Go to Assets tab
- Apply filters if needed
- Click Export → CSV
Include in Report
Section titled “Include in Report”Assets are automatically included in reports:
- Asset inventory section
- Findings by asset
- Asset statistics
Asset Discovery Tips
Section titled “Asset Discovery Tips”Nmap Scanning
Section titled “Nmap Scanning”# Basic discoverynmap -sn 192.168.1.0/24 -oX hosts.xml
# Full scan with servicesnmap -sV -sC -O -p- 192.168.1.0/24 -oX full_scan.xml
# Web-focusednmap -sV -p 80,443,8080,8443 192.168.1.0/24 -oX web.xmlImport Best Practices
Section titled “Import Best Practices”- Import assets at project start
- Update after each scan phase
- Verify hostname resolution
- Document out-of-scope systems
Deleting Assets
Section titled “Deleting Assets”- Select asset(s)
- Click Delete
- Confirm deletion
Next: Learn about Report Generation