Skip to content

Commit

Permalink
updated posts, index, added RSS
Browse files Browse the repository at this point in the history
  • Loading branch information
balpars committed Mar 5, 2024
1 parent 6a5984c commit e7cbff0
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/content/blog/htb-bombs-landed-ctf-writeup.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/reverse-engineering-a-lokibot-sample.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
59 changes: 59 additions & 0 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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;
---

<Layout>
<Header />
<main id="main-content">
<section id="hero">
<h1>Welcome</h1>
<a
target="_blank"
href="/rss.xml"
class="rss-link"
aria-label="rss feed"
title="RSS Feed"
>
<svg xmlns="http://www.w3.org/2000/svg" class="rss-icon"
><path
d="M19 20.001C19 11.729 12.271 5 4 5v2c7.168 0 13 5.832 13 13.001h2z"
></path><path
d="M12 20.001h2C14 14.486 9.514 10 4 10v2c4.411 0 8 3.589 8 8.001z"
></path><circle cx="6" cy="18" r="2"></circle>
</svg>
<span class="sr-only">RSS Feed</span>
</a>

<p>
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.
</p>

{
// only display if at least one social link is enabled
socialCount > 0 && (
<div class="social-wrapper">
<div class="social-links">Social Links:</div>
<Socials />
</div>
)
}
</section>

<Hr />

Expand Down Expand Up @@ -80,6 +117,28 @@ const socialCount = SOCIALS.filter(social => social.active).length;
</Layout>

<style>
/* ===== Hero Section ===== */
#hero {
@apply pb-6 pt-8;
}
#hero h1 {
@apply my-4 inline-block text-3xl font-bold sm:my-8 sm:text-5xl;
}
#hero .rss-link {
@apply mb-6;
}
#hero .rss-icon {
@apply mb-2 h-6 w-6 scale-110 fill-skin-accent sm:mb-3 sm:scale-125;
}
#hero p {
@apply my-2;
}
.social-wrapper {
@apply mt-4 flex flex-col sm:flex-row sm:items-center;
}
.social-links {
@apply mb-1 mr-2 whitespace-nowrap sm:mb-0;
}

/* ===== Featured & Recent Posts Sections ===== */
#featured,
Expand Down

0 comments on commit e7cbff0

Please sign in to comment.