Skip to content

Instantly share code, notes, and snippets.

View anhhung04's full-sized avatar
🎯
Focusing

hung hoang anhhung04

🎯
Focusing
  • Ho Chi Minh city
View GitHub Profile
@anhhung04
anhhung04 / description.md
Last active June 27, 2024 14:03
pwndocker

Run container:

docker run -v ./binaries:/pwn/binaries --name pwn_test --cap-add SYS_PTRACE --security-opt seccomp:unconfined -p 23946:23946 -d hah4/pwndocker:latest

Exec container:

docker exec -it pwn_test zsh
FROM ubuntu:latest
RUN apt-get update && apt-get install -y \
curl \
wget \
git \
vim \
nano \
less \
unzip \
@anhhung04
anhhung04 / ddnsserver.py
Created February 27, 2024 03:55 — forked from pklaus/ddnsserver.py
Simple DNS server (UDP and TCP) in Python using dnslib.py
#!/usr/bin/env python
"""
LICENSE http://www.apache.org/licenses/LICENSE-2.0
"""
import argparse
import datetime
import sys
import time
import threading
@anhhung04
anhhung04 / checker.py
Created February 22, 2024 07:41
Demo checker A&D
#!/usr/bin/env python3
import sys
import requests
from checklib import *
from unsafe_notes_lib import *
class Checker(BaseChecker):