Skip to content

Instantly share code, notes, and snippets.

diff --git a/L2jOne_C6_Interlude/data/html/admin/server_menu.htm b/L2jOne_C6_Interlude/data/html/admin/server_menu.htm
index 1814604..f289e41 100644
--- a/L2jOne_C6_Interlude/data/html/admin/server_menu.htm
+++ b/L2jOne_C6_Interlude/data/html/admin/server_menu.htm
@@ -18,7 +18,7 @@
Reload
<table width=240>
<tr>
- <td><combobox width=160 height=21 var="cb" list=admin;announcement;buylist;config;crest;cw;door;htm;item;multisell;npc;npcwalker;script;skill;teleport;zone;></td>
+ <td><combobox width=160 height=21 var="cb" list=admin;announcement;buylist;config;crest;cw;door;dress;htm;item;multisell;npc;npcwalker;script;skill;teleport;zone;></td>
@Sage-BR
Sage-BR / ddos.conf
Created March 11, 2023 23:23 — forked from mattia-beta/ddos.conf
IPtables DDoS Protection for VPS
### 1: Drop invalid packets ###
/sbin/iptables -t mangle -A PREROUTING -m conntrack --ctstate INVALID -j DROP
### 2: Drop TCP packets that are new and are not SYN ###
/sbin/iptables -t mangle -A PREROUTING -p tcp ! --syn -m conntrack --ctstate NEW -j DROP
### 3: Drop SYN packets with suspicious MSS value ###
/sbin/iptables -t mangle -A PREROUTING -p tcp -m conntrack --ctstate NEW -m tcpmss ! --mss 536:65535 -j DROP
### 4: Block packets with bogus TCP flags ###
@Sage-BR
Sage-BR / InstallSocksServer.md
Created September 5, 2021 13:15 — forked from Leayal/InstallSocksServer.md
Install SOCKs server for Debian/Ubuntu machine. (http://www.inet.no/dante/download.html)

Installation

0. Requirements:

  • make
  • gcc
  • g++

To install those two, you can run apt-get update && apt-get install make gcc g++.

(Alternatively, you can install the package build-essential)

1. Download Danted

@Sage-BR
Sage-BR / ssh-cipher-benchmark.sh
Last active July 19, 2021 03:24 — forked from dlenski/ssh-cipher-benchmark.sh
Check speed of ssh cipher(s) on your system
#!/bin/bash
# Based on: http://www.systutorials.com/5450/improving-sshscp-performance-by-choosing-ciphers/#comment-28725
#
# You should set up PublicKey authentication so that you don't have to type your
# password for every cipher tested.
set -o pipefail
ciphers="$@"