AG

Results 290 comments of AG

Is this occurring on the same system or two different systems? Just a guess, you may have a user or global configuration file on one system that is specifying the...

I put a note in #227 about this in case it's helpful

I would try specifying your VPN interface, along the lines of `--adapter tun0` and/or your gateway MAC address using `--router-mac aa:bb:cc:dd:ee:ff` Use `route -n` and `arp -n` to get these...

There will not be a value for `--adapter-mac` as it is not a physical device and thus has no MAC address. However, it may help to use: ``` --adapter utun0...

> Self-testing is currently falling. > > > > ``` > > ./masscan --selftest > > ====================================================================== > > Segmentation fault: please post this backtrace to: > > https://github.com/robertdavidgraham/masscan/issues >...

> add an -oA option to save in all formats like nmap. I agree this could be a nice convenience for some but the best way to accomplish itin my...

I think this can be resolved. This can be done very easily in the way I described, and it's efficient as it preserves space while still being lossless

You should be able to do this already, via $http_proxy / $https_proxy environment variables

For socks, make sure you either: $ pip install pysocks Or: $ pip install requests[socks] $ export http_proxy=socks5h://socks.proxy.com:1234 $ export https_proxy=$http_proxy For HTTP proxy: $ export http_proxy=http://http.proxy.com:1234 $ export https_proxy=$http_proxy