惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
博客园 - 叶小钗
A
About on SuperTechFans
Last Week in AI
Last Week in AI
量子位
博客园 - 三生石上(FineUI控件)
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MongoDB | Blog
MongoDB | Blog
T
The Blog of Author Tim Ferriss
Vercel News
Vercel News
博客园 - 司徒正美
博客园 - Franky
博客园 - 【当耐特】
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
J
Java Code Geeks

Mapping the <mark>Internet</mark> on Netlas: Comprehensive Internet-Wide Scanning & OSINT Platform

Plug & Pwn: Mapping the Windows PnP Auto-Install Attack Surface - Netlas Blog Desktop AI Supercomputers and Automated Cyberattacks - Netlas Blog Weaponized RMM: Hunting the Adversary Abuse of Remote Monitoring Tools Device Code Phishing: Technical Analysis and Proactive Hunting via Netlas Discovering Data Exposure with Netlas Telegram Bot API Abuse - Netlas Blog How we hunt C2 infrastructure at RST Cloud using Netlas - Netlas Blog Using Uncover with Netlas.io module - Netlas Blog Netlas Updates Terms and API & Data License Agreement - Netlas Blog Top 10 Hacking Devices for Ethical Hackers in 2026 - Netlas Blog Inside ClickFix: How Fake Prompts Took Over the Web Top 10 Critical Threat Actors to Watch in 2026: Ransomware, APTs & Defensive Strategies - Netlas Blog Bug Bounty 101 - A Complete Bug Bounty Roadmap for Beginners (2026) - Netlas Blog Supply Chain Attack - How Attackers Weaponize Software Supply Chains - Netlas Blog The Evolution of C2: Centralized to On-Chain - Netlas Blog From Starlink to Star Wars - The Real Cyber Threats in Space - Netlas Blog LLM Vulnerabilities: Why AI Models Are the Next Big Attack Surface - Netlas Blog When AI Turns Criminal: Deepfakes, Voice-Cloning & LLM Malware - Netlas Blog Zero-Click Exploits - Netlas Blog When Patches Fail: An Analysis of Patch Bypass and Incomplete Security - Netlas Blog I Analysed Over 3 Million Exposed Databases Using Netlas - Netlas Blog Post-Quantum Now: From AES & RSA to ML-KEM Hybrids - Netlas Blog Bug Bounty 101: Top 10 Reconnaissance Tools - Netlas Blog Mapping Dark Web Infrastructure - Netlas Blog Top Vibe-Coding Security Risks - Netlas Blog From Chaos to Control: Kanvas Incident Management Tool - Netlas Blog Bug Bounty 101: The Best Courses to Get Started in 2025 - Netlas Blog I, Robot + NIST AI RMF = Complete Guide on Preventing Robot Rebellion - Netlas Blog The $1.5B Bybit Hack & How OSINT Led to Its Attribution - Netlas Blog Hannibal Stealer: A Deep Technical Analysis - Netlas Blog
Using OWASP Amass with Netlas Module - Netlas Blog
Vyacheslav Makhrov · 2026-04-03 · via Mapping the <mark>Internet</mark> on Netlas: Comprehensive Internet-Wide Scanning & OSINT Platform

OWASP Amass is a powerful utility for reconnaissance and building an attack surface, which is used by many penetration testers and bug bounty hunters. It allows you to brute-force domains, conduct open-source exploration, visualize search results in a graph, and much more.

Netlas has been integrated into Amass for a long time as one of the additional sources for subdomain search, and in this article, I will briefly describe how to install and configure OWASP Amass to use Netlas search results.

Installing

There are many ways to install Amass: download a pre-built package, use Docker or Homebrew, and others. They are described in detail in the OWASP Amass documentation, the repository, and on the official project page. Below are the most common options.

Installing With Pre-Built Package

  1. The first step in the installation is to download the package itself. Go to the OWASP Amass repository and open the latest release. Find the version that suits you and download the appropriate archive.

  2. Next, you need to unpack the downloaded archive into the folder where you want to launch Amass.

  3. Update PATH to be able to run the utility with the amass command.

  4. After that, run the utility. On the first run, Amass creates its configuration files in the default OS-specific configuration directory. We will return to it in the next section.

Installing From Source

You can also install Amass from source using the command:

go install -v github.com/owasp-amass/amass/v5/...@latest

Installing With Homebrew

For macOS users, the utility can be installed via Homebrew:

brew tap owasp-amass/amass
brew install amass

These and other methods are described in more detail in the documentation.

Configuration for Using Netlas Module

Once Amass has been installed, it must be configured to get results from the Netlas API. This requires several steps:

Make sure you have one of these folders:

  • For Debian-based: $HOME/.config/amass
  • For macOS: $HOME/Library/Application Support/amass
  • For Windows: %AppData%\amass\

To use Netlas searches, you need to add your Netlas API key to datasources.yaml. In the existing datasources: list, enter your key and then uncomment the corresponding Netlas block.

- name: Netlas    
  creds:
    account:
      apikey: null # <-- Replace null with your key

This completes the setup of the configuration file. You can also activate other tools in it if you have the necessary accounts, set up allowed and prohibited sources, and so on, but this is beyond the scope of this article.

Usage

Netlas is currently integrated into Amass as a source for subdomain enumeration, so the main command we will use is amass enum.

To see how the integration works, start with a simple test against example.com and limit the enumeration to Netlas only:

amass enum -d example.com -include Netlas

This command asks Amass to enumerate subdomains for example.com using only Netlas data. This is the easiest way to confirm that your Netlas API key is configured correctly and to understand what this source can return on its own.

When the command is finished, you can check the results with:

amass subs -d example.com -names

If Netlas returned any subdomains, this command will print them to stdout.

After that, you can run the same enumeration without the -include filter:

amass enum -d example.com -o all-sources.txt

In this mode, Amass uses Netlas together with the other enabled sources from your configuration and writes the output to all-sources.txt.

What is your choise

I can show you how deep the Internet really goes

Discover exposed assets, infrastructure links, and threat surfaces across the global Internet.