Kent Gruber

Results 63 comments of Kent Gruber

FWIW, we were experiencing the same problem for the [`hashicorp/boundary`](https://github.com/hashicorp/boundary) repository. Boundary is [using 1.22](https://github.com/hashicorp/boundary/blob/11540f0bddfa9ed7905a4d6d780d995f3b508b59/.go-version#L1), but our analysis (using the SSA package) was built with 1.21 and was panicing the...

@bararchy That's a pretty solid idea I've been thinking of implementing in [packetz](https://github.com/picatz/packetz) for a long time now by porting some of the code done in [PacketGen](https://github.com/sdaubert/packetgen/blob/master/lib/packetgen/pcapng/file.rb). Maybe @maiha could...

## Domainr Some more BASH to check `Domainr` which was some weirder logic: ``` curl https://domainr.com/facebook.com -s | grep "registrar=" -q ```

## Ultratools More BASH to check `Ultratools` which has some weirder logic too: ``` curl https://www.ultratools.com/tools/ipWhoisLookupResult -s -X POST -d 'ipAddress=facebook.com' | grep "Registration" -q ```

## Whois-Search Even more BASH? If you insist. ``` curl -s https://www.whois-search.com/whois/facebook.com | grep -w "Registrar" -q ``` > The `-w` option for `grep` ensures a more exact match. 🏓

## Verisign Need more weird BASH? Perfect. ``` curl -s "https://registrar.verisign-grs.com/webwhois-ui/rest/whois?q=facebook.com&tld=com&type=domain" | grep -w "Registrar" -q ``` But, it's heavily rate limited... ``` {"eppStatusDescEnabledTld":"false","message":"Error","responseType":"captchaNeeded"} ```

## Nominet Can check domain suffixes for `.uk`, `.co.uk`, `.org.uk`, and `.me.uk` and I think even `.cymru` and `.wales` --- ok then. ``` curl -s "https://www.nominet.uk/whois/?query=facebook.uk#whois-results" | grep -w "Registrar:"...

## EasyWhois Yo 'dawg, I heard you like that curl? ``` curl "https://www.easywhois.com/" -X POST -d "mode=whois" -d "domain=facebook.com" | grep -w "Registrar" ```

👋 Also looking for some additional context behind the ownership transfer.

I appreciate the additional context @sdaubert! Thank you for all the time and effort you put into those projects. You did an absolutely wonderful job, and I personally learned a...