This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
netblocks=$(dig @8.8.8.8 txt _cloud-netblocks.googleusercontent.com +short | grep -Eo '_cloud\S+') | |
function get_netblock_ips { | |
response=$(dig @8.8.8.8 txt +short "$1") | |
for block in $(echo "$response" | grep -Eo 'include:\S+' | cut -d: -f2 ); do | |
get_netblock_ips "$block" | |
done | |
echo "$response" | grep -Eo 'ip[46]:\S+' | cut -d: -f2- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49373 com | |
5323 net | |
3819 org | |
3699 ru | |
2761 jp | |
2714 cn | |
1697 de | |
1581 br | |
1474 in | |
1056 fr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# dependencies: jq, curl, bash | |
# Usage: ./whois.sh example.com | |
# Caches lookups in /var/cache/whois | |
# Sign up for api key here: https://jsonwhois.io/register | |
domain="$1" | |
cache_dir='/var/cache/whois' | |
cache_entry="$cache_dir/$domain" | |
json_whois_api_key="YOUR_API_KEY" | |
[[ ! -d "$cache_dir" ]] && mkdir -p "/var/cache/whois" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
function socket_count(){ | |
if [[ "$OSTYPE" == "darwin"* ]]; then | |
sysctl net.inet.tcp.tw_pcbcount | awk '{ print $2 }' | |
else | |
netstat -n | grep -i 80| grep -i time_wait | wc -l | |
fi | |
} | |
printf "Starting slurp..." && (slurp keyword -t example,example1,example2 &>/dev/null &) | |
sockets="$()" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: Georgia,Cambria,"Times New Roman",Times,serif; | |
line-height: 1.75em; | |
font-size: 16px; | |
background-color: #212324; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.htaccess | |
example.htaccess | |
_.htaccess | |
sample.htaccess | |
a.htaccess | |
.git/config | |
.cig | |
.git | |
htaccess_for_page_not_found_redirects.htaccess | |
debug |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UpdateCTestConfiguration from :/home/bistro/bistro/cmake/Debug/DartConfiguration.tcl | |
UpdateCTestConfiguration from :/home/bistro/bistro/cmake/Debug/DartConfiguration.tcl | |
Test project /home/bistro/bistro/cmake/Debug | |
Constructing a list of tests | |
Done constructing a list of tests | |
Checking test dependency graph... | |
Checking test dependency graph end | |
test 1 | |
Start 1: test_sqlite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you under the Apache License, Version 2.0 (the | |
# "License"); you may not use this file except in compliance | |
# with the License. You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |