Posts by simon:
Donation
I believe in helping the community with community projects, and this is why i created this post!
Below are all my different links to different donation methods available for people to help support me!
You can also leave me a comment or contact me, and I can provide my postal address to have items physically donated to myself if you wish!
Github: https://github.com/sponsors/si458
Amazon Wish List: https://www.amazon.co.uk/hz/wishlist/ls/68IO2WT4AC7L?ref_=wl_share
Paypal: https://www.paypal.com/donate/?hosted_button_id=K8QDU2U3Q5PJY
Buymeacoffee: https://www.buymeacoffee.com/si458
Ethereum: 0xBFb6e23390622B375952c9bA8170C18f15fB788E
Polygon: 0xBFb6e23390622B375952c9bA8170C18f15fB788E
Bitcoin: bc1qs47z9t9lzjc2pkc0g52f8lr770kpzuthrlyn3f
Install fping on Ubuntu 20.04
sudo apt-get install autoconf build-essential git clone https://github.com/schweikert/fping cd fping ./autogen.sh ./configure make sudo make install sudo setcap cap_net_raw+ep /usr/local/sbin/fping
Global Outbound Route For Multi-Tenant FusionPBX
Create an outbound route as you normally would (on any of the domains) After it has been saved, go into the newly created outbound route Change the Domain from your selected domain to Global Change the Context from your selected domain to ${domain_name} Save the changes Go into Status -> SIP Status and click Flush […]
Installing WMIC on Ubuntu 16.04
Step 1 – Install building applications sudo apt-get install autoconf make gcc libdatetime-perl build-essential g++ python-dev Step 2 – Download the ‘wmic’ source cd ~ wget http://www.opsview.com/sites/default/files/wmi-1.3.16.tar_.bz2 Step 3 – Untar the source tar -xvf wmi-1.3.16.tar_.bz2 Step 4 – Go into the directory cd wmi-1.3.16 Step 5 – Edit Samba/source/pidl/pidl and remove Line 583 nano […]
Change Ricoh Printer Protocol To Connect To Windows Server
Open command prompt / terminal telnet into the ricoh printer telnet (IP) telnet 10.0.0.36 Login with the default admin username and password (admin – NO PASSWORD) RICOH Maintenance Shell. User access verification. login:admin Password: User access verification … OK. RICOH Aficio MP C3002 Network Control Service Ver. 11.103 Copyright (C) 1994-2015 Ricoh Co.,Ltd. All rights […]
Installing WMIC on Ubuntu 14.04
Step 1 – Install building applications sudo apt-get install autoconf make gcc Step 2 – Download the ‘wmic’ source cd ~/Downloads wget http://www.openvas.org/download/wmi/wmi-1.3.14.tar.bz2 Step 3 – Untar the source tar -xvf wmi-1.3.14.tar.bz2 Step 4 – Go into the directory cd wmi-1.3.14 Step 5 – Compile and grab a butty as will take a few minutes […]
Setting up AutoSSH for Reverse SSH Forwarding
Autossh is a brilliant little application I discovered and it has helped me access servers that are behind NAT firewalls Basically, Server A connects to a Server B in the cloud using SSH public keys, and asks Server B to forwards a port to the local SSH port on Server A SETUP SSH KEYS TO […]
How to Mount and Browse a LVM qcow2 Image
This guide will show you how to mount a qcow2 image and also browse the qcow2 image if it is an LVM partition You need to add the nbd module to your machine modprobe nbd max_part=63 You then need to mount the qcow2 image to the NDB device driver qemu-nbd -c /dev/nbd0 /path/to/image.qcow2 You can […]
Setup ClamAV on CentOS 6 and Perform Daily Scans
Hi All, This post is about Setting up ClamAV on CentOS 6 and Performing Daily Scans of the Machine and being Alerted by email if anything is found Setup a CentOS 6 Machine, look for a guide yourselves, sorry 🙁 Add the EPEL to the Machine i386 rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm x86_64 rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm Next […]