Skip to content

Instantly share code, notes, and snippets.

Avatar

AG mzpqnxow

View GitHub Profile
View ubiquiti-edgerouter-2fa-vpn.sh
# This could use some cleanup and robustness changes, but it works for me. Modifications are welcome!
# How to setup a Ubiquiti EdgeRouter POE for FreeRADIUS
# Based on
# https://community.ui.com/questions/FreeRADIUS-on-Edgerouter-2-x/6869cef3-aeca-42c3-9081-e69daa44f397
# https://networkjutsu.com/freeradius-with-two-factor-authentication/
# https://wiki.freeradius.org/guide/Getting-Started
# SSH into your router
@mzpqnxow
mzpqnxow / build-smbclient-static.sh
Last active December 8, 2022 17:20
Building lightweight (somewhat statically linked) smbclient executable
View build-smbclient-static.sh
```
# This won't build a *complete* statically linked smbclient exe, but it will do better ... :/
$ ./configure --without-winbind --without-ldap --without-ads --disable-cups --without-quotas --disable-avahi --without-syslog --without-pam --disable-pthreadpool --without-acl-support --without-automount --without-pie --nopyc --nopyo --hostcc=musl-gcc --disable-python --without-ad-dc --disable-fault-handling --without-libunwind --disable-iprint --without-gettext --disable-python --without-json --with-iconv --without-libarchive --with-static-modules=ALL --without-systemd --disable-cephfs --disable-glusterfs --without-ads --without-winbind --without-ldap --disable-cups --disable-iprint --without-pam --disable-avahi --disable-tdb-mutex-locking --without-gpgme --hostcc=musl-gcc CC=musl-gcc LDFLAGS=-static
```
@mzpqnxow
mzpqnxow / kernel-5.10.patch
Created October 23, 2022 23:27 — forked from kyujin-cho/kernel-5.10.patch
MLNX_OFED 4.9-4.1.7.0 on Debian 11
View kernel-5.10.patch
diff -Naur /home/kyujin/mlnx-ofed-patch/mlnx-ofed-kernel-4.9-orig/include/linux/sched/mm.h include/linux/sched/mm.h
--- a/include/linux/sched/mm.h 2021-12-08 23:08:07.000000000 +0900
+++ b/include/linux/sched/mm.h 2022-08-05 17:28:35.539301521 +0900
@@ -35,18 +35,18 @@
#if !defined (HAVE_MMGET_STILL_VALID) && !defined(HAVE_MMGET_STILL_VALID_IN_SCHED_H) && !defined(HAVE_MMGET_STILL_VALID_IN_MM_H)
/*
* This has to be called after a get_task_mm()/mmget_not_zero()
- * followed by taking the mmap_sem for writing before modifying the
+ * followed by taking the mmap_lock for writing before modifying the
* vmas or anything the coredump pretends not to change from under it.
@mzpqnxow
mzpqnxow / filerotator.py
Created October 21, 2022 17:00 — forked from adejones/filerotator.py
Python class and utility for file rotation. Configurable daily, weekly and monthly retention; can use hard links to save space; supports `argparse` config files.
View filerotator.py
#!/usr/bin/env python3
# vim: ft=python ts=4 sw=4 expandtab
#
# Copyright (c) 2013 Reed Kraft-Murphy <reed@reedmurphy.net>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
@mzpqnxow
mzpqnxow / _.md
Created August 1, 2022 14:14 — forked from korniltsev/_.md
C/C++ header to IDA
View _.md

Usage

In IDAPython,

execfile('<path>/cxxparser.py')
parse_file('<path>/a.cpp',[r'-I<path>\LuaJIT-2.0.5\src', '-D__NT__', '-D__X64__', '-D__EA64__'])
parse_file('<path>/malloc.c',['-target=x86_64-linux-gnu'])
@mzpqnxow
mzpqnxow / ActionChainResult.class.java
Last active June 3, 2022 22:25
Diff between decompiled class files for xwork-1.0.3-atlassian-7 and xwork-1.0.3-atlassian-10 (CVE-2022-26134)
View ActionChainResult.class.java
// For context, the full "old" version of the class
// Taken from a decompiled xwork-1.0.3-atlassian-7-m08.jar
// - AG
//
package com.opensymphony.xwork;
import com.opensymphony.xwork.util.OgnlValueStack;
import com.opensymphony.xwork.util.TextParseUtil;
import java.util.HashMap;
import java.util.HashSet;
View bind_interface.patch
diff --git i/conn.go w/conn.go
index ef701c8..f8cfb29 100644
--- i/conn.go
+++ w/conn.go
@@ -5,7 +5,9 @@ import (
"errors"
"io"
"net"
+ "os"
"time"
@mzpqnxow
mzpqnxow / networkmap1.png
Created April 30, 2022 15:07 — forked from adrianmihalko/networkmap1.png
wireguard edgerouter mullvad config
View networkmap1.png
!!!NOT WORKING!!!
configure
set interfaces wireguard wg0 address 10.xx.xxx.253/32
set interfaces wireguard wg0 listen-port 51820
set interfaces wireguard wg0 route-allowed-ips false
set interfaces wireguard wg0 peer JuE+ endpoint mullvadserverip:51820
set interfaces wireguard wg0 peer JuE+ allowed-ips 0.0.0.0/0
@mzpqnxow
mzpqnxow / sources.list
Last active April 30, 2022 13:11
EdgeRouter 1.x firmware APT source configurations (4/2022)
View sources.list
#
# APT Configuration for EdgeRouter/EdgeOS 2.x
#
# Vanilla APT configuration can be problematic since VyattaOS is a fork
# of Debian with enhancements, but is not aggressively kept up to date
# with Debian releases. Not all mirrors have "old" packages and not all
# mirrors have all architectures (e.g. very few have older MIPS architecture
# platforms
#
# - AG
@mzpqnxow
mzpqnxow / idapython_cheatsheet.md
Created April 19, 2022 21:56 — forked from icecr4ck/idapython_cheatsheet.md
Cheatsheet for IDAPython
View idapython_cheatsheet.md