➜ echo -ne 'CONNECT 127.0.0.1:80//flag HTTP/1.1\r\nHost: gofs.web.jctf.pro\r\n\r\n' | ncat gofs.web.jctf.pro 80
HTTP/1.1 200 OK
Accept-Ranges: bytes
Content-Length: 250
Content-Type: text/plain; charset=utf-8
Last-Modified: Sat, 30 Jan 2021 02:03:41 GMT
Served-By: FileServ v0.0.0b
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
import subprocess | |
import json | |
import sys | |
import requests | |
from pprint import pprint | |
from itertools import product | |
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 | |
__get_random_string () { | |
openssl rand -hex "${1}" | cut -c "1-${1}" | |
} | |
__my_vm='W10' |
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 | |
## arch / manjaro | |
# yay -S neovim python-neovim xsel xclip | |
mkdir "$HOME/.config/nvim" | |
curl 'https://vim-bootstrap.com/generate.vim' --data 'langs=c&langs=go&langs=html&langs=javascript&langs=lua&langs=perl&langs=php&langs=python&langs=ruby&langs=rust&langs=scala&langs=typescript&frameworks=vuejs&theme=dracula&editor=nvim' > "$HOME/.config/nvim/init.vim" |
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
➜ burp.2020.8 sha256sum * | |
18b0c1c41215fd39b2721d60319b0334d945faf3d57e1e1eba320dcb87c92679 burpsuite_pro_linux_v2020_8_1.sh | |
59c91a49504215bef8de7473ff2d03de38e64f49feff50fbd9faf4af33245b60 burpsuite_pro_macos_v2020_8_1.dmg | |
2ed0b526f993c3bd2fd53929ab443bc082e166107d7c034fa7d38f2ebb82026a burpsuite_pro_v2020.8.1.jar | |
641489850636da51f3bfa1d1005d887a70235a419ac5521ba9133103a1e6099d burpsuite_pro_windows-x64_v2020_8_1.exe |
Arris wordlist based on hcxpsktool source code.
use hashcat -a 6 attack mode.
hashcat -m 22000 -a 6 HASH_FILE spectrum.txt '?d?d?d'
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 | |
MIRROR_PREFIX='https://mirrors.ocf.berkeley.edu/manjaro/testing' | |
VBOX_VER='6.1.8' | |
KERNEL_VERSIONS=( $(pacman -Q | egrep -oi "linux[0-9]+ " | tr -d " ") ) | |
EXTRA_URL="$MIRROR_PREFIX/extra/x86_64" | |
COMMUNITY_URL="$MIRROR_PREFIX/community/x86_64" | |
EXTRA_REPO_CONTENT=$(curl "$EXTRA_URL/" ) |
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 | |
line=$(cvt $1 $2 | grep -v '#' | grep -i modeline) | |
$( ${line//Modeline/xrandr --newmode} ) | |
args=( $line ) | |
$( xrandr --addmode Virtual1 ${args[1]} ) | |
$( xrandr --output Virtual1 --mode ${args[1]} ) |
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
➜ aa git:(master) ✗ grep -vxFf full.txt minimal.txt | |
acl | |
midori | |
squashfs-tools | |
➜ aa git:(master) ✗ grep -vxFf minimal.txt full.txt | |
apparmor | |
baobab | |
bauh | |
blueman |