]> ##&name; ###2019.12.30 - update status icons to fa fonts - update nmap and libnl ###2019.10.20 - update nmap to 7.70 for Unraid 6.7+ ###2019.01.25 - remove all icons and convert to fa fonts ###2019.01.24 - update settings icon to fa font ###2018.02.11 - disable ajax cache ###2017.10.03 - fix stickyheaders and css for new themes - move cdnjs to local ###2017.07.23 - move to separate WOL repository - restructure, streamline and remove depreciated code - add individual cell editing - use ping instead of nmap for status check. - update namp to 7.50 ###2017.04.09 - fix empty ip address resulting in failed scan ###2017.01.29a - harden code for XSS and CSRF vulnerabilities - update nmap to 7.40 - fix: blank scan.xml causing errors - misc code improvements - add: dynamix plugin update api ###2016.10.24 - fix: ip address variable - fix: scan not working ###2016.10.22 - update ip address variable - update code formatting ###2016.09.16 - update tablesorter to 2.27.6 ###2016.01.16 - minor diplay changes - add tablesorter as a separate package ###2016.01.09a - saved mac address cannot be blank - minor code changes ###2016.01.09 - move repo to unRaid-plugins - add tablesorter fork for better sorting and sort save - add separate tab for scanning - completely update layout and revise code ###2015.11.21 - minor fixes ###2015.03.05a - fix default ethernet interface ###2015.02.24 - button bindings when editing ###2015.02.21 - added autosave - added table sorting - disable scan function caching - loading gifs - show scan results only after scan - scan ip after wake ###2015.02.20 - initial unRAID 6 release. &pkgURL;/etherwake-1.09-x86_64-5cf.txz 0b65b7b7ac2262f1a9b998cbb9f913e2 &pkgURL;/libnl-1.1.4-x86_64-2.txz d84d8545760ed7d71bce77b7ef5a86aa &pkgURL;/nmap-7.80-x86_64-3.txz ba87afc200890097c7fc95345370725c &pkgURL;/nmap-7.50-x86_64-1.txz baf79e52dc2bb6267edd2cda89e62539 &pkgURL;/nmap-7.40-x86_64-1.txz d48d79e1e57aaeb7aee322c78ad9b9a6 &pkgURL;/nmap-6.40-x86_64-1.txz 462cf835c4475ddfd2bd15cd10e8349d &gitURL;/archive/&plgNAME;.txz &gitURL;/archive/&plgNAME;.md5 #Verify Unraid Version source /etc/unraid-version if [[ ${version:0:3} == 6.0 ]]; then echo "Unraid version 6.1 or higher is required" exit 1 fi # Verify and install plugin package sum1=$(/usr/bin/md5sum &plgPATH;/&plgNAME;.txz) sum2=$(/usr/bin/cat &plgPATH;/&plgNAME;.md5) if [ "${sum1:0:32}" != "${sum2:0:32}" ]; then echo "Wrong 'plugin' package md5 hash." rm &plgPATH;/&plgNAME;.txz rm &plgPATH;/&plgNAME;.md5 exit 1 else upgradepkg --install-new &plgPATH;/&plgNAME;.txz fi # Cleaning old source files find &plgPATH;/ -type f -iname "&name;*.txz" ! -iname "*&version;*" -delete find &plgPATH;/ -type f -iname "&name;*.md5" ! -iname "*&version;*" -delete echo "" echo "-----------------------------------------------------------" echo " &name; has been installed." echo " Copyright 2016-2019, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo "" The 'remove' script. --> removepkg &plgPATH;/&plgNAME;.txz rm -rf &emhttp; rm -f &plgPATH;/*.txz \ &plgPATH;/*.md5 echo "" echo "-----------------------------------------------------------" echo " &name; has been removed." echo " Copyright 2016-2019, &author;" echo " Version: &version;" echo "-----------------------------------------------------------" echo ""