Skip to content

Commit b45d35e

Browse files
authored
Merge pull request #83 from Hashdump/amazingca-meeting-presentations-news-and-notes
Add presentations, meeting notes, & new news + |n|>1 UX
2 parents 8ddb61e + f9c4f65 commit b45d35e

6 files changed

Lines changed: 55 additions & 7 deletions

File tree

data/meetings.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1248,14 +1248,27 @@
12481248
"title": "Reverse Engineering",
12491249
"picture": "ghidra.png",
12501250
"summary": "Building on top of our previous meeting, we will be using Ghidra, an open-source decompiler from the NSA which generates near one-to-one assembly from binaries. We'll be using what we learned two weeks ago to not only analyze programs and their functions, but to patch in custom values to reach otherwise unreachable parts of code.",
1251-
"notes": "Our meeting began on schedule, and a majority of the time was spent with VM setup and initialization. We did have some successes from meeting attendees who were able to overcome the download limitations of the CSU network — they were able to analyze a program and make modifications to its binary."
1251+
"notes": "Our meeting began on schedule, and a majority of the time was spent with VM setup and initialization. We did have some successes from meeting attendees who were able to overcome the download limitations of the CSU network — they were able to analyze a program and make modifications to its binary.",
1252+
"links": [
1253+
{
1254+
"url": "/documents/SoftwareReverseEngineering.pdf",
1255+
"name": "Presentation"
1256+
}
1257+
]
12521258
},
12531259
{
12541260
"date": "October 6, 2025",
12551261
"time": "5:00 PM",
12561262
"title": "Lockpicking",
12571263
"picture": "lockpicking.jpg",
1258-
"summary": "After a nearly 7 year hiatus, we will be holding the ever-infamous Hashdump lockpicking session. We will have a variety of locks for you to try to open with supplied lockpicks. In addition, we'll also cover a variety of lock types and the design choices that are meant to make them more resistant to attacks. As always, feel free to bring any locks if you have any!"
1264+
"summary": "After a nearly 7 year hiatus, we will be holding the ever-infamous Hashdump lockpicking session. We will have a variety of locks for you to try to open with supplied lockpicks. In addition, we'll also cover a variety of lock types and the design choices that are meant to make them more resistant to attacks. As always, feel free to bring any locks if you have any!",
1265+
"notes": "Another relatively on-schedule meeting. We had some slight technical difficulties with getting the presentation loaded up but were all started around 5:05 PM and began the activity at around 5:15 PM. We had a slight shortage of lockpicks, particularly tension wrenches, so attendees had to share. Regardless, we were able to go around and help those who were stuck or had questions on the methods used to break into their particular lock.",
1266+
"links": [
1267+
{
1268+
"url": "/documents/Locks.pdf",
1269+
"name": "Presentation"
1270+
}
1271+
]
12591272
}
12601273
]
12611274
}

data/news.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"news": [
33
{
4+
"title": "Splunk Worldwide BOTS Day Event",
5+
"content": "Splunk, a subsidiary of Cisco, will be holding their Worldwide BOTS Day on Halloween, October 31st, 2025. They will be hosting it in-person at their Boulder Office (3400 Valmont Rd #200, Boulder, CO 80301) but also have plans to host virtually as well. If you are at all interested, consider <a href='https://www.eventbrite.com/e/southwest-boss-of-the-soc-bots-fall-2025-tickets-1740906701809?aff=oddtdtcreator' target='_blank'>registering here</a>. This event is free to attend for those in cybersecurity, academia, or just interested in security and cybersecurity in general. Also, lunch will be provided. For more information about this event, please consult the following links:",
6+
"links": [
7+
{
8+
"url": "https://www.splunk.com/en_us/blog/security/2025-worldwide-bots-day.html",
9+
"name": "2025 Worldwide BOTS Day"
10+
},
11+
{
12+
"url": "https://www.splunk.com/en_us/blog/security/what-you-need-to-know-about-boss-of-the-soc.html",
13+
"name": "Boss of the SOC"
14+
}
15+
]
16+
},
17+
{
18+
"title": "Hashdump Meeting Times",
419
"content": "Our meetings are on every other Monday from 5:00-6:00pm in CSB 305. All majors are welcome, no experience in cybersecurity necessary! Connect with us over Discord!"
520
}
621
]

src/routes/+page.svelte

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,19 @@
2424

2525
<h2>Hashdump News</h2>
2626
{#each news as item}
27-
<div>
28-
<p>{@html item.content}</p>
29-
</div>
27+
{#if news.length > 1}
28+
<h3>{item.title}</h3>
29+
{/if}
30+
<p>{@html item.content}</p>
31+
{#if item.links}
32+
<ul>
33+
{#each item.links as link}
34+
<li>
35+
<a href={link.url} target="_blank">{link.name}</a>
36+
</li>
37+
{/each}
38+
</ul>
39+
{/if}
3040
{/each}
3141

3242
<h2>Upcoming Meetings</h2>
@@ -42,6 +52,10 @@
4252
</div>
4353

4454
<style>
55+
.terminal-media {
56+
margin-bottom: 0 !important;
57+
}
58+
4559
.meeting-grid {
4660
display: flex;
4761
flex-wrap: wrap;
@@ -64,5 +78,4 @@
6478
display: none;
6579
}
6680
}
67-
6881
</style>

static/documents/Locks.pdf

3.35 MB
Binary file not shown.
604 KB
Binary file not shown.

static/style.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,14 @@ html.dark body {
1111
--block-background-color: var(--code-bg-color);
1212
}
1313

14+
h2, h3 {
15+
font-weight: unset !important;
16+
}
17+
1418
h2 {
15-
font-weight: 500 !important;
1619
text-decoration: underline !important;
1720
}
21+
22+
h3 {
23+
font-style: italic !important;
24+
}

0 commit comments

Comments
 (0)