Skip to content

Commit

Permalink
update server formatting and the version
Browse files Browse the repository at this point in the history
  • Loading branch information
ngn13 committed Dec 16, 2024
1 parent 8c988ef commit 55b94c5
Show file tree
Hide file tree
Showing 17 changed files with 1,291 additions and 1,276 deletions.
23 changes: 11 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<img align="left" width="100" height="150" src="assets/venom.png">

# Venom | Free and open source info-stealer
Venom is a free (as in freedom) and open source information stealer
Venom is a free (as in freedom) and open source information stealer
tool targeting x64 Windows 10/11 systems, written in Go.

</br>

> [!CAUTION]
> This software is designed and shared only for educational and
> This software is designed and shared only for educational and
> research purposes. It's is provided without warranty and the
> distribution platform or the developers of the software are not
> responsible for any material, moral or legal damage that may occur
Expand All @@ -23,23 +23,22 @@ tool targeting x64 Windows 10/11 systems, written in Go.
## 🗃️ Features
- Easy setup with Docker
- Web interface over TOR
- Compile time obfuscated builds for unique signatures
- Compile time obfuscated builds for unique signatures
- Anti-VM (Anti-Sandbox) and Anti-Debug features for protection
- Steal browser information (cookies, history data, passwords and credit cards) from popular Chromium-based browsers
- Steal discord account information from popular Chromium-based browsers and the Discord app
- Steal files from the disk
- Display fake error message to trick the user
- Fairly small build sizes (~4MB)
- Multi-language support
* 🇬🇧 English
* 🇹🇷 Turkish
* 🇸🇦 Arabic (thanks to [R3dbust3R](https://github.com/R3dbust3R))
* 🇬🇧 English
* 🇹🇷 Turkish
* 🇸🇦 Arabic (thanks to [R3dbust3R](https://github.com/R3dbust3R))

## 🚀 Setup
## 🚀 Setup
For a minimal setup, the server requirements are:
- Static IP
- At least 512MB memory
- At least a 1 core CPU
- At least a single core CPU
- Docker, you can install it with your distro's package manager

The docker image is a quite big one (~1GB) so this command may take a while:
Expand All @@ -51,13 +50,13 @@ docker run -d -p 80:8082 \
-v $PWD/tor:/var/lib/tor/venom \
ghcr.io/ngn13/venom:latest
```
Then checkout the logs for the server (`docker logs <id>`) to learn the onion
address, so you can access the interface over TOR. Please check out the [docs](docs/advanced.md)
Then checkout the logs for the server (`docker logs <id>`) to learn the onion
address, so you can access the interface over TOR. Please check out the [docs](docs/advanced.md)
for a more advanced setup.

If you are having any problems then [create an issue](https://github.com/ngn13/ezcat/issues/new).

## ❤️ Contribute
If like this project, then please consider contributing! You can do so by
adding new features, fixing bugs, [adding translations](docs/translate.md) or by
adding new features, fixing bugs, [adding translations](docs/translate.md) or by
just leaving a star!
14 changes: 14 additions & 0 deletions server/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SRCS = $(wildcard *.go) $(wildcard */*.go)

all: server

server: $(SRCS)
go build -o $@

format:
gofmt -s -w .

clean:
rm -f server

.PHONY: format clean
Loading

0 comments on commit 55b94c5

Please # to comment.