Skip to content

Commit

Permalink
update publication page and bugfix for google analytics (not used)
Browse files Browse the repository at this point in the history
  • Loading branch information
goemon07 committed Jul 4, 2024
1 parent 42777c1 commit dc4cf6b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ weight = 7
colortheme = "dark" # dark, light, white, or classic
css = ["css/custom.css"] # here path of css custom file
rss = false # generate rss feed. default value is false
googleAnalyticsAsync = false # use asynchronous tracking. Synchronous tracking by default
# googleAnalyticsAsync = false # use asynchronous tracking. Synchronous tracking by default

# Home page settings
description = "Cybersecurity Ph.D. Student in SPRITZ Group (UniPd). Strongly unprofessional climber, gravel cyclist and trail runner."
Expand Down
10 changes: 10 additions & 0 deletions content/publications/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@ date: 2021-06-10 17:51:42
# Publications
My research areas are focused on privacy and private data leaks. I'm primarely working on obfuscation techniques, forensics and malware detection.

## [RedactBuster: Entity Type Recognition from Redacted Documents](https://arxiv.org/abs/2404.12991)
- Context analysis on sentences with redacted information can enable entity recognition.
- @ [ESORICS 2024](https://esorics2024.org/)
- M. Beltrame, M. Conti, P. Guglielmin, F. Marchiori, G. Orazi

## [Acoustic Side-Channel Attacks on a Computer Mouse](https://sprout.ics.uci.edu/pubs/DIMVA_Acoustic_Side_Channel_Attacks_on_a_Computer_Mouse.pdf)
- An innovative information leakage attack based on mice noise.
- @ [DIMVA 2024](https://www.dimva.org/dimva2024/)
- M. Conti, M. Duroyon, G. Orazi, G. Tsudik

## [Invoice #31415 attached: Automated analysis of malicious Microsoft Office documents](https://www.sciencedirect.com/science/article/pii/S0167404821004053)
- Malware detection on Microsoft Office documents.
- @ Computers & Security 2021
Expand Down
1 change: 1 addition & 0 deletions content/teaching/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ As a PhD student, I had the chance to be a teaching assistant of professors from
## A.A. 2023/2024
- \[MSc\] [CyberSecurity and Cryptography: Principles and Practices](https://www.math.unipd.it/~conti/teaching/CCPP2324/index.html) - teaching assistant with [prof. Conti](https://www.math.unipd.it/~conti/index.html)
- \[MSc\] [Ethical Hacking](https://didattica.unipd.it/off/2022/LM/SC/SC2542/000ZZ/SCQ0089518/N0) - teaching assistant with [prof. Losiouk](https://www.math.unipd.it/~elosiouk/) and [prof. Brighente](https://www.math.unipd.it/~abrighen/)
- \[HS\] [Cyber Security Specialist](https://itsdigitalacademy.com/), Teacher for [ITS Digital Academy "Mario Volpato"](https://itsdigitalacademy.com/corsi/cyber-security-specialist/)

## A.A. 2022/2023
- \[MSc\] [CyberSecurity and Cryptography: Principles and Practices](https://www.math.unipd.it/~conti/teaching/CCPP2223/index.html) - teaching assistant with [prof. Conti](https://www.math.unipd.it/~conti/index.html)
Expand Down
12 changes: 8 additions & 4 deletions layouts/partials/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,15 @@
{{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
{{ end }}
{{ end }}

{{/*
{{ if .Site.GoogleAnalytics }}
{{ if .Site.Params.googleAnalyticsAsync }}
{{ if .Site.Params.googleAnalyticsAsync }}
{{ template "_internal/google_analytics_async.html" . }}
{{ else }}
{{ else }}
{{ template "_internal/google_analytics.html" . }}
{{ end }}
{{ end }}
{{ end }}
{{ end }}
*/}}

</head>

0 comments on commit dc4cf6b

Please sign in to comment.