diff options
Diffstat (limited to 'root')
-rw-r--r-- | root/.bash_aliases | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/root/.bash_aliases b/root/.bash_aliases index a9438ea..30e9f7d 100644 --- a/root/.bash_aliases +++ b/root/.bash_aliases @@ -1,6 +1,7 @@ export CT_ALLOW_BUILD_AS_ROOT_SURE=1 function register () { - curl https://www.register.si/wp-admin/admin-ajax.php -X POST --data-raw "_ajax_nonce=693acd4cff&action=get_whois_data&domain=$1" 2> /dev/null | grep "<td>" | sed "s/^\s*//g" | cut -d\< -f2 | cut -d\> -f2 | grep "[[:print:]]" + n=`curl https://www.register.si | grep nonce | head -n 1 | cut -d\" -f8` + curl https://www.register.si/wp-admin/admin-ajax.php -X POST --data-raw "_ajax_nonce=$n&action=get_whois_data&domain=$1" 2> /dev/null | grep "<td>" | sed "s/^\s*//g" | cut -d\< -f2 | cut -d\> -f2 | grep "[[:print:]]" } alias r=R alias R="R --quiet" |