03.11.20

March Seattle Locksport and DC206 Meeting – Cancelled

Posted in Uncategorized at 16:02 by Dark Diesel

What: March Seattle Locksport and DC206 Meeting
When: Cancelled
Where: Black Lodge Research
Who: (Hattz, DarkDiesel, Dune, Panic, and the DC206 community)

Hello All,
Out of an abundance of caution due to the recent circumstances in the region, both this month’s Locksport and DC206 meeting are being cancelled. If any Black Lodge members want to be at the Lodge on Sunday, you are free to do so.

DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

02.06.20

February Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 19:08 by Dark Diesel

What: February Seattle Locksport and DC206 Meeting
When: Feb 16, 2019 (3rd Sundays), 11:00am-~4:00pm
Where: Black Lodge Research
Who: (Omnifarious, Hattz, DarkDiesel, Dune, Panic, and the DC206 community)
Chef of the Month: Hattz

  • 11:00am-1:00pm: Seattle Locksport 
  • 1:00pm-?: DC206 Meeting Presentation (usually 1-2hrs)
  • Post-presentation: BBQ begins

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport, starting at 1:00pm.

BBQ begins after the DC206 Meeting presentation ends.
This month the chef will be Hattz. We’re planning typical BBQ food, burgers, brats, chicken. We’d welcome some additional dishes, as well as some decent hard ciders and beers.

DC206 Meeting Presentation:
Title: Public Key Cryptography, How and Why Does It Work?
Abstract: A description of the non-elliptic versions of RSA and DHA followed by a primer on the branches of math involved in understanding why they function. It’s expected you know basic algebra, and what powers and logarithms are. This will be a live-coding talk where Python is used to illustrate the concepts. 

By: Omnifarious
Bio: I’ve been a programmer since computers captured my imagination when I was very young. Computer security and cryptography became a focus of my learning in 2003 when I worked at a very underfunded startup in the instant messaging space. 

This event will be videotaped by Panic. During event, remote users can interactively ask questions to speaker. You’ll need to sign in to Google Chat on the below Youtube URL. If you cannot attend, here’s the URL for the live streaming (and afterward, a copy of the video):https://youtu.be/133Ysr71YOw

DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

01.23.20

May 3rd: RISC-V Workshop

Posted in Uncategorized at 10:09 by admin

What: RISC-V Workshop
When: Sunday, May 3rd, 10:00AM-4:00PM
Where: Black Lodge Research’s classroom

This is is a two-part workshop on the RISC-V processor, with multiple hands-on labs, using emulated/simulated RISC-V, no RISC-V dev boards. Part 1, Reading and Writing RISC-V Assembly Language, focuses on RISC-V assembly language and how to read and write it, and how to generate and read assembly language from C code, and how to mix asm with C, externally and inline. We’ll use a QEMU-based VM on your laptop running a RISC-V-based Linux OS, and a few other RISC-V simulators/emulators, and spend most of the time with bash/vim, and both the GNU GCC and LLVM Clang toolchains to write and debug code. Part 2, Exploiting RISC-V Machine Language, focuses on RISC-V machine language — specifically the Linux ELF-flavored userspace binaries, and how to do RISC-V versions of common binary exploitation techniques, stack attacks, ROP, and shellcode. We’ll use Radare2/Cutter and some command line tools to examine RISC-V Linux ELF binaries. Lunch break between parts 1 and 2, probably grill some burgers with the BLR BBQ.

Requirements:
1) Laptop, with data backed up, running fresh version of QEMU (not VirtualBox or VMWare or other VM tool).
2) Understand at least one existing assembly language, including concepts like Registers, Stack, Hex/Bin Math, Twos Complement, Bit Shifting, etc.
3) Understand basics of C language, we’ll be disassembling C as well calling assembly from C (externally and via asm).
4) Understand basics of Radare, it has built-in RISC-V support, unlike IDA.
5) Understand basics of how to use GDB or LLDB debuggers.
6) Understand basics of Smashing Stacks for Fun and Profit, and ROP exploits.

Background materials for preparing:
https://github.com/riscv/
https://riscv.org/
https://www.amazon.com/RISC-V-Reader-Open-Architecture-Atlas/dp/0999249118
https://www.amazon.com/Computer-Organization-Design-RISC-V-Architecture/dp/0128122757/
https://github.com/donbmouse/riscv-security
https://github.com/chrysh/riscv_exploitation
https://github.com/Technolution/riscv-security-tutorial

01.13.20

January Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 20:07 by Dark Diesel

  • What: January Seattle Locksport and DC206 Meeting
  • When: January 19, 2020 (3rd Sundays), 11:00am-~4:00pm
  • Where: Black Lodge Research
  • Who: (Kevin, Hattz, DarkDiesel, Dune, Panic, and the DC206 community)
  • Chef of the Month: Hattz

11:00am-1:00pm: Seattle Locksport 
1:00pm-?: DC206 Meeting Presentation (usually 1-2hrs)
Post-presentation: BBQ begins

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport, starting at 1:00pm. BBQ begins after the DC206 Meeting presentation ends.
This month the chef will be Hattz.

We’re planning hamburgers and some brats. We’d welcome some additional dishes, as well as some decent hard ciders and beers

DC206 Meeting Presentation:
Mechanical Keyboards by Q(Kevin)

No video recording or live streaming will be available for this event, so make sure you come in person! 

DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

12.07.19

December Seattle Locksport, DC206 Meeting & Holiday Party!

Posted in Uncategorized at 16:22 by Dark Diesel

  • What: December Seattle Locksport and DC206 Meeting
  • When: Dec 15, 2019 (3rd Sundays), 11:00am-~4:00pm
  • Where: Black Lodge Research
  • Who: (Angela, Blibbet, DarkDiesel, Dune, Panic, Hoc Genu and the DC206 community)
  • Chef: Everyone! Bring holiday goodies! 

This is the last DC206 Meeting of the DECADE!!   

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport, starting at 1:00pm. Since it is December, we are gonna have a holiday party!  After Locksport and the Meeting we will mingle for the holidays. 

Please bring some holiday goodies for everybody to share.  This includes favorite holiday dishes, appetizers, and desserts.  The Lodge will provide a couple of holiday platters.  As always we welcome decent hard ciders, beers, and spirits to share. 


DC206 Presentation: Angela Jones-Parker
This is a reactive metals demo. Angela will show you how to anodize Niobium and make Rainbow colored metal tags. I believe you should be able to make your own to take home! This should be fun for the holidays. 🙂 

This event might be video-taped, but we need permission from the speaker. If so, I will post the video link in a following notice. 
DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

11.14.19

November Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 14:29 by admin

What: November Seattle Locksport and DC206 Meeting
Where: Black Lodge Research
When: Nov 17th (3rd Sundays), 11:00am-~4:00pm


part 1 of 3: 11:00-1:00pm: Seattle Locksport

Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting.


part 2 of 3: 1:00: Coffee Roasting with Josh

Josh will spend a little time talking about roasting and how coffee develops when roasted. Then he’ll move to a hands on demonstration with a current prosumer machine, the Aillio Bullet R1. Finally he’ll share some of the beans with the participants to try out on their own.


part 3 of 3: post-coffee roasting: BBQ

A BBQ begins after the DC206 Meeting’s presentation ends. This month the chef will be Hattz. We’re planning hamburgers and some brats. We’d welcome some additional dishes, as well as some decent hard ciders and beers.


More info:

Black Lodge Research:
17725 NE 65th St, A-155
Evans Business Park, Bldg A
Redmond, WA 98052
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Located in Building A, mid-building, between the coffee roaster and the security company. Park facing the street, not in front of other businesses, or you may get towed.

DC206 Meetings:
Seattle-area DEF CON Group (DCG)
Meets 3rd Sundays 1pm, adjacent to Seattle Lockspsort Meeting
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org
https://www.meetup.com/Black-Lodge-Research/
irc://irc.efnet.org/dc206
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
Meets 3rd Sundays, 11a-1pm, adjacent to the monthly DC206 Meeting
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

10.11.19

October Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 10:56 by Dark Diesel

What: October Seattle Locksport and DC206 Meeting
When: Oct 20, 2019 (3rd Sundays), 11:00am-~4:00pm
Where: Black Lodge Research
Who: (Daniel, Hattz, DarkDiesel, Dune, Panic, and the DC206 community)
Chef of the Month: Hattz

  • 11:00am-1:00pm: Seattle Locksport 
  • 1:00pm-?: DC206 Meeting Presentation (usually 1-2hrs)
  • Post-presentation: BBQ begins

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport, starting at 1:00pm. BBQ begins after the DC206 Meeting presentation ends.
This month the chef will be Hattz. We’re planning hamburgers and some brats. We’d welcome some additional dishes, as well as some decent hard ciders and beers

DC206 Meeting Presentation:
Title: From cockroaches to marble floors: What happens when you turn on the lights?
Daniel Tobin

There aren’t enough cybersecurity professionals to protect the world’s organizations, so many approaches have developed to augment the existing stock – including converting engineers into security advocates and utilizing automation. We present an overlooked, but entirely congruent position: eliminating the false distinction between security bugs and other software defects can substantially reduce the risk of cyberattack, improve product quality, and align builders around the same goals.   

This event will be videotaped by Panic. During event, remote users can interactively ask questions to speaker. You’ll need to sign in to Google
Chat on the below Youtube URL. If you cannot attend, here’s the URL for the live streaming (and afterward, a copy of the video):
https://www.youtube.com/watch?v=y_MblEaoj9k

DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFH

09.11.19

9/30, BLR: free embedded security training by Joe Fitzpatrick!!

Posted in Uncategorized at 14:13 by admin

Who: Joe Fitzpatrick of Securing Hardware
What: free embedded security training
Where: Black Lodge Research hackerspace
When: Monday, September 30th, 7:00-9:00pm

Abstract: This workshop introduces several different relatively accessible interfaces on embedded systems. Attendees will get hands-on experience with UART, SPI, and JTAG interfaces on a MIPS-based wifi router. After a brief architectural overview of each interface, hands-on labs will guide through the process understanding, observing, interacting with, and exploiting the interface to potentially access a root shell on the target.

Instructor: Joe FitzPatrick (@securelyfitz)
https://securinghardware.com/training/

What to bring: I’ll bring laptops with software, plus all the hardware. I’ll run the same workshop as I do at OWASP portland on september 24. Right now that’s attacking a MIPS target, but if i have enough time between now and then, I hope to rewrite it to target a Raspberry Pi. Bring a pen, and be prepared to pair up if equipment is limited.

Address:
Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company. Park facing the street, not in front of other businesses, or you may get
towed.
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic

P.S. Register for BSidesPDX. Free registration ends October 1st:
https://bsidespdx.org/events/2019/register.html

09.10.19

September Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 17:30 by Dark Diesel

Sorry for the lateness folks!  Will be back on track soon.  Thanks for your patience!  Sabre aka DarkDiesel

  • What: September Seattle Locksport and DC206 Meeting
  • When: Sept 15, 2019 (3rd Sundays), 11:00am-~4:00pm
  • Where: Black Lodge Research
  • Who: (Hattz, Spoons, DarkDiesel, Dune, Panic, and the DC206 community)
  • Chef of the Month: Hattz
  • 11:00am-1:00pm: Seattle Locksport 
  • 1:00pm-2:00 pm: DC206 Meeting Presentation (usually 1-2hrs)
  • Post-presentation: BBQ begins

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport, starting at 1:00pm. BBQ begins after the DC206 Meeting presentation ends.
This month the chef will be Hattz. We’re planning hamburgers and some brats. We’d welcome some additional dishes, as well as some decent hard ciders and beers

DC206 Meeting Presentation: TBD

Spoons will be giving our talk this month

This event will be videotaped by Panic. During event, remote users can interactively ask questions to speaker. You’ll need to sign in to Google
Chat on the below Youtube URL. If you cannot attend, here’s the URL for the live streaming (and afterward, a copy of the video):

https://www.youtube.com/watch?v=K2KfJr_n2IgDC206:https://dc206.org/http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

08.14.19

August Seattle Locksport and DC206 Meeting

Posted in Uncategorized at 16:34 by Dark Diesel

  • What: August Seattle Locksport and DC206 Meeting
  • When: August 25, 2019 (3rd Sundays), 11:00am-? 
  • Where: Black Lodge Research
  • Who: ( Hattz, DarkDiesel, Dune, Panic, Spoony, Hoc Genu and the DC206 community)
  • Chef of the Month: Hattz or Spoony

This is our annual Post Hacker Summer camp BBQ and Chillout!

No speaker is scheduled, we are using this time to have some fun and network, talk about stuff we learned and share information.  After food and drink, once the sun starts going down, we usually bring out the movies and have ourselves an outdoor movie night.  

11:00am-1:00pm: Seattle Locksport 

BBQ begins during or after Locksporting

Black Lodge Research hackerspace hosts a monthly event with two adjacent user groups: Seattle Locksport and the DC206 Meeting. Seattle Locksport’s monthly Eastside event takes place immediately before the monthly DC206 Meeting. DC206 Meeting is the monthly meetup of the Seattle-area DEF CON community. Locksport takes place 11:00-1:00. The DC206 Meeting takes place immediately after Seattle Locksport.
This month the chef will be either Hattz or Spoony. We’re planning burgers, brats, and other grilled meats. Please bring dishes to share as this is a community BBQ, and we love trying people’s fav dishes!  We’d also welcome some decent hard ciders and beers.

DC206:
https://dc206.org/
http://lists.dc206.org/listinfo.cgi/list-dc206.org

Seattle Locksport:
https://twitter.com/LockpickSeattle
https://www.meetup.com/Seattle-Lockpicking/

Black Lodge Research:
17725 NE 65th St, A-155; Evans Business Park, Bldg A; Redmond, WA 98052
Building A, mid-building, between the coffee roaster and the security company.
Park facing the street, not in front of other businesses, or you may get towed.
https://www.meetup.com/Black-Lodge-Research/
https://www.facebook.com/BlackLodgeResearch/
https://twitter.com/the_black_lodge
https://blacklodgeresearch.org/
http://www.openstreetmap.org/node/2184616237#map=19/47.66334/-122.10399
https://map.what3words.com/warm.rapid.epic
https://www.youtube.com/channel/UCVZb0Q7zgrjfwncn-jcPwsg
Please consider donating! 
https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=743VSYX72C7G2
https://www.amazon.com/gp/registry/wishlist/3GIXQQ7XSJ3Q1?ref_=cm_sw_r_cp_ep_ws_VlWKBbCSZKFHA

« Previous entries Next Page » Next Page »