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
0,0,1,112,168,0,0,0,5=28 | |
0,0,110,107,210,1,0,0,4=28 | |
0,0,162,95,77,2,0,0,17=28 | |
0,1,19,7,202,1,0,0,25=28 | |
0,10,105,112,197,1,0,0,5=28 | |
0,10,2,71,71,2,0,0,7=28 | |
0,10,60,6,156,0,0,0,27=28 | |
0,10,78,137,182,0,0,0,5=28 | |
0,100,11,111,9,0,0,0,27=28 | |
0,100,204,223,228,0,0,0,15=28 |
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
#include <stddef.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <string.h> | |
#include <atomic> | |
#include <iostream> | |
#include <thread> | |
#include <vector> |
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
#!/bin/bash | |
# | |
# Author: seadog007 | |
# Date: 2021/01/03 | |
# Description: Adding DHCP Lease & Static ARP & IP Whitelist from phpIPAM | |
# which makes phpIPAM actually managed IPs | |
# | |
ipam='192.168.1.5' |
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
#!/bin/bash | |
# Kong Public Exposed & Unauthorized API Exploit | |
# Using the API to RCE (even the kong is highly possible in container) | |
# | |
# Author: Li-Heng Yu (Jasper Yu) <[email protected]> | |
# Thu April 30, 2020 | |
# MIT License | |
[ $# -ne 3 ] && echo 'Usage: '$0' <Kong API> <Kong Proxy Entry> <Command>' && echo 'Example: ./kong_exploit.sh "192.168.1.2:8001" "192.168.1.2:8000" "whoami"' && exit |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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 python3 | |
# | |
# Google Live Photo extractor | |
# Extracts static photo and video from the live photo taken by Google Camera | |
# | |
# Usage: | |
# $ googlelive_extract.py <image.jpg> | |
# | |
# Creates two new files - image_static.jpg and image_video.mp4 | |
# |
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
function save() { | |
var textToWrite = out; | |
var textFileAsBlob = new Blob([textToWrite], { | |
type: 'text/json' | |
}); | |
var fileNameToSaveAs = "moves-export.json"; | |
var downloadLink = document.getElementById("download"); | |
downloadLink.download = fileNameToSaveAs; | |
downloadLink.innerHTML = ""; |
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
var re = /alt="\(dice20\)"\ rndnum="2"\ \/><[^>]alt="\(dice20\)"\ rndnum="20"\ \/><[^>]*alt="\(bzzz\)"\ rndnum="4"/; | |
var plurk_id = 1358061688; | |
var plurk_owner_id = 9194929; | |
var timer = setInterval(function(){ | |
var rnd = (new Date().getTime()); | |
var content = rnd + '\n(dice20)(dice20)(bzzz)'.repeat(10); | |
jQuery.post("/Responses/add", {qualifier: ':', content: content, p_uid: plurk_owner_id, plurk_id: plurk_id, lang: 'tr_ch', uid: SiteState.getSessionUser().id}, function(data){ | |
m = re.exec(data.object.content); | |
if(m !== null){ | |
console.log('Got it'); |
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
#!/bin/bash | |
token='token_only' | |
disable_preview='True' | |
for i in `seq 1 10` | |
do | |
curl -s https://zeroday.hitcon.org/vulnerability/disclosed/page/$i | grep vu-l-data-titl | tr -d $'\t' | \ | |
while read line | |
do | |
link=`echo $line | grep -oP '<a\ href="\K.*(?=")'` | |
title=`echo $line | grep -oP '<a.*">\K.*(?=</a)'` |
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
/* | |
====================== | |
Author: 海豹 | |
Date: 2017/1/22 | |
Version: 1.0.0.0 | |
Description: Fiddler extension for cracking Taiwan MacDonald Coupon app which is available for both Android and iOS version (´・ω・`) | |
僅供學術使用 請勿用作非法用途 | |
====================== | |
*/ | |
import System; |
NewerOlder