Hi, I wanted to generate an iso of slitaz rolling with tazlito, and apart from a small patch to complete the process, everything seemed to work perfectly.
The problem arose when I attempted to upload to yandex for sharing. The virus file infected.... is detected
virustotal shows this
https://www.virustotal.com/gui/file/ff7005bcb70876d0f9bebc311008811cdb841e2a99c3b70d39f4bd81a702ff50?nocache=1
the original file doesn't give any problem... what is the cause, excluding trojan on linux, since all operations are always live?
Nb: without the patch tazlito goes in error and does not generate the iso!
The patch:
--- tazlito-orig 2022-02-21 10:35:58.652296623 +0100
+++ tazlito 2022-02-21 10:20:18.827306937 +0100
@@ -633,7 +633,7 @@
create_iso() {
cd $2
deduplicate
- sed -i "s|20[1-9][0-9]|$(date +%Y)|" $2/README $2/index.html
+[ $(ls $2/boot/grub* 2> /dev/null | wc -l) -lt 2 ] && rm -rf $2/boot/grub*
make_bzImage_hardlink $2/boot
@@ -3120,6 +3120,7 @@
copy_from_cd() {
cp /media/cdrom/boot/bzImage* $ROOTCD/boot
cp -a /media/cdrom/boot/isolinux $ROOTCD/boot
+ cp -a /media/cdrom/boot/vmlinuz* $ROOTCD/boot
unmeta_boot $ROOTCD
umount /media/cdrom
}
Salve, volevo generare una iso di slitaz rolling con tazlito, e a parte una piccola patch per completare il processo, tutto sembrava funzionare perfettamente.
Il problema è sorto quando ho tentato l'upload su yandex per la condivisione. Viene rilevato file virus infected....
su virustotal compare questo
https://www.virustotal.com/gui/file/ff7005bcb70876d0f9bebc311008811cdb841e2a99c3b70d39f4bd81a702ff50?nocache=1
il file originale non da problemi... da cosa nasce, escludendo trojan su linux, visto che tutte le operazioni sono sempre in live?
Nb: senza la patch tazlito va in errore e non genera la iso!
La patch: