From f084b6b60b0b19f3a5586ac7508fc8be1ce04624 Mon Sep 17 00:00:00 2001 From: mjfernez Date: Wed, 22 Nov 2023 14:43:41 -0500 Subject: Moved latest updates to files. Fixed up RESUME. Also fixed an issue with the latest page where it tried to redirect to a subdirectory instead of going from root --- files/RESUME.html | 36 ++++++++++++++++-------------------- files/RESUME.md | 37 ++++++++++++++++++++----------------- files/RESUME.pdf | Bin 14541 -> 14343 bytes files/latest.html | 17 +++++++++++++++++ latest.html | 17 ----------------- update_latest.py | 6 ++++-- 6 files changed, 57 insertions(+), 56 deletions(-) create mode 100644 files/latest.html delete mode 100644 latest.html diff --git a/files/RESUME.html b/files/RESUME.html index 2a32e5c..38f42b8 100644 --- a/files/RESUME.html +++ b/files/RESUME.html @@ -7,31 +7,31 @@ href="https://mjfer.net/files/RESUME.md">TXT

Work History

Information -Security Analyst - Adelphi University (2019 - present)

+id="information-security-analyst---adelphi-university-2019--">Information +Security Analyst - Adelphi University (2019 - ) -

Lab -Coordinator - Adelphi University (2022 - present)

+

Lab Coordinator - +Adelphi University (2022 - )

Microsoft -Exchange Admin - aaronbasha.com / reginebasha.com (2021 - present)

+id="microsoft-exchange-admin---aaronbasha.com-reginebasha.com-2021--">Microsoft +Exchange Admin - aaronbasha.com / reginebasha.com (2021 - )

Earlier Work History

-
  • Bachelor's Degree: Physics -
  • +
  • Bachelor's Degree: Physics - Adelphi University, May 2015
  • Technical and Vocational skills

    @@ -61,7 +58,7 @@ skills knowledge (in order of familiarity)

    Personal knowledge

    diff --git a/files/RESUME.md b/files/RESUME.md index 28a60d6..9d88632 100644 --- a/files/RESUME.md +++ b/files/RESUME.md @@ -8,24 +8,28 @@ ## Work History -### Information Security Analyst - Adelphi University (2019 - present) -- Served as the main contact for incident response and digital forensics, - maintained and developed the university's SIEM (Splunk), delivered - regular threat intel reports to senior IT and executive staff +### Information Security Analyst - Adelphi University (2019 - ) + +- Served as the main contact for incident response and digital forensics +- Maintained and developed the university's SIEM (Splunk) +- Delivered regular threat intel reports to senior IT and executive staff - Significantly reduced attack surface by researching and implementing account retirement procedures. -- Assisted with securing the remote workforce during the COVID-19 pandemic. - Improved and expanded university incident response plans. -### Lab Coordinator - Adelphi University (2022 - present) -- Develops and delivers lab excercises for CSC171 - Intro to +### Lab Coordinator - Adelphi University (2022 - ) + +- Developed and delivered lab excercises for CSC171 - Intro to Programming (Python) -### Microsoft Exchange Admin - aaronbasha.com / reginebasha.com (2021 - present) +### Microsoft Exchange Admin - aaronbasha.com / reginebasha.com (2021 - ) + - Assisted with migration from a compromised email provider -- Administers and maintains Microsoft Exchange for employees +- Administered and maintained Microsoft Exchange for employees +- Provided general IT help desk support to employees when needed ### Earlier Work History + - Data Entry, Lien Representative - Health Plus Management (2017 - 2019) - Math Tutor - Mathnasium (2016 - 2017) - Research Assistant - Adelphi University (2012 - 2015) - [Publication](https://www.spiedigitallibrary.org/conference-proceedings-of-spie/9486/94860H/Real-time-measurement-of-the-NOsub2-sub-concentration-in-ambient/10.1117/12.2179501.short?SSO=1) @@ -33,20 +37,19 @@ ## Education - Master's Degree: Digital Forensics and Cybersecurity - + John Jay College of Criminal Justice, May 2019 - + Fieldwork (for degree completion): Engineered a unique data + - John Jay College of Criminal Justice, May 2019 + - Fieldwork (for degree completion): Engineered a unique data management and visualization solution in contract with NCFTA, New York Office (2019 - 2022) -- Bachelor's Degree: Physics - + Adelphi University, May 2015 +- Bachelor's Degree: Physics - Adelphi University, May 2015 ## Technical and Vocational skills ### Professional knowledge (in order of familiarity) - Cybersecurity Incident Response and Triage -- Scripting languages: Bash, Python +- Scripting languages: Bash, Python, Powershell - Forensic and Data Recovery Software: FTK, Autopsy - Technical Writing/Documentation - Linux system administration @@ -54,8 +57,8 @@ - REST API conventions, web scraping ### Personal knowledge -- Programming languages: C, Python, x86 assembly + +- Programming languages: Python, C, x86 assembly - Operating systems: Windows, Linux, BSD -- Electronics and circuit design: AVR, Arduino, Raspberry Pi -- Software Debuggers: GDB, PDB, Ghidra +- Electronics and circuit design: AVR, Raspberry Pi - Amateur music production/composition: Audacity, Musescore, Sonic Pi diff --git a/files/RESUME.pdf b/files/RESUME.pdf index 57318b8..0ac8ab3 100644 Binary files a/files/RESUME.pdf and b/files/RESUME.pdf differ diff --git a/files/latest.html b/files/latest.html new file mode 100644 index 0000000..dfc1bab --- /dev/null +++ b/files/latest.html @@ -0,0 +1,17 @@ + + +

    LATEST CHANGES

    + + + diff --git a/latest.html b/latest.html deleted file mode 100644 index fa5fd2b..0000000 --- a/latest.html +++ /dev/null @@ -1,17 +0,0 @@ - - -

    LATEST CHANGES

    - - - diff --git a/update_latest.py b/update_latest.py index 160dc7c..94bf5a2 100644 --- a/update_latest.py +++ b/update_latest.py @@ -1,6 +1,7 @@ import os import subprocess -from time import mktime, ctime +from time import mktime +from datetime import date from email.utils import parsedate def file_last_modified(path): @@ -35,7 +36,8 @@ for f, t in sorted(updates.items(), key=lambda x: x[1], reverse=True)[:10]: #print(f, ctime(t), sep="\t") - print(f"\t
  • {f.split()[-1]} - Updated: {ctime(t)}
  • ") + if f != "latest.html": + print(f"\t
  • {f.split()[-1]} - Updated: {date.fromtimestamp(t)}
  • ") print("") print("") -- cgit v1.2.3