Compare commits

...

6 commits

Author SHA1 Message Date
7650531641 Add type check to validation job 2024-06-14 14:47:12 +02:00
5b49781fa6 /bin/python /home/marco/so-un-bot/scripts/validate_questions.py 2024-06-14 14:47:00 +02:00
6988ff0549 Add validation job 2024-06-14 14:33:43 +02:00
be195a0de7 Fix malformed so2 json 2024-06-14 13:53:03 +02:00
9227c12470
Merge pull request #30 from gpelisset/main
Aggiunto appello 12/06/24
2024-06-14 13:50:21 +02:00
Gabriele Pelissetto
848863997d Aggiunto appello 12/06/24 2024-06-12 23:15:26 +02:00
4 changed files with 219 additions and 2 deletions

View file

@ -6,9 +6,18 @@ on:
branches: ['main']
jobs:
validate-questions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate questions
run: python scripts/validate_questions.py
shell: sh
update-data:
runs-on: ubuntu-latest
steps:
- name: Call webhook
run: curl -X POST ${{secrets.DEPLOY_WEBHOOK}}

View file

@ -0,0 +1,15 @@
name: Validate questions
# Configures this workflow to run every time a change is pushed to the branch called `release`.
on: [pull_request]
jobs:
validate-questions:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Validate questions
run: python scripts/validate_questions.py
shell: sh

View file

@ -1079,7 +1079,7 @@
"image": ""
},
{
"text": "Dopo leseccuzione di C1 fd1 contiene lo stesso valore di fd; mentre dopo lesecuzione di C2 fd1 contiene il valore del piu piccolo file descriptor disponibile",
"text": "Dopo leseccuzione di C1 fd1 contiene lo stesso valore di fd; mentre dopo lesecuzione di C2 fd1 contiene il valore del più piccolo file descriptor disponibile",
"image": ""
}
],
@ -2736,5 +2736,161 @@
],
"correct": 0,
"image": ""
},
{
"quest": "144. Supponiamo di avere una directory\n<code>/home/dir</code>\ncreate da root con diritti di accesso\n<code>1777/drwxrwxrwt</code>\ned al suo interno il file filename, creato da root, con diritti di accesso\n<code>0770/-rwxrwx---</code>\nSupponiamo quindi di eseguire il comando\n<code>rm /home/dir/filename</code>\neseguito come utente normale (non root). Quale delle seguneti affermazioni è corretta?\n\n Scegli un'alternativa:",
"answers": [
{
"text": "Il file non verrà cancellato perché lo sticky bit è settato",
"image": ""
},
{
"text": "Il file verrà cancellato perché lo sticky bit non è settato",
"image": ""
},
{
"text": "Il file non verrà cancellato perché il proprietario del file è root ed i diritti per il gruppo others sono tutti resettati",
"image": ""
}
],
"correct": 0,
"image": ""
},
{
"quest": "145. Si supponga di avere un file di testo (filein) contenente 1000 caratteri e di voler copiare in un altro file (fileout) 100 caratteri a partire dal decimo. Quale di questi comandi non produce il risultato atteso?",
"answers": [
{
"text": "dd if=filein of=fileout bs=1 seek=10 count=100",
"image": ""
},
{
"text": "dd if=filein of=fileout bs=1 skip=10 count=100",
"image": ""
},
{
"text": "dd if=filein of=fileout bs=10 skip=1 count=10",
"image": ""
}
],
"correct": 0,
"image": ""
},
{
"quest": "146. Supponendo di essere “loggato” in una shell come utente1. Quali dei seguenti è un path assoluto?",
"answers": [
{
"text": "dir1/dir11/dir112/filename",
"image": ""
},
{
"text": "~/utente1/dir1/dir11/dir112/filename",
"image": ""
},
{
"text": "~/dir1/dir11/dir112/filename",
"image": ""
}
],
"correct": 2,
"image": ""
},
{
"quest": "147. Assumiamo di avere un file eseguibile il cui proprietario e' l'utente root ad esempio\n<code>-rwxr-xr-x 1 root root 60296 feb 22 2017 /bin/chmod</code>\n Affinche l'effective UID del processo cambi quando eseguito da un utente senza privilegi di root cosa bisogna fare?",
"answers": [
{
"text": "Impostare il permesso speciale Setuid bit",
"image": ""
},
{
"text": "Nessuna risposta (0 punti)",
"image": ""
},
{
"text": "Impostare il permesso speciale stiky bit",
"image": ""
},
{
"text": "Non occorre fare nulla perche' quello descritto e' il comportamento standard, ovvero l'effective UID cambia sempre in quello dell'utente che esegue il file.",
"image": ""
}
],
"correct": 0,
"image": ""
},
{
"quest": "148. Si supponga di eseguire, come utente sudoer, i seguenti comandi\n \n C1) sudo ls /home\n C2) sudo su -cls /home\n Quale affermazione e' corretta?",
"answers": [
{
"text": "C1 e C2 sono equivalenti",
"image": ""
},
{
"text": "C2 da errore “comando non trovato”",
"image": ""
},
{
"text": "C2 esegue una setUID mentre C1 no",
"image": ""
}
],
"correct": 0,
"image": ""
},
{
"quest": "149. Che cosa stampa il seguente frammento di codice: <code>\n \n void func1() {\n extern int myvar;\n void nestfunc1() {\n myvar = 0;\n }\n nestfunc1();\n myvar = 1;\n }\n \n \n int myvar = 8;\n void main(void) {\n func1();\n printf(\"myvar = %d\n\", myvar);\n }\n</code> ",
"answers": [
{
"text": "myvar = 0",
"image": ""
},
{
"text": "myvar = 8",
"image": ""
},
{
"text": "myvar = 1",
"image": ""
}
],
"correct": 2,
"image": ""
},
{
"quest": "150. Come si dichiara un puntatore a funzione myptr per una funzione che ritorna un int e richiede un int?",
"answers": [
{
"text": "int (*)myptr(int)",
"image": ""
},
{
"text": "int *myptr()",
"image": ""
},
{
"text": "int (*myptr)(int)",
"image": ""
}
],
"correct": 2,
"image": ""
},
{
"quest": "151. Che cosa stampa il seguente frammento di codice: \n <code> static int myvar;\n void func1() {\n myvar++;\n }\n void main(void) {\n func1();\n printf(\"myvar = %d\n\", myvar);\n }\n </code>",
"answers": [
{
"text": "Nulla, il compilatore da' errore perché si e' usata la clausola static al di fuori di una funzione.",
"image": ""
},
{
"text": "myvar = n+1, dove n e' un numero casuale scelto dal compilatore",
"image": ""
},
{
"text": "myvar = 1",
"image": ""
}
],
"correct": 2,
"image": ""
}
]

View file

@ -0,0 +1,37 @@
import os
import json
import logging
logging.basicConfig(level=logging.DEBUG)
for filename in os.listdir("data/questions"):
logging.info("Analyzing " + filename)
with open(os.path.join("data/questions", filename), 'r') as f:
text = f.read()
try:
data = json.loads(text)
for q in data:
if type(q["quest"]) is not str or type(q["image"]) is not str or type(q["answers"]) is not list or type(q["correct"]) is not int:
raise Exception(str(data.index(q)) + ": Some parameters are null, missing or their type is wrong.")
if q["quest"] == "" and q["image"] == "":
raise Exception(str(data.index(q)) + ") Question's text and image cannot both be empty.")
if len(q["answers"]) == 0:
raise Exception(str(data.index(q)) + ": Question has no answers.")
for a in q["answers"]:
if type(a["text"]) is not str or type(a["image"]) is not str:
raise Exception(str(data.index(q)) + ": Some answer's parameters are null, missing or their type is wrong.")
if a["text"] == "" and a["image"] == "":
raise Exception(str(data.index(q)) + ": Answer's text and image cannot both be empty.")
except Exception as e:
logging.error(getattr(e, 'message', repr(e)))
logging.fatal(filename + " is invalid. Aborting.")
exit(1)
logging.info("Parsing successful!")
exit(0)