diff --git a/public/arf.json b/public/arf.json index 2dfbb5e..ca79483 100644 --- a/public/arf.json +++ b/public/arf.json @@ -140,7 +140,132 @@ { "name": "Security", "type": "folder", - "children": [] + "children": [ + { + "name": "Software Security", + "type": "folder", + "children": [ + { + "name": "Forensics", + "type": "folder", + "children": [ + { + "name": "PTS Project", + "type": "url", + "url": "https://pts-project.org/" + } + ] + }, + { + "name": "Reverse Engineering", + "type": "folder", + "children": [ + { + "name": "Disassemblers", + "type": "folder", + "children": [ + { + "name": "Ghidra", + "type": "url", + "url": "https://github.com/NationalSecurityAgency/ghidra" + }, + { + "name": "Radare2", + "type": "url", + "url": "https://www.radare.org/n/" + }, + { + "name": "Cutter", + "type": "url", + "url": "https://cutter.re/" + } + ] + }, + { + "name": "Debuggers", + "type": "folder", + "children": [ + { + "name": "GDB", + "type": "url", + "url": "https://www.gnu.org/software/gdb/" + } + ] + } + ] + }, + { + "name": "Cryptography", + "type": "folder", + "children": [ + { + "name": "Post Quantum", + "type": "folder", + "children": [] + } + ] + }, + { + "name": "Steganography", + "type": "folder", + "children": [ + { + "name": "vec2text", + "type": "url", + "url": "https://github.com/vec2text/vec2text" + }, + { + "name": "Text Embeddings Reveal (Almost) As Much As Text [001]", + "type": "url", + "url": "https://openreview.net/pdf?id=wK7wUdiM5g0" + } + ] + } + ] + }, + { + "name": "Hardware Security", + "type": "folder", + "children": [ + { + "name": "NFC / RFID tags", + "type": "folder", + "children": [ + { + "name": "Proxmark3", + "type": "url", + "url": "https://proxmark.com/" + }, + { + "name": "ChameleonMini", + "type": "url", + "url": "https://github.com/emsec/ChameleonMini" + }, + { + "name": "Flipper Zero", + "type": "url", + "url": "https://flipperzero.one/" + }, + { + "name": "ACR122U", + "type": "url", + "url": "https://www.acs.com.hk/en/products/3/acr122u-usb-nfc-reader/" + }, + { + "name": "PN532", + "type": "url", + "url": "https://github.com/Seeed-Studio/PN532" + } + ] + } + ] + }, + { + "name": "Physical Security", + "type": "folder", + "children": [] + } + ] }, { "name": "Networking", diff --git a/public/index.html b/public/index.html index 4a88a5e..247ff1d 100644 --- a/public/index.html +++ b/public/index.html @@ -23,7 +23,7 @@ Note da aggiungere
Ricordarsi di ricordare che siccome siamo di Trento, IT, alcune robe sono biassate
-

Paragrafo da aggiungere

+

[001]

For Update Notifications

Git: link diff --git a/public/notes/note_001.md b/public/notes/note_001.md new file mode 100644 index 0000000..77942d2 --- /dev/null +++ b/public/notes/note_001.md @@ -0,0 +1 @@ +E’ possibile usare i sentence transformers per poter comunicare con dei messaggi linguisticamente e semanticamente corretti pur nascondendo un senso diverso? Embedda il tuo messaggio, poi ruota il vettore e manda un messaggio di senso compiuto che non può essere ricondotto al senso originario. E fin qui semra tutto ok… Il destinatario (con cui avete concordato la trasformazione dei vettori) la inverte e trova il vettore originario, il primo problema è invertire il processo di embedding (che non è biunivoco), i link di cui sopra si riferiscono a un paper e libreria python per tentare questo passaggio. Poi rimangono da approfondire i dettagli di come proseguire la conversazione fittizia in modo apparentemente sensato.