Skip to content

Instantly share code, notes, and snippets.

View miladhzzzz's full-sized avatar

Milad Hosseini miladhzzzz

View GitHub Profile
The android/meterpreter/reverse_tcp payload is a Java-based Meterpreter that can be used on an
Android device. It is still at an early stage of development, but there are so many things you can
do with it already.
The Android Meterpreter allows you to do things like take remote control the file system, listen to phone calls, retrieve or send SMS messages, geo-locate the user, run post-exploitation modules, etc.
## Vulnerable Application
You can test android/meterpreter/reverse_tcp on these devices:
@miladhzzzz
miladhzzzz / README.md
Created July 2, 2023 19:01
Quick Host using ngrok!

Quick Host Ngrok Tool!

If you want to quickly host a directory on your machine over the internet this will help you!

Usage

# If you dont have / or are not sure if you ngrok use this command
python qhost.py /path/to/directory -i
@miladhzzzz
miladhzzzz / README.md
Last active May 25, 2023 20:38
Golang Boilerplate code generator

go boilerplate project generator

this script will create the following tree:

.
├── cmd
│   └── main.go
├── config
│   └── config.go
├── config.toml
├── Dockerfile
@miladhzzzz
miladhzzzz / application.py
Created December 30, 2022 20:06 — forked from tafaust/application.py
FastAPI singleton service dependency injection across multiple requests
import random
import click
import uvicorn
from fastapi import FastAPI, APIRouter, Depends, Request
# Service
class MySingletonService:
def __init__(self):