Skip to content

Instantly share code, notes, and snippets.

View ducphamluong's full-sized avatar

Duc Pham Luong ducphamluong

View GitHub Profile
@ducphamluong
ducphamluong / reverse-engineering-golang.md
Created April 28, 2026 20:20 — forked from 0xdevalias/reverse-engineering-golang.md
Some notes, tools, and techniques for reverse engineering Golang binaries
@ducphamluong
ducphamluong / bypass_simple_captcha_pytesseract.py
Created November 2, 2023 19:45 — forked from lobstrio/bypass_simple_captcha_pytesseract.py
Bypass a (simple) CAPTCHA with Python3 and pytesseract 🤖
import cv2
from pytesseract import image_to_string
# pip3 install opencv-python
# pip3 install pytesseract
# brew install tesseract
filename = 'lobstr.jpeg'
img = cv2.imread(filename)
gry = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
@ducphamluong
ducphamluong / twitter_scraper.py
Created November 2, 2023 19:45 — forked from lobstrio/twitter_scraper.py
Collect 100 first tweets from any user at any time — and export to a .csv file 🐦
# =============================================================================
# Title: Twitter Users Tweets Scraper
# Language: Python
# Description: This script does scrape the first 100 tweets
# of any Twitter User.
# Author: Sasha Bouloudnine
# Date: 2023-08-08
#
# Usage:
# - Make sure you have the required libraries installed by running: