Skip to content
View sysbitnet's full-sized avatar

Block or report sysbitnet

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. CSF Firewall testing script Testing ... CSF Firewall testing script Testing ip_tables/iptable_filter...open3: exec of /sbin/iptables -I OUTPUT -p tcp --dport 9999 -j ACCEPT failed: No such file or directory at /usr/local/csf/bin/csftest.pl line 144
    1
    #!/usr/bin/perl
    2
    ########################################################################################
    3
    # Just fix the code in this file to checking CSF service edit and update from sysbitnet
    4
    ########################################################################################
    5
    # Copyright 2006-2018, Way to the Web Limited
  2. Get Public IP # Create a simple scri... Get Public IP # Create a simple script to fetch your public IP address using the dig command. If you're using a Unix-like system (Linux or macOS), you can create a bash script.
    1
    #!/bin/bash
    2
    
                  
    3
    # Fetch public IP address using dig and OpenDNS resolver
    4
    ip_address=$(dig +short myip.opendns.com @resolver1.opendns.com)
    5