Wednesday, May 6, 2020

Hacktivity 2018 Badge - Quick Start Guide For Beginners

You either landed on this blog post because 
  • you are a huge fan of Hacktivity
  • you bought this badge around a year ago
  • you are just interested in hacker conference badge hacking. 
or maybe all of the above. Whatever the reasons, this guide should be helpful for those who never had any real-life experience with these little gadgets. 
But first things first, here is a list what you need for hacking the badge:
  • a computer with USB port and macOS, Linux or Windows. You can use other OS as well, but this guide covers these
  • USB mini cable to connect the badge to the computer
  • the Hacktivity badge from 2018
By default, this is how your badge looks like.


Let's get started

Luckily, you don't need any soldering skills for the first steps. Just connect the USB mini port to the bottom left connector on the badge, connect the other part of the USB cable to your computer, and within some seconds you will be able to see that the lights on your badge are blinking. So far so good. 

Now, depending on which OS you use, you should choose your destiny here.

Linux

The best source of information about a new device being connected is
# dmesg

The tail of the output should look like
[267300.206966] usb 2-2.2: new full-speed USB device number 14 using uhci_hcd
[267300.326484] usb 2-2.2: New USB device found, idVendor=0403, idProduct=6001
[267300.326486] usb 2-2.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[267300.326487] usb 2-2.2: Product: FT232R USB UART
[267300.326488] usb 2-2.2: Manufacturer: FTDI
[267300.326489] usb 2-2.2: SerialNumber: AC01U4XN
[267300.558684] usbcore: registered new interface driver usbserial_generic
[267300.558692] usbserial: USB Serial support registered for generic
[267300.639673] usbcore: registered new interface driver ftdi_sio
[267300.639684] usbserial: USB Serial support registered for FTDI USB Serial Device
[267300.639713] ftdi_sio 2-2.2:1.0: FTDI USB Serial Device converter detected
[267300.639741] usb 2-2.2: Detected FT232RL
[267300.643235] usb 2-2.2: FTDI USB Serial Device converter now attached to ttyUSB0

Dmesg is pretty kind to us, as it even notifies us that the device is now attached to ttyUSB0. 

From now on, connecting to the device is exactly the same as it is in the macOS section, so please find the "Linux users, read it from here" section below. 

macOS

There are multiple commands you can type into Terminal to get an idea about what you are looking at. One command is:
# ioreg -p IOUSB -w0 -l

With this command, you should get output similar to this:

+-o FT232R USB UART@14100000  <class AppleUSBDevice, id 0x100005465, registered, matched, active, busy 0 (712 ms), retain 20>
    |   {
    |     "sessionID" = 71217335583342
    |     "iManufacturer" = 1
    |     "bNumConfigurations" = 1
    |     "idProduct" = 24577
    |     "bcdDevice" = 1536
    |     "Bus Power Available" = 250
    |     "USB Address" = 2
    |     "bMaxPacketSize0" = 8
    |     "iProduct" = 2
    |     "iSerialNumber" = 3
    |     "bDeviceClass" = 0
    |     "Built-In" = No
    |     "locationID" = 336592896
    |     "bDeviceSubClass" = 0
    |     "bcdUSB" = 512
    |     "USB Product Name" = "FT232R USB UART"
    |     "PortNum" = 1
    |     "non-removable" = "no"
    |     "IOCFPlugInTypes" = {"9dc7b780-9ec0-11d4-a54f-000a27052861"="IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle"}
    |     "bDeviceProtocol" = 0
    |     "IOUserClientClass" = "IOUSBDeviceUserClientV2"
    |     "IOPowerManagement" = {"DevicePowerState"=0,"CurrentPowerState"=3,"CapabilityFlags"=65536,"MaxPowerState"=4,"DriverPowerState"=3}
    |     "kUSBCurrentConfiguration" = 1
    |     "Device Speed" = 1
    |     "USB Vendor Name" = "FTDI"
    |     "idVendor" = 1027
    |     "IOGeneralInterest" = "IOCommand is not serializable"
    |     "USB Serial Number" = "AC01U4XN"
    |     "IOClassNameOverride" = "IOUSBDevice"
    |   } 
The most important information you get is the USB serial number - AC01U4XN in my case.
Another way to get this information is
# system_profiler SPUSBDataType

which will give back something similar to:
FT232R USB UART:

          Product ID: 0x6001
          Vendor ID: 0x0403  (Future Technology Devices International Limited)
          Version: 6.00
          Serial Number: AC01U4XN
          Speed: Up to 12 Mb/sec
          Manufacturer: FTDI
          Location ID: 0x14100000 / 2
          Current Available (mA): 500
          Current Required (mA): 90
          Extra Operating Current (mA): 0

The serial number you got is the same.

What you are trying to achieve here is to connect to the device, but in order to connect to it, you have to know where the device in the /dev folder is mapped to. A quick and dirty solution is to list all devices under /dev when the device is disconnected, once when it is connected, and diff the outputs. For example, the following should do the job:

ls -lha /dev/tty* > plugged.txt
ls -lha /dev/tty* > np.txt
vimdiff plugged.txt np.txt

The result should be obvious, /dev/tty.usbserial-AC01U4XN is the new device in case macOS. In the case of Linux, it was /dev/ttyUSB0.

Linux users, read it from here. macOS users, please continue reading

Now you can use either the built-in screen command or minicom to get data out from the badge. Usually, you need three information in order to communicate with a badge. Path on /dev (you already got that), speed in baud, and the async config parameters. Either you can guess the speed or you can Google that for the specific device. Standard baud rates include 110, 300, 600, 1200, 2400, 4800, 9600, 14400, 19200, 38400, 57600, 115200, 128000 and 256000 bits per second. I usually found 1200, 9600 and 115200 a common choice, but that is just me.
Regarding the async config parameters, the default is that 8 bits are used, there is no parity bit, and 1 stop bit is used. The short abbreviation for this is 8n1. In the next example, you will use the screen command. By default, it uses 8n1, but it is called cs8 to confuse the beginners.

If you type:
# screen /dev/tty.usbserial-AC01U4XN 9600
or
# screen /dev/ttyUSB0 9600
and wait for minutes and nothing happens, it is because the badge already tried to communicate via the USB port, but no-one was listening there. Disconnect the badge from the computer, connect again, and type the screen command above to connect. If you are quick enough you can see that the amber LED will stop blinking and your screen command is greeted with some interesting information. By quick enough I mean ˜90 seconds, as it takes the device 1.5 minutes to boot the OS and the CTF app.

Windows

When you connect the device to Windows, you will be greeted with a pop-up.

Just click on the popup and you will see the COM port number the device is connected to:


In this case, it is connected to COM3. So let's fire up our favorite putty.exe, select Serial, choose COM3, add speed 9600, and you are ready to go!


You might check the end of the macOS section in case you can't see anything. Timing is everything.

The CTF

Welcome to the Hacktivity 2018 badge challenge!

This challenge consists of several tasks with one or more levels of
difficulty. They are all connected in some way or another to HW RE
and there's no competition, the whole purpose is to learn things.

Note: we recommend turning on local echo in your terminal!
Also, feel free to ask for hints at the Hackcenter!

Choose your destiny below:

1. Visual HW debugging
2. Reverse engineering
3. RF hacking
4. Crypto protection

Enter the number of the challenge you're interested in and press [
Excellent, now you are ready to hack this! In case you are lost in controlling the screen command, go to https://linuxize.com/post/how-to-use-linux-screen/.

I will not spoil any fun in giving out the challenge solutions here. It is still your task to find solutions for these.

But here is a catch. You can get a root shell on the device. And it is pretty straightforward. Just carefully remove the Omega shield from the badge. Now you see two jumpers; by default, these are connected together as UART1. As seen below.



But what happens if you move these jumpers to UART0? Guess what, you can get a root shell! This is what I call privilege escalation on the HW level :) But first, let's connect the Omega shield back. Also, for added fun, this new interface speaks on 115200 baud, so you should change your screen parameters to 115200. Also, the new interface has a different ID under /dev, but I am sure you can figure this out from now on.




If you connect to the device during boot time, you can see a lot of exciting debug information about the device. And after it boots, you just get a root prompt. Woohoo! 
But what can you do with this root access? Well, for starters, how about running 
# strings hello | less

From now on, you are on your own to hack this badge. Happy hacking.
Big thanks to Attila Marosi-Bauer and Hackerspace Budapest for developing this badge and the contests.

PS: In case you want to use the radio functionality of the badge, see below how you should solder the parts to it. By default, you can process slow speed radio frequency signals on GPIO19. But for higher transfer speeds, you should wire the RF module DATA OUT pin with the RX1 free together.



Related links

How To Run Online Kali Linux Free And Any Devices

More information
  1. Tools Hacking
  2. Tecnicas De Ingenieria Social
  3. Google Hacking Database
  4. Hacking Etico 101 Pdf
  5. Javascript Hacking
  6. Hacking Hardware Tools
  7. Hacking Smart Tv
  8. Hacking Madrid
  9. Whatsapp Hacking
  10. Hacking System
  11. Hacking Definicion

Video Archives Of Security Conferences And Workshops


Just some links for your enjoyment

List of security conferences in 2014

Video archives:




AIDE (Appalachian Institute of Digital Evidence)


Blackhat
Botconf
Bsides
Chaos Communication Congress
Defcon
Derbycon
Digital Bond's S4x14
Circle City Con
GrrCON Information Security Summit & Hacker Conference
Hack in the box HITB
InfowarCon
Ruxcon
Shmoocon
ShowMeCon
SkyDogCon
TakeDownCon
Troopers
Heidelberg Germany
Workshops, How-tos, and Demos

Special thanks to  Adrian Crenshaw for his collection of videos

Read more


Tuesday, May 5, 2020

How To Start | How To Become An Ethical Hacker

Are you tired of reading endless news stories about ethical hacking and not really knowing what that means? Let's change that!
This Post is for the people that:

  • Have No Experience With Cybersecurity (Ethical Hacking)
  • Have Limited Experience.
  • Those That Just Can't Get A Break


OK, let's dive into the post and suggest some ways that you can get ahead in Cybersecurity.
I receive many messages on how to become a hacker. "I'm a beginner in hacking, how should I start?" or "I want to be able to hack my friend's Facebook account" are some of the more frequent queries. Hacking is a skill. And you must remember that if you want to learn hacking solely for the fun of hacking into your friend's Facebook account or email, things will not work out for you. You should decide to learn hacking because of your fascination for technology and your desire to be an expert in computer systems. Its time to change the color of your hat 😀

 I've had my good share of Hats. Black, white or sometimes a blackish shade of grey. The darker it gets, the more fun you have.

If you have no experience don't worry. We ALL had to start somewhere, and we ALL needed help to get where we are today. No one is an island and no one is born with all the necessary skills. Period.OK, so you have zero experience and limited skills…my advice in this instance is that you teach yourself some absolute fundamentals.
Let's get this party started.
  •  What is hacking?
Hacking is identifying weakness and vulnerabilities of some system and gaining access with it.
Hacker gets unauthorized access by targeting system while ethical hacker have an official permission in a lawful and legitimate manner to assess the security posture of a target system(s)

 There's some types of hackers, a bit of "terminology".
White hat — ethical hacker.
Black hat — classical hacker, get unauthorized access.
Grey hat — person who gets unauthorized access but reveals the weaknesses to the company.
Script kiddie — person with no technical skills just used pre-made tools.
Hacktivist — person who hacks for some idea and leaves some messages. For example strike against copyright.
  •  Skills required to become ethical hacker.
  1. Curosity anf exploration
  2. Operating System
  3. Fundamentals of Networking
*Note this sites





Read more

Monday, May 4, 2020

BurpSuite Introduction & Installation



What is BurpSuite?
Burp Suite is a Java based Web Penetration Testing framework. It has become an industry standard suite of tools used by information security professionals. Burp Suite helps you identify vulnerabilities and verify attack vectors that are affecting web applications. Because of its popularity and breadth as well as depth of features, we have created this useful page as a collection of Burp Suite knowledge and information.

In its simplest form, Burp Suite can be classified as an Interception Proxy. While browsing their target application, a penetration tester can configure their internet browser to route traffic through the Burp Suite proxy server. Burp Suite then acts as a (sort of) Man In The Middle by capturing and analyzing each request to and from the target web application so that they can be analyzed.











Everyone has their favorite security tools, but when it comes to mobile and web applications I've always found myself looking BurpSuite . It always seems to have everything I need and for folks just getting started with web application testing it can be a challenge putting all of the pieces together. I'm just going to go through the installation to paint a good picture of how to get it up quickly.

BurpSuite is freely available with everything you need to get started and when you're ready to cut the leash, the professional version has some handy tools that can make the whole process a little bit easier. I'll also go through how to install FoxyProxy which makes it much easier to change your proxy setup, but we'll get into that a little later.

Requirements and assumptions:

Mozilla Firefox 3.1 or Later Knowledge of Firefox Add-ons and installation The Java Runtime Environment installed

Download BurpSuite from http://portswigger.net/burp/download.htmland make a note of where you save it.

on for Firefox from   https://addons.mozilla.org/en-US/firefox/addon/foxyproxy-standard/


If this is your first time running the JAR file, it may take a minute or two to load, so be patient and wait.


Video for setup and installation.




You need to install compatible version of java , So that you can run BurpSuite.

More info


Friday, May 1, 2020

ASOIAF: Starks And Lannisters Overview

So.. who's it going to be?

It's probably worth saying that I got into the game fairly easily because my favorite major house in the show is Lannister.  My wife really digs Starks but she has yet to try the game because it looks too nerdy.  Don't worry, it's just a matter of time because I see her eyeing the dinner table that I've fully converted into playing daily games.  It's a good thing that I bought enough stuff to get some variety into the mix so the newer players I'm trying to get into the game can experiment and mix and match units.  Even though I have my favorites, I have probably played at least 40% of my games with Starks because I feel that the best way to learn the game is by playing a lot.

Whenever someone starts with the game, no matter what minis game, I always tell them the same thing:  Go with the aesthetics and look of the faction first above anything else.  With this game, however, I don't think the same principle applies as much in this game because everyone is human (for the most part).  When it comes down to picking a faction, I think one of the things everyone needs to do is examine a bit of their psyche and pick a faction that best aligns with their personality.  It's like picking a color in MTG and understanding that each color represents a bit of your personality.  If you want to go a little bit deeper, picking a faction in this game would be like picking a guild from Ravnica, or even building a character in a D&D campaign.  That is, unless you really really like dogs.  Then I would say just pick Starks and never look back.

Alright, so back to the two starting factions from the Core set.  Since you need this set to play the game and they're the factions with the largest amount of units choices right now, you need to decide if you want to go with House Lannister or House Stark.  Remember what I said about picking the right faction for you, as this will do you big favors because a lot of the game's mechanics are designed around how the houses behave in the books/show whatever.  There's a big chance that if you don't like the houses' personality in the books that you will not like how they play in-game.  It's actually one of my favorite things about the game so far and that's how on-point a lot of book to table translation has been.

Hear me roar!

Alright, let's begin with the Lannisters.  In this game, the Lannisters are the faction that has a lot of panic shenanigans, morale tests, weakens, and counterplots.  Their Tactics cards play heavily with the Crown and Wealth zones on the Tactics Board and controlling those will open up many secondary effects of your cards.  Lannister Commanders come in many shapes and sizes from the destructive and brutal force of The Mountain to the cunning strategist that is Tyrion Lannister (yes, you can take him in combat!).  My favorite Commander for the Lannisters is Tywin Lannister (also my favorite character in the show) because a lot of his Tactics cards and abilities intimidate and Weaken enemy units.  Another Commander that I've tried is Jaimie Lannister because his abilities center around defense, parry, and riposte; turning the opponent's attacks and crappy rolls against them.

When it comes to NCUs or their Tactics cards, the Lannisters focus heavily on debuffing and control elements that limit the opponent's options.  Pycelle's Weaken effect and Cersei's No Confidence are prime examples of debuffing the opponent or making them worse for morale tests, while tactics cards like Counterplot can outright stop an opponent tactics card from going off.  I tried to get some examples of the kind of tactics the Lannisters can employ and I think this lot sums it up pretty nicely.  For the Lannisters, they are all scheming masterminds with several abilities that kicks players while they're down.

Kick 'em while they're down.

As for Lannister units, they are well-supplied and fairly diverse to take on a large breadth of enemies.  The Mountain is its own unit just because he is, Lannister Guardsman are slow with lower attacks but has an excellent defense and a great ability (Lannister Supremacy) that only gets better with attachments, and Lannister Crossbowmen are no joke.  I've recently started playing them and having a unit that just hits units with ranged attacks on a 3+ with Sundering from Long Range is incredible.  Lannisters also have some interesting unique units like Pyromancers that can toss their Wildfire from ranged or in combat and it ignores defense saves while suffering -2 to the defender's Panic tests through Vicious.

While the Lannisters have a solid lineup of units, I would say their strengths come from their debuffs and stopping your opponents from what they want to do more so than just strength of arms.  For that, you want to get into House Stark.  If you're looking for a faction that doesn't care about the subtleties and just wants to beat face, you've come to the right place.

Winter is coming.

When it comes to striking hard and striking fast, Stark is the faction to do it.  One of the many things I enjoy about the core set is that you have two factions that have radically different playstyles.  Just like it is in the books, the Starks and the Lannisters are probably the two houses most different from one another.  While the Lannisters rely on debuffs and abilities that stop your opponents from doing what they intend, Starks are all about battlefield combat and maneuver.  They see an opening and go for the jugular just like the Dire Wolf, their house sigil and in doing so, deliver massive damage to the enemies and leave them reeling.  With Commanders like Robb Stark who can take maneuver warfare to the next level, or Roddrick Cassel and his ability to exploit the Vulnerable enemies, the Starks are the faction you want if you want to destroy the opponent's army rather than play the more drawn-out  game of politics and scheming.

Of course, this doesn't mean that the Stark units or playstyle are just centered around this niche.  With both the Lannisters and the Starks, there will be Commanders and units that will change the regular composition from what you expect from the two factions and that's always a good thing.  For example, on one side, you have the fast-moving and lightly-armored Umber Berserker that has built-in Sundering (-1 to defense saves) and their attacks increase when you lose ranks rather than decrease.  You compare this to the rock-solid Tully Sworn Shields with the Shield Wall ability and good luck trying to break their 3+ defense saves from the front.  This unit variety not only keeps different playstyles fresh and exciting but also gives units legroom to perform depending on the game mode that you play.  Either way, when you think about Starks, their humble foot soldier in the form of Stark Sworn Swords move 5, have excellent morale and rolls 8 dice just because they can.  When you pop Stark Fury on them, they gain +1 to hit and Critical Blows on their attacks (6s deal 2 hits) at the cost of D3 models to your own unit.  If that's not a healthy representation of angry Northmen I don't know what is.

Winter is seriously coming.

When it comes to Tactics cards and NCUs, Stark is pretty straight-forward:  It's all about Combat and Maneuver and taking those zones will be extremely rewarding.  Catelyn Stark can remove a condition from an afflicted unit while buffing them so they're attacking with max dice, and Sansa Stark can instant tutor for any tactics card you need, even if it's a previously discarded card.  That is great tactical flexibility and I have her in almost every single one of my Stark lists.

Well, that's about it for the high-level overview of which armies you will get in the core box.  With so many different commanders, tactics, NCUs, and units to cover, list building deserves its own article.  I'll take you guys through the basics of list building and show you a couple of Lannister and Stark lists tomorrow so you can better grasp some of the things discussed today.

Storium Theory: Get Emotionally Invested

I've finished up my Storium Basics articles, so now, I'd like to take a little time to write about one more thing. This is something that I think is important for anyone playing Storium, or indeed any sort of RPG or storytelling system. Heck, it's important for general writing as well.

You have to let yourself feel.

If you want to tell powerful stories, you have to let yourself feel.

If you want to truly portray your character, you have to let yourself feel.

If you just want to have the best time you can roleplaying, to have an experience you'll remember and look back on fondly, you have to let yourself feel.

Some people can do this really easily. Others, myself included, have a tougher time with it.

I have a tendency to get pretty mechanical when I'm writing, particularly in RPGs, storytelling games, or the like. I find that I distance myself from the events of the story, from the emotional impact of what goes on, in a way that I don't if I'm just watching a movie or reading a book or playing a video game. When I'm not participating in the writing, I can get involved in the emotion of a story easily. But when I'm participating...

When I'm participating, I spend more time thinking about what should happen next, or what I'm going to do, or what cards I'm going to play, or what my strategy should be for the next step, what abilities I want to use, how my tactics will affect my dice rolls...any or all of that, depending on what sort of writing or gaming we're talking about. It's really easy to distance myself from feeling what's happening in the story, and look at things as the basic exercise of writing or gaming rather than the full-fledged emotional experience of a tale.

There's a social aspect, too, though that's less of a concern in a play-by-post sort of game like Storium. But still...I'm not a guy who likes to have his emotions on full display. I'm not that open, really, and so I tend to consciously or unconsciously resist letting myself react to story events emotionally when I'm writing or playing with others.

I've learned that I have to try to break out of that shell.

The best moments I've had in Storium, in tabletop gaming, in online roleplaying, in MUXes, in any kind of collaborative writing experience...those moments have all been when I let my walls drop. Those are the moments I remember most fondly.

The moments when I let the tears come while I read and wrote.

The moments when I felt anger at the deeds of a villain.

The moments when I worried for a hero who had disappeared.

The moments when I dove into my character's mindset and felt the fear he would about the monster lurking in the dark.

It's so very easy to separate ourselves from the tale. Sometimes we do it because we'd be uncomfortable otherwise. In a horror game, for instance, we'll crack jokes or make table talk about the real world, reemphasizing the unreality of the horror. In the midst of a tragedy, we'll have our heroes stand bold and proud, brushing off the sorrow and just going on being heroes. We can't have them break, because someone might think we've broken too.

But I've learned that when I allow myself to feel, when I allow that fear or horror or sadness or pain or joy or hope or dream or love to affect me, and then allow it to affect my writing, I get an experience I can remember, and an experience others can remember as well.

I've learned that I can best write a character who has gone through struggles and pain when I let myself feel the sadness, just as I would if I weren't participating in the writing. I've learned to force myself to treat roleplaying and collaborative storytelling just like watching a movie or reading a book or playing a video game with a great tale - I've learned to drop my guard and let things hit me.

Because when I let things hit me, I let them hit my character, and when I let them hit my character, my character's reactions are more honest, more powerful, more raw and pure. It makes the character feel like a full-fledged person, with hopes and dreams and fears and pain, who is affected by the tale, driven by the tale, pushed to react and to experience emotion and to be changed by those experiences.

For me, it's hard. It's honestly hard. It's so easy to slip back into just thinking, "Well, what should happen next?" or "What card should I use here?" or "What tactic seems best?" or "What would be a cool thing to do?" or "What's my next one-liner?" And look - all of those questions can be, frequently are good things to ask. But not if they separate you from actually feeling. And for me, they can, unless I force myself to into the right mindset. For me, they can, unless I specifically connect myself with the heart of the tale.

This isn't something I can tell you how to do. Everybody's different. Everybody reacts to a story differently. For some of you, this isn't even something you'll have to think about. Some of you are reading this article and thinking, "Wow, I mean, I just get in my character's head and I feel this stuff anyway." And that's great! There are people who can just do that, who can just feel like a character, get in their head, think like they do, and feel like they do. It's something you hear about from great actors all the time, and it's something I've heard from great roleplayers as well.

But if you're like me, and you find yourself thinking clinically about stories, thinking about plot designs, thinking about cards or dice or what-have-you, thinking about character motivations from a distance...I can't tell you how to do it, but I encourage you to try to break that. Think like a reader, think like someone who is experiencing the tale. Don't think what your character should do, feel what your character will do.

If you're like me, that isn't going to be easy, and you aren't going to succeed all the time. But those moments where you do succeed? Those are going to be the moments you remember, the moments you deeply treasure, the moments you look back on years from now and relive in your mind.

When that happens...you see the true treasure that roleplaying, that collaborative storytelling, that writing in general can be. You leave a part of yourself in that story. You become a part of it, and it becomes a part of you. It is a beautiful, wonderful experience.

So...let yourself feel. Open yourself to that experience. Let the story in.




This will be the final weekly article of Storium Theory. I'm not going to say that I'm solidly done, that there will never be another article, but I've said just about everything I can think of to say at present. I've written one hundred and thirty-three articles about Storium, counting this one, and I've written about it since November 2015. That's...probably more than I've written about anything else in my life, ever. And that's not counting my participation in Storium Arc, where I've spent many hours talking about this great system and community as well.

It's amazing to me the level of depth that a system like Storium has turned out to have...the fact that I could find so much to write about it, the fact that I could write for such a long time on it and it alone...that honestly surprised me. When I started this out, I didn't initially set it up on my blog. I was just going to have four or five little articles on a webpage somewhere, just a quick little guide of sorts for new Storium players or narrators.

But Storium was deeper than that. Storium was more than that. Exploring Storium took longer, took more thought, became more interesting to me. I found myself exploring the ways the system could be used, the ways you could use challenges to do interesting things, and that got me thinking about how things could work in my own games or with my own characters, and those fed back into articles here.

Now...again, I can't say I'm done. I'm still playing Storium, and topics will still likely arise. But for now, this is the end of weekly articles, of regularly scheduled articles.

I hope that those of you who have read these have found them useful. I hope that I've helped you get more comfortable with the Storium system, and to learn to use it in creative ways, ways that can enhance your stories and lead to memorable and fun games. I hope that I've helped you get into your characters and explore them more deeply.

But now, as ever, I want to emphasize something: My way to play Storium is not the only way to play Storium. My way to write is not the only way to write. As I close up this post, and with it, the regular Storium Theory articles, I want to encourage you to look not just here, but to the community in general, to other Storium games, to other resources. If you need help, ask for it - the community is willing. If you need examples, look for them among the other games out there. See how things have worked. Explore. And come up with your own methods, your own interesting ways to use the system, your own house rules.

Storium is a simple system in concept, but a deep one at heart. Take the time to get to know it and it will reward you.

May the future bring you friendship, great stories, and treasured memories.