Skip to content

Instantly share code, notes, and snippets.

@matsubara0507
matsubara0507 / introduction2Pwn.md
Last active May 12, 2024 14:14
楽しいPwn入門

たのしいPwn入門

What is This ?

IGGG Advent Calender 2015のために書いた記事です。
常設CTFで遊んでたらPwnable系の問題を解いてるうちにいろいろと勉強になったのでまとめます。

Pwnable

PwnableとはCTFのジャンルの1つで、プログラムの脆弱性をつき、本来アクセスできないメモリ領域にアクセスして操作し、フラグを取得する感じの問題です。
別名としてExploitがあります。

@galpratama
galpratama / ResponseFormatter.php
Created February 19, 2020 11:18
API Response Formatter
<?php
namespace App\Http\Controllers\API;
class ResponseFormatter
{
protected static $response = [
'meta' => [
'code' => 200,
'status' => 'success',
//
// SignatureAnimation.swift
// OpenSwiftUIAnimations
//
// Created by Amos Gyamfi on 11.5.2024.
//
import SwiftUI
struct SignatureAnimation: View {
@txoof
txoof / Setup.md
Last active May 12, 2024 14:11
Setup Termux on Android

Termux & Macrodroid Setup on Android

Setup termux for ssh, scripts, tasker/macrodroid integration

Install:

Note If secure Google accounts are active on the device, it is not possible to install apps from Fdroid Store

Install The following from the Fdroid Store:

  • Termux
  • Termux:API
  • Termux:Widget
@19WAS85
19WAS85 / powershell-web-server.ps1
Last active May 12, 2024 14:09
A simple web server built with powershell.
# This is a super **SIMPLE** example of how to create a very basic powershell webserver
# 2019-05-18 UPDATE — Created by me and and evalued by @jakobii and the comunity.
# Http Server
$http = [System.Net.HttpListener]::new()
# Hostname and port to listen on
$http.Prefixes.Add("http://localhost:8080/")
# Start the Http Server
@mikolajolszewski
mikolajolszewski / server.R
Created October 26, 2017 08:57
Shiny 3 level drilldown
library(dplyr)
library(shiny)
library(DT)
library(purrr)
shinyServer(function(input, output, session) {
tab_list <- NULL
# Groupped mtcars
@erlend-sh
erlend-sh / fundamentals-of-netizenship.md
Last active May 12, 2024 14:09
Fundamentals of Netizenship (draft)

Fundamentals of Netizenship

Internetting from first principles; what is required to participate as an autonomous citizen of the World Wide Web.

web-fundamentals

Read the web (browser-agent)

Look at stuff on the web; read.

@olnor18
olnor18 / docker-compose.yml
Last active May 12, 2024 14:08
Wireguard docker-compose
version: "2.1"
services:
wireguard:
image: linuxserver/wireguard
container_name: wireguard
cap_add:
- NET_ADMIN
- SYS_MODULE
environment:
- PUID=1000
@vixalien
vixalien / adwaita-tilix-blackbox.md
Created January 15, 2023 18:04
Adwaita (light/dark) color schemes for tilix/blackbox

Adwaita color schemes for Tilix/Blackbox

these schemes try to replicate the default Adwaita color palette as seen in GNOME Console, GNOME Terminal etc.

for tilix place these in ~/.local/share/tilix/schemes for blackbox place these in ~/.local/share/blackbox/schemes

light scheme

save this as Adwaita.json

@politza
politza / scroll-other-window.el
Created July 3, 2016 08:22
scroll-other-window.el
;;; sow.el --- Variable commands for scrolling the other window.
;; Copyright (C) 2016 Andreas Politz
;; Author: Andreas Politz <politza@fh-trier.de>
;; Keywords: extensions, frames
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or