a-urth
a-urth
Add checker consistent usage of types in function declarations ```golang func some(a int, b int, c int) { ... } ``` vs ```golang func some(a, b, c int) { ......
Tags?
I spent quite some time on Hugo themes and this one seems to fit to all my needs as nice clean and tight theme for blog about programming. But I...
Its very basic. What I did is moved code responsible for listing from index to default list, added partial for tags and put it in two places - in list...
After updating to 0.9.0 version to avoid the problem with server closed connection close operation I've noticed that following error always occurs after protocol close operation. Seems that protocol `run`...
There are couple of unsupported ws events, which we either need to remove or make them supported. `WS Error occurred. error: "Unsupported event: rejected"` happens on error during tx application...
Issue: In case container is started in docker which is not in localhost (ci environment with tests already running in container), mapped port is not enough to establish connection to...
First of all want to clarify either this is bug or not. When I try to search something with argument in parentheses ArgumentParser recognises it like argument to searchcmd itself....
Current logic defaults local port to remote one in case former is not given. Maybe it makes sense to use any opened port for local port on a server side...
### Naabu version: v2, using as library ### Current Behavior: Naabu upon call to `RunEnumeration` spawns bunch of workers to perform scanning in background and blocks until it finishes. Using...
Problem: since main scanning functions use goroutines there is no way to stop them externally if used as library. Solution: add new function which accept content as first parameters. In...