mirror of
				https://github.com/telekom-security/tpotce.git
				synced 2025-11-03 22:12:53 +00:00 
			
		
		
		
	Finalize qhoneypots config, thanks to @giga-a for native JSON logging! Completely rework T-Pot Landing Page based on Bento (https://github.com/migueravila/Bento). New NGINX image is down by 100MB and only uses 3.3 MB of RAM at runtime. Keep legacy Sensor option (without logstash).
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			227 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Got root?
 | 
						|
myWHOAMI=$(whoami)
 | 
						|
if [ "$myWHOAMI" != "root" ]
 | 
						|
  then
 | 
						|
    echo "Need to run as root ..."
 | 
						|
    exit
 | 
						|
fi
 | 
						|
 | 
						|
openssl req -nodes -x509 -sha512 -newkey rsa:8192 -keyout "nginx.key" -out "nginx.crt" -days 3650
 | 
						|
 |