Skip to content

Instantly share code, notes, and snippets.

View eternaleclipse's full-sized avatar
💫
Aim for the heavens!

freakd eternaleclipse

💫
Aim for the heavens!
  • Tyexyas
  • 10:46 (UTC -05:00)
View GitHub Profile
@Oceanswave
Oceanswave / gist:0ba18f598e5482f0572d663699cbf4a1
Last active July 19, 2022 06:05
Tips on configuring OpenWRT chaos_calmer on MR3040 v2 to use extoverlay

The issue is that chaos_calmer default image doesn't have enough storage to hold kmod-fs-ext4 on the MR3040. ug!

This is a good start, https://wiki.openwrt.org/doc/howto/extroot

but there's some other tips here.

So, you've got to use image generator to make a custom image that initially doesn't have luci initially, but does have kmod-fs-ext4.

This is much simpler if you've already configured the router and it's connected to the internet.

@lior5654
lior5654 / solution.py
Created April 9, 2022 21:16
Solution to PlaidCTF 2022 Process Sample | by H4K47L4N1M
# made by H4K47L4N1M | @lior5654
from typing import Text, List
from sage.all import *
# Constants
ALPHABET = "ABCDEFGHIJKLMNOPQRSTUVWXYZ_!?"
INV_ALPHABET = {c: i for i, c in enumerate(ALPHABET)}