Categories
islba-company

a new week

I can’t care less if this was ever a friday afternoon problem. Let’s go!

And the Week starts with something like this …...

Client Call … have I been hacked or is just my hardeware dying
Log File Check
Call Hardware Folks
Call Legal

oh boy a week can’t start better ….

Categories
islba-company

a new week

I can’t care less if this was ever a friday afternoon problem. Let’s go!

And the Week starts with something like this …...

  • 2FA for VPN clients
  • what kind of VPN do you really want
  • video conferencing tools
  • and meetings lots of online meetings
  • and again thinkin about mailed in log reports of VPN usage per user
Categories
islba-company

a new week

Now, is this a Friday afternoon problem or a Monday morning problem? Who Cares! I need to assess and evaluate issues in a similar manner every day.
Not just Friday afternoon or Monday morning.
Let’s Go!

And the Week starts with something like this …...

  • *) Logfiles
  • *) Logfiles
  • *) Lofgiles
  • and guess what …. Logfiles
# cat audit.log | grep "911-islba.com" | awk 'match($0, /[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+/) {i[substr($0,RSTART,RLENGTH)]=1}END{for(ip in i){printf("%s\n", ip)}}'

Don’t get me wrong, fancy dashboards are cool, but someone gonna do the work a script can’t do.
yet. !

Categories
islba-company

islba-inside code snippets

The Yard

Disclaimer:
[use this code at your own risk and only if you know what you are doing. no liability from us for the consequences. so leave us alone if things go sideways ]

function  wpb_remove_commentsip( $comment_author_ip ) {
	return '';
	}
add_filter( 'pre_comment_user_ip', 'wpb_remove_commentsip' );

The Barn

Disclaimer:
[use this code at your own risk and only if you know what you are doing. no liability from us for the consequences. so leave us alone if things go sideways]


function disable_emojis_remove_dns_prefetch( $urls, $relation_type ) {
 if ( 'dns-prefetch' == $relation_type ) {
 $emoji_svg_url = apply_filters( 'emoji_svg_url', 'https://s.w.org/images/core/emoji/2/svg/' );

$urls = array_diff( $urls, array( $emoji_svg_url ) );
 }

return $urls;
}