Skip to content

Instantly share code, notes, and snippets.

View qbit's full-sized avatar
🐡
blub blub

Aaron Bieber qbit

🐡
blub blub
View GitHub Profile
@lteo
lteo / calyptix-log4j-active-exploitation.csv
Last active January 7, 2022 17:31
Calyptix Community Shield - Log4j Active Exploitation IPs
ip first_seen_utc last_seen_utc country asn
1.254.66.188 2021-12-23 03:26 2021-12-23 03:26 KR SK Broadband Co Ltd
100.27.42.242 2021-12-23 20:39 2021-12-23 20:39 US AMAZON-AES
100.27.42.243 2022-01-05 03:08 2022-01-05 03:08 US AMAZON-AES
102.130.113.9 2021-12-14 18:43 2021-12-14 18:43 ZA Host-Africa-AS
103.1.212.84 2021-12-26 17:21 2021-12-27 04:21 AU GSL Networks Pty LTD
103.1.212.85 2021-12-24 22:14 2021-12-26 07:34 AU GSL Networks Pty LTD
103.1.212.86 2021-12-27 05:32 2021-12-27 05:32 AU GSL Networks Pty LTD
103.106.243.120 2021-12-24 04:51 2021-12-24 04:51 BD Saddam Hossain ta Asian Network
103.107.196.149 2021-12-15 19:12 2021-12-15 19:12 AU GSL Networks Pty LTD
@m1cr0man
m1cr0man / flake.nix
Last active October 5, 2024 13:18
The simplest Nix Flake for nixos-rebuild
# This can be built with nixos-rebuild --flake .#myhost build
{
description = "the simplest flake for nixos-rebuild";
inputs = {
nixpkgs = {
# Using the nixos-unstable branch specifically, which is the
# closest you can get to following the equivalent channel with flakes.
url = "github:NixOS/nixpkgs/nixos-unstable";
};
@sagehane
sagehane / flake.nix
Last active August 6, 2024 18:21
Nix env for Lenna's Inception
# A simple shell expression for running Lenna's Inception
# Put this in the same directory as the game and run `nix develop`
{
description = "FHS setup for Lenna's Inception";
outputs = { self, nixpkgs }:
let
pkgs = import nixpkgs { inherit system; };
system = "x86_64-linux";