Skip to content

Instantly share code, notes, and snippets.

@ToxicProxy
ToxicProxy / test.ps1
Created November 12, 2020 17:20
test scropt
<#
PowerUp aims to be a clearinghouse of common Windows privilege escalation
vectors that rely on misconfigurations. See README.md for more information.
Author: @harmj0y
License: BSD 3-Clause
Required Dependencies: None
Optional Dependencies: None
#>
@ToxicProxy
ToxicProxy / Wlanpass.py
Created October 1, 2017 19:14
Wifi Passwords
import subprocess
import re
# List of Wlan interfaces connected before/frequently
cmd = subprocess.Popen('netsh wlan show profiles', shell=True, stdout=subprocess.PIPE)
ssids = [];
for line in cmd.stdout:
line = line.strip()
searchObj = re.search( ': ', line, re.M|re.I)
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"math/rand"
"net/http"
@ToxicProxy
ToxicProxy / threat.go
Created September 5, 2017 21:15
threat
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"math/rand"
"net/http"
<?php echo "muh"; ?>