Git Product home page Git Product logo

Comments (12)

thehappydinoa avatar thehappydinoa commented on July 29, 2024 1

@acordeonmorado not yet

from evilginx.

poweroftrue avatar poweroftrue commented on July 29, 2024

Hello @thehappydinoa Evilginx only support Debian right now but you can help us in the experiment docker image here: #45

You should able to run this on any operating system with Docker installed.

from evilginx.

thehappydinoa avatar thehappydinoa commented on July 29, 2024

@poweroftrue Kali-Rolling is Debian...

from evilginx.

acordeonmorado avatar acordeonmorado commented on July 29, 2024

Thehappydinoa, same issue. Any solution?

from evilginx.

acordeonmorado avatar acordeonmorado commented on July 29, 2024

Anybody help?????

from evilginx.

acordeonmorado avatar acordeonmorado commented on July 29, 2024

thehappydinoa. Try another kali distro. It works.

from evilginx.

abdozekaa avatar abdozekaa commented on July 29, 2024

am getting this error too ... waiting for help!

from evilginx.

kgretzky avatar kgretzky commented on July 29, 2024

Evidently /etc/nginx/nginx.conf is having an error and it is failing, what I gather from the error output.
Can you post here the contents of that file?

from evilginx.

MaxGomas avatar MaxGomas commented on July 29, 2024

Hi, same issue, here my /etc/nginx/nginx.conf.

user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;

events {
	worker_connections 768;
	# multi_accept on;
}

http {

	##
	# Basic Settings
	##

	sendfile on;
	tcp_nopush on;
	tcp_nodelay on;
	keepalive_timeout 65;
	types_hash_max_size 2048;
	# server_tokens off;

	# server_names_hash_bucket_size 64;
	# server_name_in_redirect off;

	include /etc/nginx/mime.types;
	default_type application/octet-stream;

	##
	# SSL Settings
	##

	ssl_protocols TLSv1 TLSv1.1 TLSv1.2; # Dropping SSLv3, ref: POODLE
	ssl_prefer_server_ciphers on;

	##
	# Logging Settings
	##

	access_log /var/log/nginx/access.log;
	error_log /var/log/nginx/error.log;

	##
	# Gzip Settings
	##

	gzip on;

	# gzip_vary on;
	# gzip_proxied any;
	# gzip_comp_level 6;
	# gzip_buffers 16 8k;
	# gzip_http_version 1.1;
	# gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;

	##
	# Virtual Host Configs
	##

	include /etc/nginx/conf.d/*.conf;
	include /etc/nginx/sites-enabled/*;
}


#mail {
#	# See sample authentication script at:
#	# http://wiki.nginx.org/ImapAuthenticateWithApachePhpScript
# 
#	# auth_http localhost/auth.php;
#	# pop3_capabilities "TOP" "USER";
#	# imap_capabilities "IMAP4rev1" "UIDPLUS";
# 
#	server {
#		listen     localhost:110;
#		protocol   pop3;
#		proxy      on;
#	}
# 
#	server {
#		listen     localhost:143;
#		protocol   imap;
#		proxy      on;
#	}
#}

from evilginx.

mathieu-aubin avatar mathieu-aubin commented on July 29, 2024

The problem is that /etc/nginx/nginx/modules folder doesn't exist as its normally supposed to be /etc/nginx/modules (which is a symlink to /usr/lib64/nginx/modules -- in redhat-related anyways)

I suggest looking the the file "ngx_http_au" (we can't see the complete filename) in your computer (if anything debian/ubuntu there's a chance it might be located somewhere in /usr/lib/nginx or the likes /usr/lib/nginx/modules )

once you know where the file is, you can:

mkdir -p /etc/nginx/nginx
ln -s /usr/lib/nginx/modules/ /etc/nginx/nginx/modules
nginx -t

if you end up with more garbage, check your nginx.conf and change the loadmodule line if it points somewhere not correct

Hope that helps

from evilginx.

MaxGomas avatar MaxGomas commented on July 29, 2024

from evilginx.

mathieu-aubin avatar mathieu-aubin commented on July 29, 2024

edit your /etc/hosts file (under linux, as admin) and add your ip address followed by whatever domain you'd like.... (add a line to the file, similar to this one but with a ip that works for you)

127.0.0.1 domain.fake www.domain.fake

then change or add a server_name line to your nginx server block

server {
    listen 80;
    listen [::]:443;
    server_name domain.fake;
    server_name www.domain.fake;
    .....
    ......
}

assuming you have all the correct ports open ... trying http://domain.fake in your browser you return to your local nginx server

As for the question -- i have no idea how evlginx works i havnt played with it. I do lots of nginx in general tho..

from evilginx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.