nnposter

Results 63 comments of nnposter

> First commit corrects the return type expectation for a call made to `Helper.GetDiscoveredInstances`. The actual return is a single value, while the original expected return by the caller was...

Thanks to @secmxx for this excellent write-up. All the issues covered by @johnjaylward's PR #2784 have been hopefully rectified in r38948 (a0d24d051855a1eed58d745e0b28239bf2ab1bd8), r38945 (3ab8fc27f83fdee46af7c1a9778eff2b42d2e8bf), and r38943 (f4b092259c49ec9d0e0c1ea3f85cec142c0395a6), albeit partially differently....

FWIW, this is caused by the SENT/RCVD timestamps to be acquired through `gettimeofday` calls that are separate from calls that are used for the stats. Broadly speaking, the former, "log"...

I am not aware of any without modifying the source code. On the other hand, it does not take much to add a crude output of your liking. ``` #...

```diff --- a/nping/NpingTarget.cc +++ b/nping/NpingTarget.cc @@ -994,6 +994,8 @@ avg_rtt = ((avg_rtt*(recv_total-1))+diff) / (recv_total); avg_rtt_set=true; + nping_print(VB_1, "Probe RTT for host %s: %.3fms", this->getNameAndIP(), diff/1000.0); + return OP_SUCCESS; } /*...

The usage section is meant to be a short and limited overview of the options, mostly captured as one-liners. There is simply no room to explain all the nuances. Limiting...

It is considered bad form to send the root certificate as part of the TLS Server Hello response, because such certificate needs to be already known and trusted by the...

Traditionally, `newtargets` is used to add IP addresses or hostnames for which there is some evidence of their existence, not a bulk inclusion of entire subnets. Since the Nmap host...

Please feel free to reopen the issue if you have a tangible use case.

The missing table iterator has been added in r38953.