This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nmapFast() { | |
if [[ -z $1 ]] ; then | |
echo "USAGE: nmapFast IP/Domain" | |
return | |
fi | |
item=$1 | |
item2=$(echo -ne $item|tr '/' '_') | |
echo " +++ " |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# XeR | |
readonly HOST="http://ftp.fr.debian.org/"; | |
readonly DIST="unstable"; | |
readonly BASE="${HOST}/debian/dists/${DIST}/main/"; | |
declare -A links | |
links["x86_64"]="/installer-amd64/current/images/cdrom/initrd.gz"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Array.from("PIZZATO").map(c => CHAR_MAP[c][0]).join("") | |
const CHAR_MAP = { | |
"0": ["\u{1d476}", "\u{1d7f6}", "\u{1d6f0}", "\u{1d7e2}", "\u{1d7ec}", "\u{1d512}", "\u{1d442}", "\u{09e6}", "\u{07c0}", "\u{1d40e}", "\u{039f}", "\u{3007}", "\u{1d546}", "\u{ff2f}", "\u{0b66}", "\u{1d67e}", "\u{1d79e}", "\u{0555}", "\u{10516}", "\u{0d20}", "\u{0b20}", "\u{2d54}", "\u{10404}", "\u{118e0}", "\u{1d6b6}", "\u{114d0}", "\u{041e}", "\u{118b5}", "\u{1d72a}", "\u{1d7d8}", "\u{1d4aa}", "\u{1d57a}", "\u{ff10}", "\u{1d616}", "\u{1d764}", "\u{102ab}", "\u{10292}", "\u{1d4de}", "\u{a4f3}", "\u{004f}", "\u{2c9e}", "\u{1d7ce}", "\u{1d5ae}", "\u{1d64a}", "\u{1d5e2}"], | |
"1": ["\u{217c}", "\u{1ee80}", "\u{1d75e}", "\u{1d6ea}", "\u{1d48d}", "\u{1d644}", "\u{ff29}", "\u{10320}", "\u{fe8e}", "\u{2160}", "\u{0661}", "\u{007c}", "\u{0049}", "\u{1d55d}", "\u{1d5a8}", "\u{0196}", "\u{05df}", "\u{2c92}", "\u{1d4f5}", "\u{07ca}", "\u{2d4f}", "\u{0627}", "\u{2223}", "\u{1d43c}", "\u{1d5dc}", "\u{ff4c}", "\u{1d459}", "\u{1d7d9}", "\u{1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const a = Runner.prototype.gameOver ; Runner.prototype.gameOver = () => { Runner.instance_.currentSpeed += Runner.config.ACCELERATION; console.log("Lol ! Actually bypassed obstacle !") ; }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <time.h> | |
#include <string.h> | |
#include <dlfcn.h> | |
#include <sys/ptrace.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <fcntl.h> | |
#include <unistd.h> | |
#include <stdlib.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.tabCompletion": "on", | |
"workbench.useExperimentalGridLayout": true, | |
"editor.cursorStyle": "line-thin", | |
"files.autoSave": "onWindowChange", | |
"explorer.confirmDelete": false, | |
"vim.useSystemClipboard": true, | |
"terminal.integrated.fontFamily": "Monofur Nerd Font", | |
"editor.fontFamily": "Monofur Nerd Font", | |
"editor.fontLigatures": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from pwn import * | |
context.terminal = ["tmux", "splitw", "-h"] | |
exe = context.binary = ELF("./challenge") | |
host = args.HOST or "pwn2-01.play.midnightsunctf.se" | |
port = int(args.PORT or 10002) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Terminal | |
set -g default-terminal "screen-256color" | |
# Vi style keys | |
set -g mode-keys vi | |
bind Enter copy-mode | |
bind P paste-buffer | |
bind-key -T copy-mode-vi 'v' send -X begin-selection | |
bind-key -T copy-mode-vi 'y' send -X copy-selection-and-cancel | |
# No latency |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# @SakiiR | |
from struct import pack | |
import requests | |
import base64 | |
""" | |
00000000: aced 0005 7372 000a 5765 6253 6573 7369 ....sr..WebSessi | |
00000010: 6f6e 0000 0000 0000 0001 0200 044c 000c on...........L.. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ctypes import CDLL | |
libc = CDLL("libc.so.6") | |
now = int(floor(time.time())) | |
libc.srand(now) | |
print(libc.rand()) |