edoardottt / scilla

Information Gathering tool - DNS / Subdomains / Ports / Directories enumeration
https://edoardoottavianelli.it
GNU General Public License v3.0
925 stars 113 forks source link

Add dnsrepo.noc.org as subdomain source #110

Closed edoardottt closed 11 months ago

edoardottt commented 12 months ago

https://github.com/edoardottt/scilla/issues/51#issuecomment-1759174142

iamshreeram commented 11 months ago

@edoardottt ,

Summary of the existing code -

  1. If the client key is provided in context, URL is built and the response is a json which is parsed
  2. If the auth key is nil, app calls the scrape function that extracts the data from webpage (table).

Quick question - Do we have to impl. the scrape function to get the data from the table? (Should be straightforward) or Should we implement the code to take up the client key?

edoardottt commented 11 months ago

It's up to you... If you want you can implement both (if auth is present use 1 otherwise 2) But just the scrape function is okay.

In the first case see how the virustotal auth is already implemented

iamshreeram commented 11 months ago

@edoardottt , I can pick this up. I'm using goquery to scrape the table data from html page

edoardottt commented 11 months ago

Completed, thanks @iamshreeram !