Tarun Koyalwar

Results 42 comments of Tarun Koyalwar

## Before fix > All leaked goroutines ( i.e goroutines that were running after nuclei sdk .Close() ) , this was identified by goleak library ```console === NAME TestThreadSafeNuclei sdk_test.go:96:...

## After fix ```console $ === NAME TestThreadSafeNuclei sdk_test.go:96: [*] found unexpected goroutines: [-] Dependency Graph: └── 92 () ├── 96 (created by github.com/syndtr/goleveldb/leveldb.openDB in goroutine 92) ├── 195 (created...

- Looks like this is also happening in main / latest ```console $ nuclei -u http://honey.scanme.sh -t a.yaml -v -interactions-cooldown-period 20 __ _ ____ __ _______/ /__ (_) / __...

this feels like common usecase( interactsh + payloads ) ex: https://github.com/projectdiscovery/nuclei/issues/5020 looking at gcache , default cache size is 5000 items , and eviction is set to 60 sec. and...

- temp fix is to limit threads value based on threshold https://github.com/projectdiscovery/nuclei/pull/4992

i am not able to reproduce this , ```console ./nuclei -t x.yaml -validate -debug 1 ↵ __ _ ____ __ _______/ /__ (_) / __ \/ / / / ___/...

due to recent observations with Marshal/Unmarshal Overhead of storing data in hmap we can also add support for batch / chunked loading of targets (ex: 10k chunk size) thereby eliminating...

## Nmap Result ```console 3306/tcp open mysql | mysql-info: | Protocol: 10 | Version: 8.3.0 | Thread ID: 1632 | Capabilities flags: 65535 | Some Capabilities: InteractiveClient, SwitchToSSLAfterHandshake, LongColumnFlag, IgnoreSpaceBeforeParenthesis,...

- while we are at it we should add a function to fingerprint given database ( basically replacement for Fingerprint functions for mssql,mysql,postgres etc)

@mastercho , this is a known change, we are attempting to seperate `fuzzing` templates from `brute-force` to avoid confusion since we are ramping support for fuzzing https://github.com/projectdiscovery/nuclei/pull/4477 and fuzz templates...