One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# /etc/network/interfaces | |
# | |
auto lo | |
iface lo inet loopback | |
# device: eth0 | |
iface eth0 inet manual | |
# IPv4 bridge | |
# (connect ONLY your firewall/router KVM instance here, this is the WAN device!) |
#!/bin/bash | |
# chmod +x setup.sh && ./setup.sh | |
# [!] only for testing! this is not stable or secure | |
# it takes some hours. | |
# it is available under http://<server-ip>:8080 | |
# | |
# make sure that you run ubuntu 16.04 | |
# you need minimum 25gb (10gb filled with build dependencies) |
I hereby claim:
To claim this, I am signing this object:
<?php | |
// php-reverse-shell - A Reverse Shell implementation in PHP | |
// Copyright (C) 2007 [email protected] | |
// | |
// This tool may be used for legal purposes only. Users take full responsibility | |
// for any actions performed using this tool. The author accepts no liability | |
// for damage caused by this tool. If these terms are not acceptable to you, then | |
// do not use this tool. | |
// | |
// In all other respects the GPL version 2 applies: |
#!/bin/sh | |
set -o errexit | |
set -o nounset | |
IFS=$(printf '\n\t') | |
# Docker Compose | |
sudo wget --output-document=/usr/local/bin/docker-compose "https://github.com/docker/compose/releases/download/$(wget --quiet --output-document=- https://api.github.com/repos/docker/compose/releases/latest | grep --perl-regexp --only-matching '"tag_name": "\K.*?(?=")')/run.sh" | |
sudo chmod +x /usr/local/bin/docker-compose |
#!/bin/bash | |
# created by Mujahed Al-Tahleh [email protected] | |
E_NO_ARGS=65 | |
if [ $# -eq 0 ]; then | |
echo "No arguments provided" | |
echo "Required arguments: 1- web dir name under (/var/www/) 2- linux user 3- website domain name" | |
exit $E_NO_ARGS | |
fi |
#!/bin/bash | |
# Error handling | |
set -e | |
set -o pipefail | |
error_exit() { | |
echo "Error: $1" | |
exit 1 | |
} |
#!/bin/bash | |
# Error handling | |
set -e | |
set -o pipefail | |
error_exit() { | |
echo "Error: $1" | |
exit 1 | |
} |
version: '3' | |
services: | |
elasticsearch: | |
image: elasticsearch:7.6 | |
container_name: elasticsearch | |
environment: | |
- discovery.type=single-node | |
ports: | |
- "127.0.0.1:9200:9200" |