diff --git a/src/content/blog/htb-bombs-landed-ctf-writeup.md b/src/content/blog/htb-bombs-landed-ctf-writeup.md index 5a6f3a9..308ed46 100644 --- a/src/content/blog/htb-bombs-landed-ctf-writeup.md +++ b/src/content/blog/htb-bombs-landed-ctf-writeup.md @@ -3,7 +3,7 @@ title: Hack The Box Bombs Landed CTF Writeup author: balpars pubDatetime: 2024-02-23T08:03:01.372Z slug: htb-bombs-landed-ctf-writeup -featured: true +featured: false draft: false tags: - ctf diff --git a/src/content/blog/reverse-engineering-a-lokibot-sample.md b/src/content/blog/reverse-engineering-a-lokibot-sample.md index f0dfc0c..b44152b 100644 --- a/src/content/blog/reverse-engineering-a-lokibot-sample.md +++ b/src/content/blog/reverse-engineering-a-lokibot-sample.md @@ -14,7 +14,7 @@ canonicalURL: https://medium.com/@_Alp/reverse-engineering-a-lokibot-sample-1-dd --- # Reverse Engineering a Lokibot Sample -I downladed this sample from MalwareBazaar. +I downladed this sample from MalwareBazaar. Lokibot is already a well known malware family, so no introduction is needed. This post aims to showcase how one can unpack it's .NET variant by hand. Original filename: **Invoice-pfi705-704-705.exe** ```yaml diff --git a/src/pages/index.astro b/src/pages/index.astro index 18c6c18..04ac75d 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -15,12 +15,49 @@ const posts = await getCollection("blog"); const sortedPosts = getSortedPosts(posts); const featuredPosts = sortedPosts.filter(({ data }) => data.featured); const recentPosts = sortedPosts.filter(({ data }) => !data.featured); + const socialCount = SOCIALS.filter(social => social.active).length; ---
+
+

Welcome

+ + + + RSS Feed + + +

+ Balpars Cyber Journey is a blog mainly about Cyber Security. + In this blog I will share my researches and writeups. + Right now I am researching Cryptograpgy and Cyber Security of UAVs. + So you can expect future posts related to these fields. +

+ + { + // only display if at least one social link is enabled + socialCount > 0 && ( + + ) + } +

@@ -80,6 +117,28 @@ const socialCount = SOCIALS.filter(social => social.active).length;