Labortage CTF 2021 writeup pwn license-one (ghidra edition)
A slightly longer writeup to the license-one challenge containing a lot of basic ghidra foo:
# Edit this configuration file to define what should be installed on | |
# your system. Help is available in the configuration.nix(5) man page | |
# and in the NixOS manual (accessible by running ‘nixos-help’). | |
{ config, pkgs, ... }: | |
{ | |
imports = | |
[ # Include the results of the hardware scan. | |
./hardware-configuration.nix |
{ config, pkgs, ... }: | |
let | |
release = "nixos-21.11"; | |
in { | |
imports = [ | |
(builtins.fetchTarball { | |
# Pick a commit from the branch you are interested in | |
url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/${release}/nixos-mailserver-${release}.tar.gz"; | |
# And set its hash | |
sha256 = "1i56llz037x416bw698v8j6arvv622qc0vsycd20lx3yx8n77n44"; |
A slightly longer writeup to the license-one challenge containing a lot of basic ghidra foo:
You should read this. Actually, you should read all READMEs.
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python3 | |
import itertools | |
import math | |
goallist = [8, 31, 44, 55, 3, 47, 64] | |
combination = [] | |
def quersumme(x): |
starsArray = []Stars | |
starsArray.ImportData("data.csv") | |
starsArray.CalcAllForces() | |
starsArray.Draw("out.png") |