Mzack9999

Results 226 comments of Mzack9999
trafficstars

The issue is being worked on and currently on hold as it needs further discussion: - [x] Cleanup code and create draft PR - [x] Identify specific blockers/requirements - [...

Note: it's expected that HTTP requests/responses aren't shown as browser navigation might imply multiple asynchronous network activities to complete an action (e.g. asynchronous javascript libraries loading, ajax requests, etc.).

After discussing with @forgedhallpass : - [ ] Debug messages should have placeholders (`{{placeholder}}`) replaced with their final values - [ ] It might not be possible to relate an...

@mjkim610 DSL functions usually have `interface{}` return type, so it's possible to return the slice of strings directly. The correct type will be inferred later via reflection. The only problem...

On Hold - Slice behavior needs further discussion (ref https://github.com/projectdiscovery/nuclei/issues/2305#issuecomment-1207747532)

Potential follow up ticket: - General matcher on errors (timeout, connection error, etc)

> @Mzack9999 why `id='tech-detect'` with a single `=`, and the rest is with `==`? Fixed

@brenocss Unfortunately, the IP information is available only after performing at least one connection to the target. A temporary workaround could be a template like the following one: ```yaml id:...

Unfortunately, knowing the actual server's IP is impossible before performing at least one connection to the DNS hostname. @ehsandeep What do you think about adding a DNS function to resolve...

@brenocss, the pre-processing phase only lexicographically (fqdn)/range (ip + cidr) deduplicates input items. The DNS resolution, if a domain name is provided, happens within fastdialer at connection time. On Hold...