- javascript:alert(1)
- @nJoyneer
- @[email protected]
- @thypon.bsky.social
- https://pompel.me
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
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN" lang="zh-CN"> | |
<head> | |
<script src="escape.js" type="text/javascript" charset="utf-8"></script> | |
<script type="text/javascript" language="javascript" charset="utf-8"> | |
//<![CDATA[ | |
if (escapeHTML(document.url) != document.url) { | |
document.href = "XSS" | |
} | |
//]]> |
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
#lang racket | |
(define *handlers* (list)) | |
(define (push-handler proc) | |
(set! *handlers* (cons proc *handlers*))) | |
(define (pop-handler) | |
(let ((h (car *handlers*))) | |
(set! *handlers* ( cdr *handlers*)) |
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
import lombok.NonNull; | |
import java.lang.reflect.Method; | |
public class Dynamics { | |
@SuppressWarnings("unchecked") | |
public static <T> T send( | |
@NonNull final Class<?> clazz, | |
@NonNull final String method, | |
final Object... args) { |
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
class Shrodinger { | |
static int DEAD = 0; | |
static int ALIVE = 1; | |
int status; | |
} | |
class Main { | |
stativ void main() { | |
Shrodinger cat = new Shrodinger(); |
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
require 'socket' | |
def command(cmd) | |
s = TCPSocket.new 'shmap.9447.plumbing', 9447 | |
data = s.recv(20000) | |
s.puts cmd | |
data = s.gets | |
s.close # close socket when done |
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
package main | |
import ( | |
"flag" | |
"log" | |
"net" | |
"time" | |
"sync" | |
"errors" | |
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
class Proc | |
def self.compose(f, g) | |
lambda { |*args| f[g[*args]] } | |
end | |
def *(g) | |
Proc.compose(self, g.to_proc) | |
end | |
def |(g) |
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 ruby | |
require 'rubygems' | |
require 'gems' | |
require 'json' | |
class Package < Struct.new(:name, :language, :version, :hash, :source, :homepage, :depends) | |
end | |
class Dependencies < Struct.new(:hostmake, :make, :runtime) |
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
// dontfork.c, a little ptrace utility that traces all child process | |
// and exits only when the latest spawned child is dead | |
#include <assert.h> | |
#include <stdio.h> | |
#include <sys/ptrace.h> | |
#include <sys/types.h> | |
#include <sys/wait.h> | |
#include <string.h> | |
#include <linux/ptrace.h> | |
#include <sys/prctl.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
recursivechecksec() { | |
sudo LD_TRACE_LOADED_OBJECTS=1 LD_VERBOSE=1 /lib/ld-linux-x86-64.so.2 $1 | grep "=>" | sed 's|\s*||' | sed 's|(.*)||g' | awk '{print $3}' | sort | uniq | xargs -n1 ls -la | awk '{print $11}' | xargs -n1 echo /usr/lib/ | sed 's|\s*||g' | xargs -n1 checksec --file | |
} |
OlderNewer