Finished to copy nextcloud info, added also the first note
Some checks failed
Updates the graph by copying the updated files in the right directory / build-and-deploy (push) Failing after 5s

This commit is contained in:
CawaAlreadyTaken 2025-11-14 11:57:03 +01:00
parent 2fbdb111b3
commit 3607be73af
3 changed files with 128 additions and 2 deletions

View file

@ -140,7 +140,132 @@
{ {
"name": "Security", "name": "Security",
"type": "folder", "type": "folder",
"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": [] "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", "name": "Networking",

View file

@ -23,7 +23,7 @@
Note da aggiungere<br> Note da aggiungere<br>
Ricordarsi di ricordare che siccome siamo di Trento, IT, alcune robe sono biassate<br> Ricordarsi di ricordare che siccome siamo di Trento, IT, alcune robe sono biassate<br>
<p>Paragrafo da aggiungere</p> <p><a href="https://git.hackinpovo.it/HackInPovo/resources/src/branch/main/notes/note_001.md">[001]</a></p>
<h3>For Update Notifications</h3> <h3>For Update Notifications</h3>
Git: <a href="https://git.hackinpovo.it/HackInPovo/resources.git">link</a> Git: <a href="https://git.hackinpovo.it/HackInPovo/resources.git">link</a>

1
public/notes/note_001.md Normal file
View file

@ -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.