#!/bin/sh # ===================================================================== # Projet : DARKWALL # Fichier : bin/log6 # Auteur : Nicolas "DarkHack" Chapuis (c) 2026 # ================== DARKHACK ================== # [ darkweb.fr - system online ] # Powered by Perplexity, your AI assistant # https://www.perplexity.ai # ============================================== # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ===================================================================== if ! type "shInclude" > /dev/null 2>&1; then racineSh="${racineSh:-/etc/darksh}"; . "$racineSh/lib/shTools"; shDebugEnable="1";fi rootDarkWall="${rootDarkWall:-/etc/darkwall}" [ ! -d "$rootDarkWall" ] && shDebug 0 "exit cause rootDarWall is not dir:$rootDarkWall" && exit 0 shLog="${shLog:-darkwall/bin/log6:}" shDebugEnable=1 log="darkwall-bin-log6" shDebug ""$*"" $(shInclude $rootDarkWall/lib/log6) $(shInclude $rootDarkWall/global/vars) # analyse du parametre d entree case ""$1"" in start) ip6tablesLogStart ;; stop) ip6tablesLogStop ;; restart) ip6tablesLogStop ip6tablesLogStart ;; clear) echo "" > $firewallDrop6Dir/input.log echo "" > $firewallDrop6Dir/output.log echo "" > $firewallDrop6Dir/forward.log ;; *) echo "Usage "$0" {start|stop|restart}" esac exit 0