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
/* WordPress Cache */ | |
define( 'WP_CACHE', true ); | |
/* Compression */ | |
define( 'COMPRESS_CSS', true ); | |
define( 'COMPRESS_SCRIPTS', true ); | |
define( 'CONCATENATE_SCRIPTS', true ); | |
define( 'ENFORCE_GZIP', true ); | |
/* Memory limit */ |
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 | |
# copy the autologin cookie from your browser | |
# run /ue.sh list.txt | |
while IFS='' read -r line || [[ -n "$line" ]]; do | |
curl -o /dev/null --silent 'https://www.unoeuro.com/controlpanel/backorder.php' -H 'Cookie: language=1; autologin=XXXXXX;' --data 'domain='$line'&extension=dk' | |
done < "$1" |
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
function dmarc | |
dig TXT +short _dmarc.$argv | |
end |
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
QUESTION IN TYPE ANSWER Virksomhed | |
_dmarc.dba.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]\; ruf=mailto:[email protected]\;" eBay | |
_dmarc.jobindex.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]" Jobinex | |
_dmarc.bilbasen.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]\; ruf=mailto:[email protected]\;" eBay | |
_dmarc.newsbreak.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]\; ruf=mailto:[email protected]\; adkim=r\; aspf=r\; pct=100\; rf=afrf\; ri=86400\; sp=none" Uffe Dahl | |
_dmarc.amino.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]" AMINO ApS To ejere gŒr igen | |
_dmarc.min-mave.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]" MIN MAVE ApS sikkert samme IT | |
_dmarc.stepstone.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]" Jobinex | |
_dmarc.it-jobbank.dk. IN TXT "v=DMARC1\; p=none\; rua=mailto:[email protected]" Jobinex |
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
// Cost price | |
add_action('woocommerce_product_options_pricing', 'cost_price'); | |
function cost_price() { | |
woocommerce_wp_text_input( | |
array( | |
'id' => '_cost_price', | |
'class' => 'wc_input_price short', | |
'label' => __('Cost price', 'woocommerce').' ('.get_woocommerce_currency_symbol().')', | |
'type' => 'text', | |
) |
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
_______________________________________________________________ | |
__ _______ _____ | |
\ \ / / __ \ / ____| | |
\ \ /\ / /| |__) | (___ ___ __ _ _ __ | |
\ \/ \/ / | ___/ \___ \ / __|/ _` | '_ \ | |
\ /\ / | | ____) | (__| (_| | | | | | |
\/ \/ |_| |_____/ \___|\__,_|_| |_| | |
WordPress Security Scanner by the WPScan Team | |
Version 2.7 |
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
aay.dk | |
aew.dk | |
afe.dk | |
afq.dk | |
afw.dk | |
afx.dk | |
afy.dk | |
afz.dk | |
agq.dk | |
agz.dk |
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
aay.dk | |
aew.dk | |
afe.dk | |
afq.dk | |
afw.dk | |
afx.dk | |
afy.dk | |
afz.dk | |
agq.dk | |
agz.dk |
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
test | |
yolo |
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
# IP addresses | |
alias ip="dig +short myip.opendns.com @resolver1.opendns.com" | |
alias localip="ipconfig getifaddr en0" | |
alias ips="ifconfig -a | grep -o 'inet6\? \(\([0-9]\+\.[0-9]\+\.[0-9]\+\.[0-9]\+\)\|[a-fA-F0-9:]\+\)' | sed -e 's/inet6* //'" |