https://github.com/kost/regeorgo
Implementation of regeorg tunnel in golang (victim side).
https://github.com/kost/regeorgo
Last synced: about 2 months ago
JSON representation
Implementation of regeorg tunnel in golang (victim side).
- Host: GitHub
- URL: https://github.com/kost/regeorgo
- Owner: kost
- License: mit
- Created: 2021-11-19T14:59:10.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-19T15:14:46.000Z (over 3 years ago)
- Last Synced: 2025-01-31T06:39:42.633Z (4 months ago)
- Language: Go
- Size: 5.86 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# regeorgo
Implementation of regeorg tunnel in golang (victim side).
### Usage: binary
build binary:
```
git clone https://github.com/kost/regeorgo
cd regeorgo/regeorgo
go get
go build
```run binary:
```
./regeorgo
```it will listen on port 8111 for reGeorgSocksProxy.py to connect to.
### Usage in your code
If you want to embed regeorgo in your code/executable:
```
package mainimport (
"net/http"
"github.com/kost/regeorgo"
)func main() {
// initialize regeorgo
gh := ®eorgo.GeorgHandler{}
gh.InitHandler()// use it as standard handler for http
http.HandleFunc("/regeorgo", gh.RegHandler)
http.ListenAndServe(":8111", nil)
}
```### Requirement
You need to have:
- golang
# License
Distributed under MIT license
# Credits
Initial development of regeorgo in Go by kost.
## Links
- Original regeorg: https://github.com/sensepost/reGeorg
- Improved regeorg: https://github.com/kost/regeorg
- Refactored regeorg (not compatible with this): https://github.com/L-codes/Neo-reGeorg