diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ae72a39..76f84faa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 20190502 +- **Fix KVPs** + - Some KVPs for Cowrie changed and the tagcloud was not showing any values in the Cowrie dashboard. + - New installations are not affected, however existing installations need to import the objects from /opt/tpot/etc/objects/kibana-objects.json.zip. +- **Makeiso** + - Move to Xorriso for building the ISO image. + - This allows to support most of the Debian based distros, i.e. Debian, MxLinux and Ubuntu. + +## 20190428 +- **Rebuild ISO** + - The install ISO needed a rebuilt after some changes in the Debian mirrors. +- **Disable Netselect** + - After some reports in the issues that some Debian mirrors were not fully synced and thus some packages were unavailable the netselect-apt feature was disabled. + ## 20190406 - **Fix for SSH** - In some situations the SSH Port was not written to a new line (thanks to @dpisano for reporting). diff --git a/makeiso.sh b/makeiso.sh index 95638d05..165aa851 100755 --- a/makeiso.sh +++ b/makeiso.sh @@ -13,7 +13,7 @@ myMINIISO="mini.iso" myTPOTISO="tpot.iso" myTPOTDIR="tpotiso" myTPOTSEED="iso/preseed/tpot.seed" -myPACKAGES="dialog genisoimage syslinux syslinux-utils pv udisks2" +myPACKAGES="dialog genisoimage syslinux syslinux-utils pv udisks2 xorriso" myPFXFILE="iso/installer/keys/8021x.pfx" myINSTALLERPATH="iso/installer/install.sh" myNTPCONFFILE="iso/installer/ntp.conf" @@ -244,7 +244,7 @@ cd .. # Let's create the new .iso cd $myTPOTDIR -mkisofs -gui -D -r -V "T-Pot" -cache-inodes -J -l -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../$myTPOTISO ../$myTPOTDIR 2>&1 | awk '{print $1+0} fflush()' | cut -f1 -d"." | dialog --backtitle "$myBACKTITLE" --title "[ Building T-Pot .iso ... ]" --gauge "" 5 70 0 +xorrisofs -gui -D -r -V "T-Pot" -cache-inodes -J -l -b isolinux.bin -c boot.cat -no-emul-boot -boot-load-size 4 -boot-info-table -o ../$myTPOTISO ../$myTPOTDIR 2>&1 | awk '{print $1+0} fflush()' | cut -f1 -d"." | dialog --backtitle "$myBACKTITLE" --title "[ Building T-Pot .iso ... ]" --gauge "" 5 70 0 echo 100 | dialog --backtitle "$myBACKTITLE" --title "[ Building T-Pot .iso ... Done! ]" --gauge "" 5 70 cd .. isohybrid $myTPOTISO