Some notes, tools, and techniques for reverse engineering Golang binaries.
- Dissecting Go Binaries
- Go: Overview of the Compiler
- Go compiler internals: adding a new statement to Go - Part 1
- Go compiler internals: adding a new statement to Go - Part 2
- Reversing GO binaries like a pro
- How a Go Program Compiles down to Machine Code
- Analyzing Golang Executables
- Go Reverse Engineering Tool Kit
- go-internals book
- [Reconstructing Program Semantics from Go Binaries](http://home.in.tum.de/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================================================= | |
| # 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: |