Git Product home page Git Product logo

my_wiki's Introduction

mengatasi reverse proxy ssl/https self signed certificate

add this to /etc/nginx/nginx.conf

proxy_ssl_protocols TLSv1.2 TLSv1.3;

proxy_ssl_ciphers DEFAULT;

mengatasi ddos attack

https://www.youtube.com/watch?v=oSTXOsE3vv8

reset iptables

iptables -F

stop paket kosong

iptables -A INPUT -p tcp --tcp-flags ALL NONE -j DROP

stop syn-flood attack

iptables -A INPUT -p tcp ! --syn -m state --state NEW -j DROP

set rules port 80

iptables -I INPUT -p tcp --dport 80 -m state --state NEW -m recent --set

cegah permintaan lebih dari 10 request baru ke server dalam periode waktu 20 detik angka 10 dan 20 dapat diganti sesuai keiinginan dan kemampuan server kalian.

iptables -I INPUT -p tcp --dport 80 -m state --state NEW -m recent --update --seconds 20 --hitcount 10 -j DROP

mount smb to local linux

sudo mount -t cifs -o credentials=~/.credentials //172.1.1.1/backupdata /mnt/movies_share

credentials file

username=target_user_name

password=target_user_password

domain=domain

sudo chown :

sudo chmod 600

my_wiki's People

Contributors

taufiqart avatar

Watchers

 avatar

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.