From ee3d8e402c44456150a3cc987f83b741957e2251 Mon Sep 17 00:00:00 2001 From: corsaronero Date: Tue, 20 Dec 2022 14:30:30 +0100 Subject: [PATCH] first commit --- Spyc.php | 1178 +++++++++++++++++++++++++ changeKCPW.php | 110 +++ changeKCPW.sh | 2 + changeKCPWaction.php | 19 + connect2Network.php | 14 + connections.csv | 10 + createNodeAService.php | 19 + createNodeAService.php.save | 22 + css/index.css | 171 ++++ css/index_azurro.css | 86 ++ css/kaoscube_graffiti_digitalized.png | Bin 0 -> 8788 bytes css/name_graffiti_digitalized.png | Bin 0 -> 21800 bytes css/password_graffiti_digitalized.png | Bin 0 -> 17364 bytes devices.csv | 7 + freedom.php | 103 +++ index.php | 109 +++ info.php | 239 +++++ info.php_old | 120 +++ locale.yaml | 155 ++++ locale.yaml.save | 189 ++++ onion.php | 188 ++++ ssids.csv | 20 + startserver.sh | 1 + submittedNewEntry.php | 45 + torState.csv | 1 + updateInfo.php | 7 + 26 files changed, 2815 insertions(+) create mode 100644 Spyc.php create mode 100644 changeKCPW.php create mode 100644 changeKCPW.sh create mode 100644 changeKCPWaction.php create mode 100644 connect2Network.php create mode 100644 connections.csv create mode 100644 createNodeAService.php create mode 100644 createNodeAService.php.save create mode 100644 css/index.css create mode 100644 css/index_azurro.css create mode 100644 css/kaoscube_graffiti_digitalized.png create mode 100644 css/name_graffiti_digitalized.png create mode 100644 css/password_graffiti_digitalized.png create mode 100644 devices.csv create mode 100644 freedom.php create mode 100644 index.php create mode 100644 info.php create mode 100644 info.php_old create mode 100644 locale.yaml create mode 100644 locale.yaml.save create mode 100644 onion.php create mode 100644 ssids.csv create mode 100644 startserver.sh create mode 100644 submittedNewEntry.php create mode 100644 torState.csv create mode 100644 updateInfo.php diff --git a/Spyc.php b/Spyc.php new file mode 100644 index 0000000..0965302 --- /dev/null +++ b/Spyc.php @@ -0,0 +1,1178 @@ + + * @author Chris Wanstrath + * @link https://github.com/mustangostang/spyc/ + * @copyright Copyright 2005-2006 Chris Wanstrath, 2006-2011 Vlad Andersen + * @license http://www.opensource.org/licenses/mit-license.php MIT License + * @package Spyc + */ + +if (!function_exists('spyc_load')) { + /** + * Parses YAML to array. + * @param string $string YAML string. + * @return array + */ + function spyc_load ($string) { + return Spyc::YAMLLoadString($string); + } +} + +if (!function_exists('spyc_load_file')) { + /** + * Parses YAML to array. + * @param string $file Path to YAML file. + * @return array + */ + function spyc_load_file ($file) { + return Spyc::YAMLLoad($file); + } +} + +if (!function_exists('spyc_dump')) { + /** + * Dumps array to YAML. + * @param array $data Array. + * @return string + */ + function spyc_dump ($data) { + return Spyc::YAMLDump($data, false, false, true); + } +} + +if (!class_exists('Spyc')) { + +/** + * The Simple PHP YAML Class. + * + * This class can be used to read a YAML file and convert its contents + * into a PHP array. It currently supports a very limited subsection of + * the YAML spec. + * + * Usage: + * + * $Spyc = new Spyc; + * $array = $Spyc->load($file); + * + * or: + * + * $array = Spyc::YAMLLoad($file); + * + * or: + * + * $array = spyc_load_file($file); + * + * @package Spyc + */ +class Spyc { + + // SETTINGS + const REMPTY = "\0\0\0\0\0"; + + /** + * Setting this to true will force YAMLDump to enclose any string value in + * quotes. False by default. + * + * @var bool + */ + public $setting_dump_force_quotes = false; + + /** + * Setting this to true will forse YAMLLoad to use syck_load function when + * possible. False by default. + * @var bool + */ + public $setting_use_syck_is_possible = false; + + /** + * Setting this to true will forse YAMLLoad to use syck_load function when + * possible. False by default. + * @var bool + */ + public $setting_empty_hash_as_object = false; + + + /**#@+ + * @access private + * @var mixed + */ + private $_dumpIndent; + private $_dumpWordWrap; + private $_containsGroupAnchor = false; + private $_containsGroupAlias = false; + private $path; + private $result; + private $LiteralPlaceHolder = '___YAML_Literal_Block___'; + private $SavedGroups = array(); + private $indent; + /** + * Path modifier that should be applied after adding current element. + * @var array + */ + private $delayedPath = array(); + + /**#@+ + * @access public + * @var mixed + */ + public $_nodeId; + +/** + * Load a valid YAML string to Spyc. + * @param string $input + * @return array + */ + public function load ($input) { + return $this->_loadString($input); + } + + /** + * Load a valid YAML file to Spyc. + * @param string $file + * @return array + */ + public function loadFile ($file) { + return $this->_load($file); + } + + /** + * Load YAML into a PHP array statically + * + * The load method, when supplied with a YAML stream (string or file), + * will do its best to convert YAML in a file into a PHP array. Pretty + * simple. + * Usage: + * + * $array = Spyc::YAMLLoad('lucky.yaml'); + * print_r($array); + * + * @access public + * @return array + * @param string $input Path of YAML file or string containing YAML + * @param array set options + */ + public static function YAMLLoad($input, $options = []) { + $Spyc = new Spyc; + foreach ($options as $key => $value) { + if (property_exists($Spyc, $key)) { + $Spyc->$key = $value; + } + } + return $Spyc->_load($input); + } + + /** + * Load a string of YAML into a PHP array statically + * + * The load method, when supplied with a YAML string, will do its best + * to convert YAML in a string into a PHP array. Pretty simple. + * + * Note: use this function if you don't want files from the file system + * loaded and processed as YAML. This is of interest to people concerned + * about security whose input is from a string. + * + * Usage: + * + * $array = Spyc::YAMLLoadString("---\n0: hello world\n"); + * print_r($array); + * + * @access public + * @return array + * @param string $input String containing YAML + * @param array set options + */ + public static function YAMLLoadString($input, $options = []) { + $Spyc = new Spyc; + foreach ($options as $key => $value) { + if (property_exists($Spyc, $key)) { + $Spyc->$key = $value; + } + } + return $Spyc->_loadString($input); + } + + /** + * Dump YAML from PHP array statically + * + * The dump method, when supplied with an array, will do its best + * to convert the array into friendly YAML. Pretty simple. Feel free to + * save the returned string as nothing.yaml and pass it around. + * + * Oh, and you can decide how big the indent is and what the wordwrap + * for folding is. Pretty cool -- just pass in 'false' for either if + * you want to use the default. + * + * Indent's default is 2 spaces, wordwrap's default is 40 characters. And + * you can turn off wordwrap by passing in 0. + * + * @access public + * @return string + * @param array|\stdClass $array PHP array + * @param int $indent Pass in false to use the default, which is 2 + * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40) + * @param bool $no_opening_dashes Do not start YAML file with "---\n" + */ + public static function YAMLDump($array, $indent = false, $wordwrap = false, $no_opening_dashes = false) { + $spyc = new Spyc; + return $spyc->dump($array, $indent, $wordwrap, $no_opening_dashes); + } + + + /** + * Dump PHP array to YAML + * + * The dump method, when supplied with an array, will do its best + * to convert the array into friendly YAML. Pretty simple. Feel free to + * save the returned string as tasteful.yaml and pass it around. + * + * Oh, and you can decide how big the indent is and what the wordwrap + * for folding is. Pretty cool -- just pass in 'false' for either if + * you want to use the default. + * + * Indent's default is 2 spaces, wordwrap's default is 40 characters. And + * you can turn off wordwrap by passing in 0. + * + * @access public + * @return string + * @param array $array PHP array + * @param int $indent Pass in false to use the default, which is 2 + * @param int $wordwrap Pass in 0 for no wordwrap, false for default (40) + */ + public function dump($array,$indent = false,$wordwrap = false, $no_opening_dashes = false) { + // Dumps to some very clean YAML. We'll have to add some more features + // and options soon. And better support for folding. + // New features and options. + if ($indent === false or !is_numeric($indent)) { + $this->_dumpIndent = 2; + } else { + $this->_dumpIndent = $indent; + } + + if ($wordwrap === false or !is_numeric($wordwrap)) { + $this->_dumpWordWrap = 40; + } else { + $this->_dumpWordWrap = $wordwrap; + } + + // New YAML document + $string = ""; + if (!$no_opening_dashes) $string = "---\n"; + + // Start at the base of the array and move through it. + if ($array) { + $array = (array)$array; + $previous_key = -1; + foreach ($array as $key => $value) { + if (!isset($first_key)) $first_key = $key; + $string .= $this->_yamlize($key,$value,0,$previous_key, $first_key, $array); + $previous_key = $key; + } + } + return $string; + } + + /** + * Attempts to convert a key / value array item to YAML + * @access private + * @return string + * @param $key The name of the key + * @param $value The value of the item + * @param $indent The indent of the current node + */ + private function _yamlize($key,$value,$indent, $previous_key = -1, $first_key = 0, $source_array = null) { + if(is_object($value)) $value = (array)$value; + if (is_array($value)) { + if (empty ($value)) + return $this->_dumpNode($key, array(), $indent, $previous_key, $first_key, $source_array); + // It has children. What to do? + // Make it the right kind of item + $string = $this->_dumpNode($key, self::REMPTY, $indent, $previous_key, $first_key, $source_array); + // Add the indent + $indent += $this->_dumpIndent; + // Yamlize the array + $string .= $this->_yamlizeArray($value,$indent); + } elseif (!is_array($value)) { + // It doesn't have children. Yip. + $string = $this->_dumpNode($key, $value, $indent, $previous_key, $first_key, $source_array); + } + return $string; + } + + /** + * Attempts to convert an array to YAML + * @access private + * @return string + * @param $array The array you want to convert + * @param $indent The indent of the current level + */ + private function _yamlizeArray($array,$indent) { + if (is_array($array)) { + $string = ''; + $previous_key = -1; + foreach ($array as $key => $value) { + if (!isset($first_key)) $first_key = $key; + $string .= $this->_yamlize($key, $value, $indent, $previous_key, $first_key, $array); + $previous_key = $key; + } + return $string; + } else { + return false; + } + } + + /** + * Returns YAML from a key and a value + * @access private + * @return string + * @param $key The name of the key + * @param $value The value of the item + * @param $indent The indent of the current node + */ + private function _dumpNode($key, $value, $indent, $previous_key = -1, $first_key = 0, $source_array = null) { + // do some folding here, for blocks + if (is_string ($value) && ((strpos($value,"\n") !== false || strpos($value,": ") !== false || strpos($value,"- ") !== false || + strpos($value,"*") !== false || strpos($value,"#") !== false || strpos($value,"<") !== false || strpos($value,">") !== false || strpos ($value, '%') !== false || strpos ($value, ' ') !== false || + strpos($value,"[") !== false || strpos($value,"]") !== false || strpos($value,"{") !== false || strpos($value,"}") !== false) || strpos($value,"&") !== false || strpos($value, "'") !== false || strpos($value, "!") === 0 || + substr ($value, -1, 1) == ':') + ) { + $value = $this->_doLiteralBlock($value,$indent); + } else { + $value = $this->_doFolding($value,$indent); + } + + if ($value === array()) $value = '[ ]'; + if ($value === "") $value = '""'; + if (self::isTranslationWord($value)) { + $value = $this->_doLiteralBlock($value, $indent); + } + if (trim ($value) != $value) + $value = $this->_doLiteralBlock($value,$indent); + + if (is_bool($value)) { + $value = $value ? "true" : "false"; + } + + if ($value === null) $value = 'null'; + if ($value === "'" . self::REMPTY . "'") $value = null; + + $spaces = str_repeat(' ',$indent); + + //if (is_int($key) && $key - 1 == $previous_key && $first_key===0) { + if (is_array ($source_array) && array_keys($source_array) === range(0, count($source_array) - 1)) { + // It's a sequence + $string = $spaces.'- '.$value."\n"; + } else { + // if ($first_key===0) throw new Exception('Keys are all screwy. The first one was zero, now it\'s "'. $key .'"'); + // It's mapped + if (strpos($key, ":") !== false || strpos($key, "#") !== false) { $key = '"' . $key . '"'; } + $string = rtrim ($spaces.$key.': '.$value)."\n"; + } + return $string; + } + + /** + * Creates a literal block for dumping + * @access private + * @return string + * @param $value + * @param $indent int The value of the indent + */ + private function _doLiteralBlock($value,$indent) { + if ($value === "\n") return '\n'; + if (strpos($value, "\n") === false && strpos($value, "'") === false) { + return sprintf ("'%s'", $value); + } + if (strpos($value, "\n") === false && strpos($value, '"') === false) { + return sprintf ('"%s"', $value); + } + $exploded = explode("\n",$value); + $newValue = '|'; + if (isset($exploded[0]) && ($exploded[0] == "|" || $exploded[0] == "|-" || $exploded[0] == ">")) { + $newValue = $exploded[0]; + unset($exploded[0]); + } + $indent += $this->_dumpIndent; + $spaces = str_repeat(' ',$indent); + foreach ($exploded as $line) { + $line = trim($line); + if (strpos($line, '"') === 0 && strrpos($line, '"') == (strlen($line)-1) || strpos($line, "'") === 0 && strrpos($line, "'") == (strlen($line)-1)) { + $line = substr($line, 1, -1); + } + $newValue .= "\n" . $spaces . ($line); + } + return $newValue; + } + + /** + * Folds a string of text, if necessary + * @access private + * @return string + * @param $value The string you wish to fold + */ + private function _doFolding($value,$indent) { + // Don't do anything if wordwrap is set to 0 + if ($this->_dumpWordWrap !== 0 && is_string ($value) && strlen($value) > $this->_dumpWordWrap) { + $indent += $this->_dumpIndent; + $indent = str_repeat(' ',$indent); + $wrapped = wordwrap($value,$this->_dumpWordWrap,"\n$indent"); + $value = ">\n".$indent.$wrapped; + } else { + if ($this->setting_dump_force_quotes && is_string ($value) && $value !== self::REMPTY) + $value = '"' . $value . '"'; + if (is_numeric($value) && is_string($value)) + $value = '"' . $value . '"'; + } + + + return $value; + } + + private function isTrueWord($value) { + $words = self::getTranslations(array('true', 'on', 'yes', 'y')); + return in_array($value, $words, true); + } + + private function isFalseWord($value) { + $words = self::getTranslations(array('false', 'off', 'no', 'n')); + return in_array($value, $words, true); + } + + private function isNullWord($value) { + $words = self::getTranslations(array('null', '~')); + return in_array($value, $words, true); + } + + private function isTranslationWord($value) { + return ( + self::isTrueWord($value) || + self::isFalseWord($value) || + self::isNullWord($value) + ); + } + + /** + * Coerce a string into a native type + * Reference: http://yaml.org/type/bool.html + * TODO: Use only words from the YAML spec. + * @access private + * @param $value The value to coerce + */ + private function coerceValue(&$value) { + if (self::isTrueWord($value)) { + $value = true; + } else if (self::isFalseWord($value)) { + $value = false; + } else if (self::isNullWord($value)) { + $value = null; + } + } + + /** + * Given a set of words, perform the appropriate translations on them to + * match the YAML 1.1 specification for type coercing. + * @param $words The words to translate + * @access private + */ + private static function getTranslations(array $words) { + $result = array(); + foreach ($words as $i) { + $result = array_merge($result, array(ucfirst($i), strtoupper($i), strtolower($i))); + } + return $result; + } + +// LOADING FUNCTIONS + private function _load($input) { + $Source = $this->loadFromSource($input); + return $this->loadWithSource($Source); + } + + private function _loadString($input) { + $Source = $this->loadFromString($input); + return $this->loadWithSource($Source); + } + + private function loadWithSource($Source) { + if (empty ($Source)) return array(); + if ($this->setting_use_syck_is_possible && function_exists ('syck_load')) { + $array = syck_load (implode ("\n", $Source)); + return is_array($array) ? $array : array(); + } + + $this->path = array(); + $this->result = array(); + + $cnt = count($Source); + for ($i = 0; $i < $cnt; $i++) { + $line = $Source[$i]; + + $this->indent = strlen($line) - strlen(ltrim($line)); + $tempPath = $this->getParentPathByIndent($this->indent); + $line = self::stripIndent($line, $this->indent); + if (self::isComment($line)) continue; + if (self::isEmpty($line)) continue; + $this->path = $tempPath; + + $literalBlockStyle = self::startsLiteralBlock($line); + if ($literalBlockStyle) { + $line = rtrim ($line, $literalBlockStyle . " \n"); + $literalBlock = ''; + $line .= ' '.$this->LiteralPlaceHolder; + $literal_block_indent = strlen($Source[$i+1]) - strlen(ltrim($Source[$i+1])); + while (++$i < $cnt && $this->literalBlockContinues($Source[$i], $this->indent)) { + $literalBlock = $this->addLiteralLine($literalBlock, $Source[$i], $literalBlockStyle, $literal_block_indent); + } + $i--; + } + + // Strip out comments + if (strpos ($line, '#')) { + $line = preg_replace('/\s*#([^"\']+)$/','',$line); + } + + while (++$i < $cnt && self::greedilyNeedNextLine($line)) { + $line = rtrim ($line, " \n\t\r") . ' ' . ltrim ($Source[$i], " \t"); + } + $i--; + + $lineArray = $this->_parseLine($line); + + if ($literalBlockStyle) + $lineArray = $this->revertLiteralPlaceHolder ($lineArray, $literalBlock); + + $this->addArray($lineArray, $this->indent); + + foreach ($this->delayedPath as $indent => $delayedPath) + $this->path[$indent] = $delayedPath; + + $this->delayedPath = array(); + + } + return $this->result; + } + + private function loadFromSource ($input) { + if (!empty($input) && strpos($input, "\n") === false && file_exists($input)) + $input = file_get_contents($input); + + return $this->loadFromString($input); + } + + private function loadFromString ($input) { + $lines = explode("\n",$input); + foreach ($lines as $k => $_) { + $lines[$k] = rtrim ($_, "\r"); + } + return $lines; + } + + /** + * Parses YAML code and returns an array for a node + * @access private + * @return array + * @param string $line A line from the YAML file + */ + private function _parseLine($line) { + if (!$line) return array(); + $line = trim($line); + if (!$line) return array(); + + $array = array(); + + $group = $this->nodeContainsGroup($line); + if ($group) { + $this->addGroup($line, $group); + $line = $this->stripGroup ($line, $group); + } + + if ($this->startsMappedSequence($line)) { + return $this->returnMappedSequence($line); + } + + if ($this->startsMappedValue($line)) { + return $this->returnMappedValue($line); + } + + if ($this->isArrayElement($line)) + return $this->returnArrayElement($line); + + if ($this->isPlainArray($line)) + return $this->returnPlainArray($line); + + return $this->returnKeyValuePair($line); + + } + + /** + * Finds the type of the passed value, returns the value as the new type. + * @access private + * @param string $value + * @return mixed + */ + private function _toType($value) { + if ($value === '') return ""; + + if ($this->setting_empty_hash_as_object && $value === '{}') { + return new stdClass(); + } + + $first_character = $value[0]; + $last_character = substr($value, -1, 1); + + $is_quoted = false; + do { + if (!$value) break; + if ($first_character != '"' && $first_character != "'") break; + if ($last_character != '"' && $last_character != "'") break; + $is_quoted = true; + } while (0); + + if ($is_quoted) { + $value = str_replace('\n', "\n", $value); + if ($first_character == "'") + return strtr(substr ($value, 1, -1), array ('\'\'' => '\'', '\\\''=> '\'')); + return strtr(substr ($value, 1, -1), array ('\\"' => '"', '\\\''=> '\'')); + } + + if (strpos($value, ' #') !== false && !$is_quoted) + $value = preg_replace('/\s+#(.+)$/','',$value); + + if ($first_character == '[' && $last_character == ']') { + // Take out strings sequences and mappings + $innerValue = trim(substr ($value, 1, -1)); + if ($innerValue === '') return array(); + $explode = $this->_inlineEscape($innerValue); + // Propagate value array + $value = array(); + foreach ($explode as $v) { + $value[] = $this->_toType($v); + } + return $value; + } + + if (strpos($value,': ')!==false && $first_character != '{') { + $array = explode(': ',$value); + $key = trim($array[0]); + array_shift($array); + $value = trim(implode(': ',$array)); + $value = $this->_toType($value); + return array($key => $value); + } + + if ($first_character == '{' && $last_character == '}') { + $innerValue = trim(substr ($value, 1, -1)); + if ($innerValue === '') return array(); + // Inline Mapping + // Take out strings sequences and mappings + $explode = $this->_inlineEscape($innerValue); + // Propagate value array + $array = array(); + foreach ($explode as $v) { + $SubArr = $this->_toType($v); + if (empty($SubArr)) continue; + if (is_array ($SubArr)) { + $array[key($SubArr)] = $SubArr[key($SubArr)]; continue; + } + $array[] = $SubArr; + } + return $array; + } + + if ($value == 'null' || $value == 'NULL' || $value == 'Null' || $value == '' || $value == '~') { + return null; + } + + if ( is_numeric($value) && preg_match ('/^(-|)[1-9]+[0-9]*$/', $value) ){ + $intvalue = (int)$value; + if ($intvalue != PHP_INT_MAX && $intvalue != ~PHP_INT_MAX) + $value = $intvalue; + return $value; + } + + if ( is_string($value) && preg_match('/^0[xX][0-9a-fA-F]+$/', $value)) { + // Hexadecimal value. + return hexdec($value); + } + + $this->coerceValue($value); + + if (is_numeric($value)) { + if ($value === '0') return 0; + if (rtrim ($value, 0) === $value) + $value = (float)$value; + return $value; + } + + return $value; + } + + /** + * Used in inlines to check for more inlines or quoted strings + * @access private + * @return array + */ + private function _inlineEscape($inline) { + // There's gotta be a cleaner way to do this... + // While pure sequences seem to be nesting just fine, + // pure mappings and mappings with sequences inside can't go very + // deep. This needs to be fixed. + $seqs = array(); + $maps = array(); + $saved_strings = array(); + $saved_empties = array(); + + // Check for empty strings + $regex = '/("")|(\'\')/'; + if (preg_match_all($regex,$inline,$strings)) { + $saved_empties = $strings[0]; + $inline = preg_replace($regex,'YAMLEmpty',$inline); + } + unset($regex); + + // Check for strings + $regex = '/(?:(")|(?:\'))((?(1)[^"]+|[^\']+))(?(1)"|\')/'; + if (preg_match_all($regex,$inline,$strings)) { + $saved_strings = $strings[0]; + $inline = preg_replace($regex,'YAMLString',$inline); + } + unset($regex); + + // echo $inline; + $i = 0; + do { + + // Check for sequences + while (preg_match('/\[([^{}\[\]]+)\]/U',$inline,$matchseqs)) { + $seqs[] = $matchseqs[0]; + $inline = preg_replace('/\[([^{}\[\]]+)\]/U', ('YAMLSeq' . (count($seqs) - 1) . 's'), $inline, 1); + } + + // Check for mappings + while (preg_match('/{([^\[\]{}]+)}/U',$inline,$matchmaps)) { + $maps[] = $matchmaps[0]; + $inline = preg_replace('/{([^\[\]{}]+)}/U', ('YAMLMap' . (count($maps) - 1) . 's'), $inline, 1); + } + + if ($i++ >= 10) break; + + } while (strpos ($inline, '[') !== false || strpos ($inline, '{') !== false); + + $explode = explode(',',$inline); + $explode = array_map('trim', $explode); + $stringi = 0; $i = 0; + + while (1) { + + // Re-add the sequences + if (!empty($seqs)) { + foreach ($explode as $key => $value) { + if (strpos($value,'YAMLSeq') !== false) { + foreach ($seqs as $seqk => $seq) { + $explode[$key] = str_replace(('YAMLSeq'.$seqk.'s'),$seq,$value); + $value = $explode[$key]; + } + } + } + } + + // Re-add the mappings + if (!empty($maps)) { + foreach ($explode as $key => $value) { + if (strpos($value,'YAMLMap') !== false) { + foreach ($maps as $mapk => $map) { + $explode[$key] = str_replace(('YAMLMap'.$mapk.'s'), $map, $value); + $value = $explode[$key]; + } + } + } + } + + + // Re-add the strings + if (!empty($saved_strings)) { + foreach ($explode as $key => $value) { + while (strpos($value,'YAMLString') !== false) { + $explode[$key] = preg_replace('/YAMLString/',$saved_strings[$stringi],$value, 1); + unset($saved_strings[$stringi]); + ++$stringi; + $value = $explode[$key]; + } + } + } + + + // Re-add the empties + if (!empty($saved_empties)) { + foreach ($explode as $key => $value) { + while (strpos($value,'YAMLEmpty') !== false) { + $explode[$key] = preg_replace('/YAMLEmpty/', '', $value, 1); + $value = $explode[$key]; + } + } + } + + $finished = true; + foreach ($explode as $key => $value) { + if (strpos($value,'YAMLSeq') !== false) { + $finished = false; break; + } + if (strpos($value,'YAMLMap') !== false) { + $finished = false; break; + } + if (strpos($value,'YAMLString') !== false) { + $finished = false; break; + } + if (strpos($value,'YAMLEmpty') !== false) { + $finished = false; break; + } + } + if ($finished) break; + + $i++; + if ($i > 10) + break; // Prevent infinite loops. + } + + + return $explode; + } + + private function literalBlockContinues ($line, $lineIndent) { + if (!trim($line)) return true; + if (strlen($line) - strlen(ltrim($line)) > $lineIndent) return true; + return false; + } + + private function referenceContentsByAlias ($alias) { + do { + if (!isset($this->SavedGroups[$alias])) { echo "Bad group name: $alias."; break; } + $groupPath = $this->SavedGroups[$alias]; + $value = $this->result; + foreach ($groupPath as $k) { + $value = $value[$k]; + } + } while (false); + return $value; + } + + private function addArrayInline ($array, $indent) { + $CommonGroupPath = $this->path; + if (empty ($array)) return false; + + foreach ($array as $k => $_) { + $this->addArray(array($k => $_), $indent); + $this->path = $CommonGroupPath; + } + return true; + } + + private function addArray ($incoming_data, $incoming_indent) { + + // print_r ($incoming_data); + if (count ($incoming_data) > 1) + return $this->addArrayInline ($incoming_data, $incoming_indent); + + $key = key ($incoming_data); + $value = isset($incoming_data[$key]) ? $incoming_data[$key] : null; + if ($key === '__!YAMLZero') $key = '0'; + + if ($incoming_indent == 0 && !$this->_containsGroupAlias && !$this->_containsGroupAnchor) { // Shortcut for root-level values. + if ($key || $key === '' || $key === '0') { + $this->result[$key] = $value; + } else { + $this->result[] = $value; end ($this->result); $key = key ($this->result); + } + $this->path[$incoming_indent] = $key; + return; + } + + + + $history = array(); + // Unfolding inner array tree. + $history[] = $_arr = $this->result; + foreach ($this->path as $k) { + $history[] = $_arr = $_arr[$k]; + } + + if ($this->_containsGroupAlias) { + $value = $this->referenceContentsByAlias($this->_containsGroupAlias); + $this->_containsGroupAlias = false; + } + + + // Adding string or numeric key to the innermost level or $this->arr. + if (is_string($key) && $key == '<<') { + if (!is_array ($_arr)) { $_arr = array (); } + + $_arr = array_merge ($_arr, $value); + } else if ($key || $key === '' || $key === '0') { + if (!is_array ($_arr)) + $_arr = array ($key=>$value); + else + $_arr[$key] = $value; + } else { + if (!is_array ($_arr)) { $_arr = array ($value); $key = 0; } + else { $_arr[] = $value; end ($_arr); $key = key ($_arr); } + } + + $reverse_path = array_reverse($this->path); + $reverse_history = array_reverse ($history); + $reverse_history[0] = $_arr; + $cnt = count($reverse_history) - 1; + for ($i = 0; $i < $cnt; $i++) { + $reverse_history[$i+1][$reverse_path[$i]] = $reverse_history[$i]; + } + $this->result = $reverse_history[$cnt]; + + $this->path[$incoming_indent] = $key; + + if ($this->_containsGroupAnchor) { + $this->SavedGroups[$this->_containsGroupAnchor] = $this->path; + if (is_array ($value)) { + $k = key ($value); + if (!is_int ($k)) { + $this->SavedGroups[$this->_containsGroupAnchor][$incoming_indent + 2] = $k; + } + } + $this->_containsGroupAnchor = false; + } + + } + + private static function startsLiteralBlock ($line) { + $lastChar = substr (trim($line), -1); + if ($lastChar != '>' && $lastChar != '|') return false; + if ($lastChar == '|') return $lastChar; + // HTML tags should not be counted as literal blocks. + if (preg_match ('#<.*?>$#', $line)) return false; + return $lastChar; + } + + private static function greedilyNeedNextLine($line) { + $line = trim ($line); + if (!strlen($line)) return false; + if (substr ($line, -1, 1) == ']') return false; + if ($line[0] == '[') return true; + if (preg_match ('#^[^:]+?:\s*\[#', $line)) return true; + return false; + } + + private function addLiteralLine ($literalBlock, $line, $literalBlockStyle, $indent = -1) { + $line = self::stripIndent($line, $indent); + if ($literalBlockStyle !== '|') { + $line = self::stripIndent($line); + } + $line = rtrim ($line, "\r\n\t ") . "\n"; + if ($literalBlockStyle == '|') { + return $literalBlock . $line; + } + if (strlen($line) == 0) + return rtrim($literalBlock, ' ') . "\n"; + if ($line == "\n" && $literalBlockStyle == '>') { + return rtrim ($literalBlock, " \t") . "\n"; + } + if ($line != "\n") + $line = trim ($line, "\r\n ") . " "; + return $literalBlock . $line; + } + + function revertLiteralPlaceHolder ($lineArray, $literalBlock) { + foreach ($lineArray as $k => $_) { + if (is_array($_)) + $lineArray[$k] = $this->revertLiteralPlaceHolder ($_, $literalBlock); + else if (substr($_, -1 * strlen ($this->LiteralPlaceHolder)) == $this->LiteralPlaceHolder) + $lineArray[$k] = rtrim ($literalBlock, " \r\n"); + } + return $lineArray; + } + + private static function stripIndent ($line, $indent = -1) { + if ($indent == -1) $indent = strlen($line) - strlen(ltrim($line)); + return substr ($line, $indent); + } + + private function getParentPathByIndent ($indent) { + if ($indent == 0) return array(); + $linePath = $this->path; + do { + end($linePath); $lastIndentInParentPath = key($linePath); + if ($indent <= $lastIndentInParentPath) array_pop ($linePath); + } while ($indent <= $lastIndentInParentPath); + return $linePath; + } + + + private function clearBiggerPathValues ($indent) { + + + if ($indent == 0) $this->path = array(); + if (empty ($this->path)) return true; + + foreach ($this->path as $k => $_) { + if ($k > $indent) unset ($this->path[$k]); + } + + return true; + } + + + private static function isComment ($line) { + if (!$line) return false; + if ($line[0] == '#') return true; + if (trim($line, " \r\n\t") == '---') return true; + return false; + } + + private static function isEmpty ($line) { + return (trim ($line) === ''); + } + + + private function isArrayElement ($line) { + if (!$line || !is_scalar($line)) return false; + if (substr($line, 0, 2) != '- ') return false; + if (strlen ($line) > 3) + if (substr($line,0,3) == '---') return false; + + return true; + } + + private function isHashElement ($line) { + return strpos($line, ':'); + } + + private function isLiteral ($line) { + if ($this->isArrayElement($line)) return false; + if ($this->isHashElement($line)) return false; + return true; + } + + + private static function unquote ($value) { + if (!$value) return $value; + if (!is_string($value)) return $value; + if ($value[0] == '\'') return trim ($value, '\''); + if ($value[0] == '"') return trim ($value, '"'); + return $value; + } + + private function startsMappedSequence ($line) { + return (substr($line, 0, 2) == '- ' && substr ($line, -1, 1) == ':'); + } + + private function returnMappedSequence ($line) { + $array = array(); + $key = self::unquote(trim(substr($line,1,-1))); + $array[$key] = array(); + $this->delayedPath = array(strpos ($line, $key) + $this->indent => $key); + return array($array); + } + + private function checkKeysInValue($value) { + if (strchr('[{"\'', $value[0]) === false) { + if (strchr($value, ': ') !== false) { + throw new Exception('Too many keys: '.$value); + } + } + } + + private function returnMappedValue ($line) { + $this->checkKeysInValue($line); + $array = array(); + $key = self::unquote (trim(substr($line,0,-1))); + $array[$key] = ''; + return $array; + } + + private function startsMappedValue ($line) { + return (substr ($line, -1, 1) == ':'); + } + + private function isPlainArray ($line) { + return ($line[0] == '[' && substr ($line, -1, 1) == ']'); + } + + private function returnPlainArray ($line) { + return $this->_toType($line); + } + + private function returnKeyValuePair ($line) { + $array = array(); + $key = ''; + if (strpos ($line, ': ')) { + // It's a key/value pair most likely + // If the key is in double quotes pull it out + if (($line[0] == '"' || $line[0] == "'") && preg_match('/^(["\'](.*)["\'](\s)*:)/',$line,$matches)) { + $value = trim(str_replace($matches[1],'',$line)); + $key = $matches[2]; + } else { + // Do some guesswork as to the key and the value + $explode = explode(': ', $line); + $key = trim(array_shift($explode)); + $value = trim(implode(': ', $explode)); + $this->checkKeysInValue($value); + } + // Set the type of the value. Int, string, etc + $value = $this->_toType($value); + + if ($key === '0') $key = '__!YAMLZero'; + $array[$key] = $value; + } else { + $array = array ($line); + } + return $array; + + } + + + private function returnArrayElement ($line) { + if (strlen($line) <= 1) return array(array()); // Weird %) + $array = array(); + $value = trim(substr($line,1)); + $value = $this->_toType($value); + if ($this->isArrayElement($value)) { + $value = $this->returnArrayElement($value); + } + $array[] = $value; + return $array; + } + + + private function nodeContainsGroup ($line) { + $symbolsForReference = 'A-z0-9_\-'; + if (strpos($line, '&') === false && strpos($line, '*') === false) return false; // Please die fast ;-) + if ($line[0] == '&' && preg_match('/^(&['.$symbolsForReference.']+)/', $line, $matches)) return $matches[1]; + if ($line[0] == '*' && preg_match('/^(\*['.$symbolsForReference.']+)/', $line, $matches)) return $matches[1]; + if (preg_match('/(&['.$symbolsForReference.']+)$/', $line, $matches)) return $matches[1]; + if (preg_match('/(\*['.$symbolsForReference.']+$)/', $line, $matches)) return $matches[1]; + if (preg_match ('#^\s*<<\s*:\s*(\*[^\s]+).*$#', $line, $matches)) return $matches[1]; + return false; + + } + + private function addGroup ($line, $group) { + if ($group[0] == '&') $this->_containsGroupAnchor = substr ($group, 1); + if ($group[0] == '*') $this->_containsGroupAlias = substr ($group, 1); + //print_r ($this->path); + } + + private function stripGroup ($line, $group) { + $line = trim(str_replace($group, '', $line)); + return $line; + } +} +} + +// Enable use of Spyc from command line +// The syntax is the following: php Spyc.php spyc.yaml +do { + if (PHP_SAPI != 'cli') break; + if (empty ($_SERVER['argc']) || $_SERVER['argc'] < 2) break; + if (empty ($_SERVER['PHP_SELF']) || FALSE === strpos ($_SERVER['PHP_SELF'], 'Spyc.php') ) break; + $file = $argv[1]; + echo json_encode (spyc_load_file ($file)); +} while (0); diff --git a/changeKCPW.php b/changeKCPW.php new file mode 100644 index 0000000..de2c649 --- /dev/null +++ b/changeKCPW.php @@ -0,0 +1,110 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+

+
+
+ + +
+
+ + + + +

+

+ + +
+
+ + +



+ + + +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/changeKCPW.sh b/changeKCPW.sh new file mode 100644 index 0000000..139597f --- /dev/null +++ b/changeKCPW.sh @@ -0,0 +1,2 @@ + + diff --git a/changeKCPWaction.php b/changeKCPWaction.php new file mode 100644 index 0000000..5c1ec08 --- /dev/null +++ b/changeKCPWaction.php @@ -0,0 +1,19 @@ + + diff --git a/connect2Network.php b/connect2Network.php new file mode 100644 index 0000000..69de198 --- /dev/null +++ b/connect2Network.php @@ -0,0 +1,14 @@ + + diff --git a/connections.csv b/connections.csv new file mode 100644 index 0000000..1abd699 --- /dev/null +++ b/connections.csv @@ -0,0 +1,10 @@ +NAME UUID TYPE DEVICE +kaoscube 8c19a78b-b803-4c7a-8970-7c7aa09c669b wifi wlan0 +Faber Castell d0870963-4939-406c-9084-bcba2c86376a wifi wlx00e0318cea7d +FRITZ!Box 6430 Cable TL 2e60e1b4-7981-4091-854e-2e54f2991e97 wifi -- +FRITZ!Box 6430 Cable TL 1 2e33ecdd-b76f-4b4f-8137-e65ff76cae61 wifi -- +Ifupdown (wlx00c0caadd9ef) 80b6489a-5e68-1b86-d66f-a73bd4859ae5 ethernet -- +NiDieuNiMaitre 263a7e79-75c8-43a8-aced-28206619522b wifi -- +NiDieuNiMaitre 1 7285a381-8a74-42f3-9009-76e97965f0af wifi -- +Wired connection 1 728a55a8-619a-31ea-9a4b-5267effe2f13 ethernet -- +Wired connection 2 1a899f73-e669-37dd-be08-097bf01e01bc ethernet -- diff --git a/createNodeAService.php b/createNodeAService.php new file mode 100644 index 0000000..5c1ec08 --- /dev/null +++ b/createNodeAService.php @@ -0,0 +1,19 @@ + + diff --git a/createNodeAService.php.save b/createNodeAService.php.save new file mode 100644 index 0000000..191c657 --- /dev/null +++ b/createNodeAService.php.save @@ -0,0 +1,22 @@ + torstate.csv" + +$output = exec($shellcommand); +$output2 = exec($commandAPdown); +$output3 = exec($commandAPup); + +echo _($output3); + +echo _(" oi oi oi "); + +?> + diff --git a/css/index.css b/css/index.css new file mode 100644 index 0000000..8bcf227 --- /dev/null +++ b/css/index.css @@ -0,0 +1,171 @@ + +th, td, tr { + padding: 0.2rem; +} + +th { font-size: 1rem; color: darkgray;} + +th, td { + border: 1px solid gray; +} + +tr { + border: 0px none transparent; +} + +table { + border-collapse: collapse; + border: 0px none transparent; +} + +thead { display:table-header-group; } +tfoot { display:table-footer-group; } + + + +body { + #display: flex; + min-height: 500px; + justify-content: center; + align-items: center; + background: #f8a; + font-weight: 600; + font-size: 1.2em; + font-family: Verdana,"Rockwell",Helvetica,Serif; +} + +input[type="submit"] { + display: block; + font-family: Verdana,"Rockwell",Helvetica,Serif; + font-size: 50px; + width: 220pt; + height: 220pt; + background: #fff; + padding: 10px; + border: 3px; + outline: 2px; + border-radius: 50%; + color: #171717; + transition: all 200ms; + cursor: pointer; +} +input[type="submit"]:focus { + background: transparent; + color: transparent; + border: none; + border-top: solid 3px #f8a; + border-left: solid 3px #fff; + animation: spin 700ms linear infinite; +} +@keyframes spin { + to {transform: rotate(360deg);} +} + +a { + text-decoration: none; + color: black; + width: 220px; + height: 50px; + border: none; + outline: none; + color: #fff; + cursor: pointer; + position: relative; + z-index: 0; + border-radius: 10px; + border-style: solid; +} + +a:before { + content: ''; + background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000); + position: absolute; + top: -2px; + left:-2px; + background-size: 400%; + z-index: -1; + filter: blur(5px); + width: calc(100% + 4px); + height: calc(100% + 4px); + animation: glowing 20s linear infinite; + opacity: 0; + transition: opacity .3s ease-in-out; + border-radius: 10px; +} + +a:active { + color: #000 +} +a:active:after { + background: transparent; +} + +a:hover:before { + opacity: 1; +} + +.a:after { + z-index: -1; + content: ''; + position: absolute; + width: 100%; + height: 100%; + background: #111; + left: 0; + top: 0; + border-radius: 10px; +} + +@keyframes glowing { + 0% { background-position: 0 0; } + 50% { background-position: 400% 0; } + 100% { background-position: 0 0; } +} + + + +input[type="text"] { + background: lightblue; + border: 4pt; + border-color: white; + color: black; + border-style: solid; + height: 50pt; + width: 80vw; + font-size: 45pt; + +} + +input[type="text"]:focus { + background: #f8a; + border: 4pt; + border-color: white; + color: black; + border-style: solid; + height: 50pt; + width: 80vw; + font-size: 40pt; + outline-color: black; +} + +#Connect { + display: flex; + justify-content: center; + align-items: center; + + +} + +#containerdiv { + display: grid; + grid-template-columns: auto auto auto auto auto; + grid-column-gap: 4vw; + justify-content: center; +} + +#containerdiv2 { + display: grid; + grid-template-columns: auto auto; + grid-column-gap: 4vw; + justify-content: center; +} diff --git a/css/index_azurro.css b/css/index_azurro.css new file mode 100644 index 0000000..beb529f --- /dev/null +++ b/css/index_azurro.css @@ -0,0 +1,86 @@ +body { + #display: flex; + min-height: 500px; + justify-content: center; + align-items: center; + background: lightblue; + font-weight: 500; + font-size: 30pt; + font-family: Verdana,"Rockwell",Helvetica,Serif; +} + +input[type="submit"] { + display: block; + font-family: Verdana,"Rockwell",Helvetica,Serif; + font-size: 50px; + width: 220pt; + height: 220pt; + background: #fff; + padding: 10px; + border: 3px; + outline: 2px; + border-radius: 50%; + color: #171717; + transition: all 200ms; + cursor: pointer; +} +input[type="submit"]:focus { + background: transparent; + color: transparent; + border: none; + border-top: solid 3px #f8a; + border-left: solid 3px #fff; + animation: spin 700ms linear infinite; +} +@keyframes spin { + to {transform: rotate(360deg);} +} + +a { + text-decoration: none; + color: black; +} + +input[type="text"] { + background: #f8a; + border: 4pt; + border-color: white; + color: black; + border-style: solid; + height: 50pt; + width: 80vw; + font-size: 55pt; + +} + +input[type="text"]:focus { + background: lightblue; + border: 4pt; + border-color: white; + color: black; + border-style: solid; + height: 50pt; + width: 80vw; + font-size: 45pt; + outline-color: black; +} + +#Connect { + display: flex; + justify-content: center; + align-items: center; + + +} + +#containerdiv { + display: grid; + grid-template-columns: auto auto auto auto; + grid-column-gap: 4vw; +} + +#containerdiv2 { + display: grid; + grid-template-columns: auto auto; + grid-column-gap: 4vw; +} diff --git a/css/kaoscube_graffiti_digitalized.png b/css/kaoscube_graffiti_digitalized.png new file mode 100644 index 0000000000000000000000000000000000000000..814201fc3fa425ada45bb842a6d37a439e39da24 GIT binary patch literal 8788 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 literal 0 HcmV?d00001 diff --git a/css/password_graffiti_digitalized.png b/css/password_graffiti_digitalized.png new file mode 100644 index 0000000000000000000000000000000000000000..43314dc0af2028377fc7a379c49a9231e20a8c9e GIT binary patch literal 17364 zcmeIaS6GzG6F%58L(UQ;%Lq!6Ad>SS0!mg?K=R-L6p$nel0FP%5R3>22!bd`5EYO# zq#*|n3PVPsk{KkY?fLEg@Ahi1_Tun7%G0U3`>nUCtNSaBHa9h3X5eE005D%Tf9?_h zw2}Z&(b3VsnoGU58vvjl-O$xFzo4s&_4f60x#95-0OCm@Nt)*yZ~{#ZHed84Sr)NP z$94TbVI}ACu85y~WPa-NoTKlb$ey>yFZlRy+A^|)N?jGSP4oBn=Ax=&Wit>H)8m#{ z4ZHA0FOIf(Kj7}N&nC-?vZS$Mr9SFPX`Hd7#1#3|*%dBLy5sjH8c(>)m1ZSJ%x-;) zd|Y&wK7Bf5sr&moPGg!astMj){-djEt5dl-exqUupFX{1%iws-b6aP^ps-!0)<;Hl zVfNKUk69+ID!@J{&nxk$U}!)z_21ANzfnaVm51pihaQX|EZ9 zLjL>t4}t#>_z!{q5cm&){}A{Of&cFaWahk~hoi@xEIu*=u)^2G0ZRh%KgZ#(*^4Jo z01%dEsEghoqXl5lf`?M>p1Hqio{9lLS|Wln)XT3S=)-puK(2D?!1Bt#@ZP~qe*iM6 zn^<9a&z0ueQAKqC%u}+U5P%mn|1bo5ALZ15rQ6CJw%I#^FnTq314ZI2Jne=fJsB*4RW;REG@xpwifseajo5K&*u(hR%0zl_%zc;9~3d?}5 z;hh8u;H^TU+yv=b-fU3nIK=_z)FU~T$xuyQ45HM;Z~#O<%d^l%2u;qbh83WR9^fz+ z;anUj)z33kdQfckyg}RD z5O?f(1C-5q0)XhtBaUT6I9VV+>{NIcYKhQVqpng+&jLpg#FXLy*!Z(|BGF$Q8`;(l zw||xjASNE4Y+j;$^K7B)&(rx15VG+y3@!gGWh&}{zbHUz=g{f5199?(CiBbvo9}0_3C1a{DO_COB;4d#Mj-C=lcu-lYm{{2X5!)L zzIZ5=nidcWnRDN~K4OWTJ$~qv#?J^B$_z5a9D0A2c7Du2RhS+;m~$Qu06?XcqFb5M zcFjj8T_%};pX5Y`KN_6)mB|iNhHh&PsTOdW0mlS?sK8&Uc~qcF!OoH=y%1KCh474! zULN)+;JRXScBe&+FR^C$`R){|_$Y1|fa2G1=s0ihmzU$k zmo!jFU~e@FcuZ!pBXcvIxpiEgDX$t-7g5O%dc+)|aZ))tGaw9I!)&LO3*Ft_u_5ku z%q>@ZvBaWPsG($lDBSVzPL|#LQmyr~8_$rKJ*5+8H;Dq7d5}dow0z4hYX~%p$!m4L znEH|c&^UJlg}a`ltQZkm%<}JYlvrYFBBPuOWt+3mAQ3m0PxGHqkQpK8M*TGb;D9^VTSpnf>@cJoWncBG=^jn!>MX}i5uUJ=TylqdU8JwEuP^AUzXTmYXrHKk- zbL#uTN{v_2YUD%{V^80zYRFcRyQ_Nyeb6{sB!vIKrUX zm_h^Ceaz_zuk_yHSN4R5{Mq9h+IF13Hh9rv90j4N0v1V>$^#Sn{okQMK32RUq3?Xq zCtBLcbj7FcwrE2jQMkJEPb%)tu{N5-l&26GS~O{iQ^o5b~ z*&7Jsc)B?M6xR?J)}}DA(($8DeeL7hjuMf{@1V_d&^`xyMB)Q2nmDsS%m$B+gAohL zr|306dMRR)^5TDSh0>aYg0AlT$*lh8lRb|CcsK!BvrM|((~Xo!gc0t&*4jJ%7}x2u zzuMhjvgE1U+t*WJ7`aP7QCQ*8bXCY|{zdA_f&1@KJQg#N}qDmk4y#RupX z>^MMi=4q;%{A4gwU4B%ApaH=2jUP|!op}hNz zguzYdZp!1J#pboB5!n!-K^Va%yhn#7QA%RMzT`gkY+cN5~#ESZS>k z1>$x3#aTkm>bl0v+YE@<%vtx71=}bP<7-Zzn93a1`0zlTtfoXH3HIaJ2r2L!Jb=2y z%BIpfGHLJHv&2s=3vNm+sn~pd_c1ab_OW>?d&8k}L2FtsN(i^5?k9ZaJ*{?;V~b&cL(kq9^3BMS6L zmu(T*03C&R9rx)QTm8FsJbMN-4jQp!p66t>mS%6egoK@kIolY3hAx{e*5tlDwff~2 z>)tIrCKRCUH&5!j*moST5uh6BEU@7L6{9@|MtI+-<8l})o6P0aU!oyYU>JIAFs_ms zSUuFL-}gl>J0wXS6gu41YcUb&x#!b10E%By&Io6LOB*h03@xW+Td$bkT|6xt`nu#z zi15dv5H|*(1VLcS#%8@del^abk;Qvw_*zI+C+$H(=bes=JG0L>ZJz5!SWy8A|0T8F z$kR3!#PI`nqWh3;Xl~n%6OEwrseYY{S{}k>fI#Dw0vv-@4P;r`GYo&?g9`D{R=s!;GElMqS0f0!=(xgTC-8_et`k0vrmmu~7Ek-xqvLUnHjy zvv&_>#*Ftr1s9M=)uP1Qd73pjawZJ#CZGoZw_QZaH+q?r9(UbPpS*6zPx?zGSr{~> zDEU}ol^MvwF6Le$$bJM#PCvGB*+Y%yRAXQH))yDD){|3UqSGKy^yBQaxR(|roZs4&;R-rib6yvTk$sgTNL?4?sJi5 zLSw{O*7ePR8em`|1NB#-jEZXRuOaeA>hjCRuki+ZB#F?bG@uA6 zS}9c(w-|=Wzxb_ZLr&t@ccdStxzHk1BwwU($z#q zdoEp{T_>gJ?6_@T&Kl*_?C!s=W1+`PCVuc7Idt8Kv{Kf}Z@j-p1!${pppnZ>+IYG} zo4PGBZDM74hO$l$p%a^taATJRm3Ie3yLkF{s(=GRDT}sClNdPm%h(*sW;?}EL&}#I4Dko z)=@?M$gF)+#-n14J0|S3!vj_JsT<_=#SbKJD|&!}`e+fGN9Dwy;oQeIqsb3~>aH=z zQG+dQibiATQswc{JI-f45TA1&x1E(L9T4Mf?X#huZ=o_3VUNI=NCtl6D@v^%8%@XF zSp6?GY|hO`h8yvFNebx^6B$$$en-1Pex&DrL={~4MC?;wNz68TtmE$KSI_IL zw}i=LhGYC0@PAvs&li4@QxDw=8(5Z}7kfY3RHV%J6*YL!cBiCk+*zQ5&>tc2T6!Zw zRnoIy>kbnrUZFLYQf%$!jjc`kJ8Do8sxl}P`tH*VPoGTRI#=^9*S=blS@{<4psvQz zg>K3DlJ6dIdS1P} zmNSeOE9VHlKfMk+pB6o++76_upz*WXBSqh_l5jwozkrHNqrP)zAjYo=>+7&Lzo=mv zsiJtxEco^J+f32#o5}4}1qlF4*;q{*gxJTW9QEh{RVD&@rM`kQbv^+d2j ztX*Z5r0MZ%3s+l>EVX@jR~@mF!=G-xo~3Ui?Pqt+uRmp-LpiR3p2j)+b+<9H-!xNj z^?=d^{iI#eYYsJmt%A0XrL7?;>J#hpoJP_!Hx}K~qX(BRvJOR*Bz@SIpBl3+=tNpUKg-F5n-(bBwa=fmihPEYxTk-wy?JUeY*8_uAa^+8&r1v5LgHf$O68r;vI$PMp4oP}?d1l4O_m{6R&q??l9FSVRF0I)tfrm5j@FiPZ?;Ac5 z;vzESvg+)4eSxPv?PZu`=lhAC0L6rYaO++%`R!_#noyw+0L%10j-A}#9^{&6qxrb^ z^JAw+SCn01Se*6#uwQ(FZPp#~&FMZdX zs!orQQ>)!WA??sW%{!9Hyc$_~%&bY{?2mT{Jbe)w@+|RslXb&K-gOJuqP^+iLU9qo zL!w-krN4abDsS4fqz1(~E#6p+9Q?Jqx#1}bRsifHezQn=6gYo%x4CIn;ueo4Zplw} zkvI;yd^g>GWccy{Sr}Smdh6_g!&k(a_C?pyHY*$xo0x-3%F6<;`TmooPD8iVi$5Qw z8h3)Mx_8t#&C1|;!dB0nMDE)LxfK~clD!@G{*?CnrQVffzqQBC z9qN6b7Z!9Y7MGRg1$O)3b*G5~?)C54V=6OoW*>$W(18!D7svitbdERJOy(mmzYBW7 z0r=ph3t{Hv9LIeuQ4`v$)EbZp?NGMj=wG6pd}X)R_+czZKyR@3=?m}~hW(&W;*-id zE84Dh-L)A<_N;D$N@7m1qx6mVNRQTzNL(%UAL1h z=upPjd(HVD^CS1wtjG7{_%YKt%lo`MG{^0 zaoV*`^f*Zv2_hQQVn`Y-R{4gA+U7?U^*;UA8K3_Caz(B~o6V%tM=?xDon5NEr`x%A zU*ob!QGD*Q=dClux}Dh)pMN}1ly?{08-P^RmU@2fp7f|%=kMOpFxBb|wvreVrnU0& zx0QdTi@Hy_?uBumS&+`s@z``@^+Y?47{)7hF!>6)>29-Qk3+U2_gVUQmc~#yDo$%@ z9`?$nC4EQd$&@!0x+a~IfC2BB^rhut+-jeXv3i=qvYSYwPMYdXs&7YcHkOB$X;~Pd zSDwJHY1nM~^fh9~nWs3R;E8jDKm8o7dz`SRdTN4p2{jvhh$Lj$hSRMW zvV^$kBBMUVv0IoAWS#Sp-HZ4jJN3J^r&Non=m>CLww%+sp<%c88^7{I`*q?UGpzny zc=K%QrOkLu@WbG%Ctv)03sSe>^QkcRg$3EZ--fc_r(D{vG?# zm?wun=>l%rhGNPeLKDCpNuQ=SPUJ`AXFgbewu^F#qMhQIQgM&tUM2mXT!14Wfx@Bd zlHOboAD5MOQf1yRRi+ladOzUDvF5&LdD41f*$eqX)D}E@0is5Hsg0BF4TAEx43YgR~~7S9Y`Dofzfov}xVkn~9X!(k0gdNvVm zo0n`7qPbQIqU%CDvVa%*cF@v_n$}VhCRnwrc_HPA%~|V}JkNCF?jkdAq*V)sOouzM z_QJ2U+u}JcM}vt+9T-8cibyl|`;g~fx1#7QIh+Ss5KZ?kpVH`W_eRqviWhg9dY`rU zlaB$)CEtANScoj6C#e>`&UIom&ZH+42nn3AGFxhE=qtP3T?>ZcL<^D~%hK0GZgFY^ zA%F6RaK=}!ub~q25o5(fUBlC~n1|3!V*4iiMXN(q4BzBdgGtS{6uj-<6nUKj>)Mht zG9G=Y&WXBU+<Xp5qv+<~z#d`iQa z3KUaowRy&(I0##4QX{mD#8&Z8FBb9e4ANAa{JXdltMZMS@qN~>o$pXpy13h`QUNW> z3qWygrsWTeooW<1@j;yx#;pSm6<4{+TW9Zj*G45%;Xp^DM4i~7TM!dHa61kKydx<( z^cOHiUmS2;)>K9jl>y->Ji)NXBCVST#cjgoEXJ)%NxKX8YM-y2|C*-VSnJ+@Y_YH1 zLI5GrMp4XGKz62kNBMEpMl(i+)^2|ApyL38hnuR*9tz|r>-!rdolJTCtJ%6v$NONeq4 zGeP2;N2dR%_}=2E;MID+l4!YoH>nOWd*?m!=9B^WmvRYIj2B~^>DW|P{vumFpb|Mt zWOf{FR8w@;=*V2&FOkmIcrC$-R-imy0eUiKI-PX#?!ocf=Jgf&H9c$nOeC-MyZ$^*>t`S#_$R~8=EEZe1d zEQ!J(tq$IlZaLS@8+%6HnZYY%5UgAsGMM^hi5Eutb%T8`Y2=Rp66KXgON6j1;R|0C zyP)#2CuXWD z=C(rxCqDfpS$*$j*_%3z?`9^710(1;ajSvr{-&PXh2vC&;KMeJiOu3|p0XqshGya> z@!DXO&d=n{^?G0nFLWTE@poXII~sTARn5-)clXzW)wlQj5BRK7$>-je5NzLvpePDo zxm%}n&%8^-r_UhshZ&1Ukf_Rumw5yRo5cLm*i3 zscm+!!>JkjKi%hrwkm~{JnQ*|`UZGt@oWeq#p^^_{2g<)04<5N#0M49^_ne3vr%`f z0*S+a5Oz5*V*+F-agk$)Q&>~&7i&O%I3KyYs?sQjR2)N8AZx)7@!uIEQPhOq$zjukv3!w5H%Ih8YLC{!uHY?2WfTFhwRq^(UJ>K3vDU>Ys};fV;6 zaHk0fGy94Jhi{C1r(u!$X!-xVj)Hs14hMiB$x{CJAEG}8l7=Zp#^9n0#XotRC(5cE z+NRdrSBW!FYb@)unyUV?s1R2<9g8tVEpU>X(bCidmOT~CXfoS&xyhO6+QT_)nkY<;ZC2RYNVjp2TB7xzJ}qh?TOMOkI%m9S>E`M!pT zlHIMxUl;&=KsHqH>ziKD0lLe3B!_iZW_R{tE$h>fRu1^(6xR|VbWemb{1Dss!Rqtc zoza6;d&Nk?!MZ__Jcm`KD^oWOsJH=%U}>NG$DqM|e=9{Br-f4O9yq`1W}* z2cCzGr09C5tI5|5#_VjXD=#j@gJ*9q(vPFT!idec1=%shO3uAnp)xl=w;Jr`wL32N zcU>P<7VZ;9>2MeMo&&J!FDc`8`;|f7XBKZ4KJEDd0p4tJXS{8r3XXmmeok*2v_^bN z?s<0P2AmksVDULWsW{%D?&or?w#VIMzGPrCj|r2WXm11q1L9^BCymKR+mhaHDkR|9o4W~M-NOO+-p+EJbT{qw!Z3IC>n{@y zOW}Je&H}8Hjzx{OsI0$~1AB8>c6cYIX!& z1t(lDkJ~tNYqY#TDPu!~aBZo~VL~G&(d_DO<>@|fA`|wI2}!RVtxD#1KgHhURKV2; zy50!LRgxpert%bLxq$r)<&*Huohwm2Cxq{BTiVv=2k{5T(Yp#Zww+x3xnT^-Qz0pT zeEVH-n`|8ylT@{K)w9M_S*oelk0(g9Ix2eJul4+_T9+wcSb>Z*k8Bs+T=`-)bE+-$ zpYDlQ>xhPK9M9tdIrSJ~vcKz6u`H-Mm(7l=KOb-Ps*iT2C-~%BYkHFGAMctdqlH&s z1sW4TYW7a7-&>p5{-CDM_ri)lioQ{#oCEYE!j;(Gtx(qs&wyE~6+7iGJDb9^{GG?N zX!;)RA6wuj@?(#~@hu_W&7*#`ZTVY&?LX(}fLVB+UfsqkTvmU80@~1&AyMm+R^%^j$MZUoAg6M0Ux~BIQ)BXMn9f6odrb zup*|X%5c6#1-W$ZYd5^Y!cXvtIMmzft-+_!JTI*$6!4SyC|#DudWEm}pWozWyULVG zvM$`vBGlX%qdC7k!Um97r+*oL8f#c`$>dGunmgI!3*@OYQhYoF9lHx&8-NWHP(E@C z+7a$p=~n4=DK*K<$uG~(U-)$_;7)hPGgs0)zUyV6PGNKidi+AD0SwyeJjiiEhd#e( zcBzUtHTdbZL{gpskVEk>NV34N7piY7*R`p9m5LhPBR!_HS$A*DtYgRIv>l}Z+Y@N4vC0#|ZPUGc0U>*8 zO^h>CiKXczv*rlxu^QMF5g}~|1nQuFzw?>-cqHjnwR;xZJcE7`;9E9$&pGP|~L)gGyAM)Mn{`;+S zNB+v+7;KDa_fwM+s4-Gv7dzG`2zfr#UZSUOOdXbF& zku29+Pv!26yg_-SfseB78!mEv$1TmHmQxw;Id{}JkG$dzN(_7;<$jxoHHdz~+7?qV z4TS-4$D##uFhfg!FTUZn=x2>x#W7TIIQm4n)L?3p<+`oT5ksxt9}RaOEA|JOR=v4? zfNl6D5T7w}>_Itq85pYKg&!1j{07(`;29UHfk$WUjLFk8L;F$gYl5n*plrw_n|(a# z1Yf3PXIoA8pJ4e>Ah?!jvHNA_`e-uP79W?_Y%hbtlb&Q)Jy~ zN<^1*x-PB`D2Nvc8ci{3iQq0$2=Ue7vvruY0FnQEO-3ia`$5G+Ce>B(Jr6EC@z{^G zs#oFK{D6A}&SbtQJkP$Z=5^(oF7_+fy|O1@m|*zwi)t_n@(nV_aV%%BX=nJ+lUaP9 zMxba{)BUXyeI3(<3YCm(_W5D0?@~W9sjQ5lv5-PqMOZrx=Q$cVaRtHjq+Si!;_XA_ z7DE3;J2tf~uwG+@mn+eC@j`F;Kv5$ie{ML{a;lLYKXl-vokg@4Ne3+Vl&OFdhkLZ| zn9(Kw$@@MfT8(swChb&XI=#0g)%h;Umoc>%?tX`38T&heFMkG?cywis9b1-vpi#d= z3*0DfMrHb4?&Q`~hU*PJKjE5?TWVdcr~B|n_@*3vjbN^Qxf^&^%QleR6eUoX78RT3 zr(D2$w6UIZcVcW0Fa0RWGw5LmJo*x0^nkE%%5?}{e>`$z&pNUKQ*c+QSAhmWLsSU= z3{sgLPcFy>YjxMJR{SBqC{=Wn%6rYRI|3aJ3XUYqb4pKGI8wX2&L%T=yD%eZq*4@E zk%uD#;aqZ*3nLYKhhq0yqoE$Q7O@hHxjonTkPVlQv46gqZ zj{?J#V}H{;PA+Wf_D>rIhG@cEi0GVOc-77B9kROj;uX;I0+KY?>s}}|I5^E7He!35)VJ+DnZXyC(SHpCw(i5E zg$1K`jEnXuHj2a+jkEFcJ${!YLL<5#rm?2A141pFcf$UeZOz7|xc72bXXN^|Xz>}h zN)#FuR16AC05Uepj3VT4o13t!Gz{9**6K8`nJtv673Ny$+f#4IgWu5L96NJv*sr)2 zN1p9in^fvJzVd4!g*t=&PV)d~b4$L4GQf#J&AQuuFMjx2SmD&il8{~As6Y~bm<5wa z(WfG3859AxkQ(kAg!^ zU6(8XUQfzol^Lsi=NKBS@IqwOE=CO~6B}%EvJ;7Iq?8GM+%2XqA2^T|XUQO^N@iX= zA=YRw^%XTmtlT`b{wv>NfkIX&Y$?e7&Hl2U^&S3Jj2EbQweL{F1Yl^0qm?;WNu6On zGU*-T0|HBe87Jw$J~S%x*LWsza-yvMJ04m`=Pr(4n-Y^Aw8#sngFNGs@FmUwwo1?v zzpNdU3o|N7M%nDh2ivVb#!qQMB6oX3988OVF*Cr0#=vyb{;A7rO^1gf3P~trgCe2j zQO1G-Ou*gI%PW<(0{vVEh=&HUq!U*HMAIvrpN#l>qhzKy*1> z64wCmb;_C!>rKXhy$*gDTwP&+S34|43@0dln1MA&z<`!V(Jwemo#}wL5aoP-F8&rK z;k9cd3SGT%sVyJwlolw618flrBr^85aJ_?xF^LE;&!}f2^8%cf@!Me^KA4W#N(VH> zJFt-`Fjar9_2fG_XyXZEaHH3=GSPsLKSRBpGjjqa?@}WXdsG!w)Bq>b(Pis*G(-j< zlN5$r&m_Q(hFqxxUpIi&fIwm;A8|pesxpbz-~-~boiHsFB~b`7k8>~lucj65>3SB< zBBP!Grv1J_A)*vH=iWd$0LsWb0ymWSs0?P!Cek*9-7rUklN2Q%5&sNj7(HcIm4~^@ z5O(jB`!IQ`VjD^DK88~2*8YFt72y!)&Mx(I!Qf~X(*8g>{}xU`60oa+^V054E!HdmE3{~=1v|aMAfK|1#-;s&lDe0s z8eu0j;P&U-k=6=kfNef^3-)=B0S9u2YBulWA)d5r7eYnLXh0$fatwIOb+#?P{|5!m zFHx|yI#)_|xM>CRlmF*SC{>Qi+VPMZkk@6BVHUM$Al?QI3I3eRxj+xF18~Q{v9!zU z$_HyGWrxzDlIL7{shR=cCLm@22Lw}|-@HuuN33YdloR=b1(#FNz|Hs!d@}%v1~U;k zYMgN0=U@qG{G@p5C(OZ26i34%CwsNi`z1)eheu#3GcT&sa9tFD6EIa70F!fWRv+Xc z>fuzdH)Xs@ literal 0 HcmV?d00001 diff --git a/devices.csv b/devices.csv new file mode 100644 index 0000000..5f9afd1 --- /dev/null +++ b/devices.csv @@ -0,0 +1,7 @@ +DEVICE TYPE STATE CONNECTION +wlan0 wifi connected kaoscube +wlx00e0318cea7d wifi connected Faber Castell +p2p-dev-wlan0 wifi-p2p disconnected -- +p2p-dev-wlx00e0318cea7d wifi-p2p disconnected -- +eth0 ethernet unavailable -- +lo loopback unmanaged -- diff --git a/freedom.php b/freedom.php new file mode 100644 index 0000000..d470c00 --- /dev/null +++ b/freedom.php @@ -0,0 +1,103 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+

+
+
+ + +





+
+ "> + "> +
+ + +




+ + + +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/index.php b/index.php new file mode 100644 index 0000000..564f341 --- /dev/null +++ b/index.php @@ -0,0 +1,109 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+

+
+
+ + + +





+
+
+
+
+
+

+

+

+





+ +
+ +
+




+ +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/info.php b/info.php new file mode 100644 index 0000000..15ba8bd --- /dev/null +++ b/info.php @@ -0,0 +1,239 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+

+
+
+ + + connections.csv"; + +$output = shell_exec($shellcommand2); + +?> +





+
+ + + + + + + + + +"; + $col = preg_split( '/\s{2,}/', $row, -1, PREG_SPLIT_NO_EMPTY ); + // var_dump( preg_split( '/\s{2,}/', $row ) ); + $n = 0; + $id = 'oi'; + foreach ($col as $c) + { + $n+=1; + echo ""; + if ($n==1) + { + $id=substr($c, 0, -1); + } + } + echo ""; + } + + // (C) CLOSE CSV FILE + fclose($stream); +?>
$c
+
+ +



+ + devices.csv"; + +$output = shell_exec($shellcommand3); + +?> +





+
+ + + + + + + + + +"; + $col = preg_split( '/\s{2,}/', $row, -1, PREG_SPLIT_NO_EMPTY ); + // var_dump( preg_split( '/\s{2,}/', $row ) ); + $n = 0; + $id = 'oi'; + foreach ($col as $c) + { + $n+=1; + echo ""; + if ($n==1) + { + $id=substr($c, 0, -1); + } + } + echo ""; + } + + // (C) CLOSE CSV FILE + fclose($stream); +?>
$c
+
+ +



+ + ssids.csv"; + +$output = shell_exec($shellcommand2); + +?> +
+ + + + + + + + + +"; + $col = preg_split( '/:/', $row, -1, PREG_SPLIT_NO_EMPTY ); + // var_dump( preg_split( '/\s{2,}/', $row ) ); + $n = 0; + $id = 'oi'; + foreach ($col as $c) + { + $n+=1; + echo ""; + if ($n==1) + { + $id=substr($c, 0, -1); + } + } + echo ""; + } + + // (C) CLOSE CSV FILE + fclose($stream); +?>
SSIDRATEBARSSEC
$c
+
+ +



+ + + + + +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/info.php_old b/info.php_old new file mode 100644 index 0000000..a70b815 --- /dev/null +++ b/info.php_old @@ -0,0 +1,120 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+
+
+ + connections.csv"; + +$output = shell_exec($shellcommand2); + +?> +





+
+ + + + + + + +"; + $col = preg_split( '/\s{2,}/', $row, -1, PREG_SPLIT_NO_EMPTY ); + // var_dump( preg_split( '/\s{2,}/', $row ) ); + $n = 0; + $id = 'oi'; + foreach ($col as $c) + { + $n+=1; + echo ""; + if ($n==1) + { + $id=substr($c, 0, -1); + } + } + echo ""; + } + + // (C) CLOSE CSV FILE + fclose($stream); +?>
$c
+
+ +



+ + + +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/locale.yaml b/locale.yaml new file mode 100644 index 0000000..63ef7b8 --- /dev/null +++ b/locale.yaml @@ -0,0 +1,155 @@ +# Verpflegungsmehraufwandsformular wikimedia Deutschland + +title: + de-DE: Cyber Conscious Production - Bewusste Produktion via Cyberspace + en-US: Cyber Conscious Production - Conscious Production via Cyberspace +inputSite_header: + de-DE: Erstelle einen ID Schlüssel für ein neues Objekt + en-US: Generate an ID key for a new object +inputSite_title_subtext_1: + de-DE: Die angehängten Bilder oder Dokumente werden auf der Seite angezeigt, die der BarCode darstellt + en-US: The uploaded Pictures or Documents will be displayed on the website, which is represented by the barcode. +newEntry: + de-DE: Neuer Eintrag + en-US: New Entry +existingEntries: + de-DE: gespeicherte Einträge + en-US: existing Entries +genetikx: + de-DE: Genetik + en-US: Genetics +time: + de-DE: Zeit + en-US: Time +locality: + de-DE: Ort + en-US: Locality +uploads: + de-DE: Fotos / Dokumente + en-US: Photos / documents +form_3_timeword_1: + de-DE: um + en-US: at +form_3_timeword_2: + de-DE: Uhr + en-US: o'clock +form_4_header: + de-DE: Abfahrtsort + en-US: Place of departure +form_4_placeholder_1: + de-DE: Wohnort + en-US: Home +form_4_placeholder_2: + de-DE: Arbeitsstätte + en-US: Office +form_4_placeholder_3: + de-DE: sonstiger Ort + en-US: other location +form_4_placeholder_4: + de-DE: Anschrift aufführen + en-US: other location +form_5_header: + de-DE: Zielland + en-US: Country of destination +form_5_question_description: + de-DE: Bei Reisen ins Ausland können andere Tagessätze gelten. + en-US: Different per diem rates may apply when traveling abroad. +form_6_header: + de-DE: Reiseende + en-US: Return date and time +form_6_timeword_1: + de-DE: um + en-US: at +form_6_timeword_2: + de-DE: Uhr + en-US: o'clock +form_7_header: + de-DE: Ort des Reiseendes + en-US: Destination at the end of your journey +form_7_placeholder_1: + de-DE: wie Abfahrtsort + en-US: same as the place of departure +form_7_placeholder_2: + de-DE: anderer Ort + en-US: other destination +form_7_placeholder_3: + de-DE: Anschrift aufführen + en-US: please enter the address +resultbox_1: + de-DE: 'voll:' + en-US: 'full:' +resultbox_1_question_description: + de-DE: Der volle Tagessatz wird für jeden Tag zwischen Anreisetag und Abreisetag angesetzt. + en-US: The full daily rate is applied for each day between the day of arrival and the day of departure. +resultbox_2: + de-DE: 'vermindert:' + en-US: 'reduced:' +resultbox_2_question_description: + de-DE: Der verminderte Tagessatz gilt für Anreisetag und Abreisetag. + en-US: The reduced daily rate applies to the day of arrival and departure. +resultbox_3: + de-DE: 'Pauschbetrag Übernachtung:' + en-US: 'lump sum overnight compensation:' +resultbox_3_question_description: + de-DE: 'Kann die reisende Person privat übernachten, besteht daraus ein Anspruch in Höhe dieses Pauschbetrages.' + en-US: 'If the person traveling can stay overnight privately, there is a claim from this in the amount of this lump sum.' +description_header: + de-DE: Aufstellung + en-US: Trip itinerary +description_1: + de-DE: Bitte trage jeden Reisetag ein. + en-US: Please enter the appropriate selection for each day of your journey. +description_2: + de-DE: Bitte setze für jeden Tag, an dem dir im Rahmen der Reisekostenübernahme die entsprechende Mahlzeit gestellt wurde (z.B. Ü/F (Übernachtung/Frühstück), HP (Halbpension), Buffet bei Konferenz) einen Haken an passender Stelle. Dein Anspruch für den jeweiligen Reisetag wird um den Anteil der jeweiligen Mahlzeit verringert. Konntest du privat übernachten, erhöht sich dein Anspruch für den Tag der jeweiligen privaten Übernachtung. + en-US: For every day of your journey, please select every meal that will already be reimbursed as part of your travel expenses (e.g. bed and breakfast, half board, conference buffet). Your reimbursement for each day of travel will be reduced depending on the meal. If you are staying somewhere free of charge (i.e. with friends or family), the amount of your reimbursement for that day will increase. +total: + de-DE: 'Summe:' + en-US: 'Total:' +print_button_bottom: + de-DE: Anlage Verpflegungsmehraufwand drucken + en-US: Print attachment for extra meal expenses +contact: + de-DE: Kontakt + en-US: Contact details +connect: + de-DE: KonnekKt + en-US: Connect +changePassword: + de-DE: Passwort ändern + en-US: Change Password +info: + de-DE: Info + en-US: Info +onionFeatures: + de-DE: Zwiebel + en-US: Onion +freedom: + de-DE: Freiheit + en-US: Freedom +placeholderName: + de-DE: Eingabe Netzwerkname + en-US: Enter Network Name +placeholderPassword: + de-DE: Eingabe Netzwerkpasswort + en-US: Enter Network Password +placeholderrootPW: + de-DE: Eingabe Root passwort + en-US: Enter Root Password +submitButton: + de-DE: Verbinden + en-US: Connect +connections: + de-DE: Verbindungen + en-US: Connections +devices: + de-DE: Verfügbare Interfaces + en-US: Available Interfaces +ssids: + de-DE: Netzwerke in der Nähe + en-US: Networks around +freedom_p1: + de-DE: Die Freiheit des Internets ist nicht selbstverständlich.

Sie erfordert, dass wir verstehen, was wir am Computer machen.

Wie versteht man am besten die Tomate, die man isst?
Indem man selbst mal Tomaten anbaut.

Der KaosCube lädt euch dazu ein, ihn zu verstehen.
Wenn ihr es schafft, irgendwas auf diesem ARM system zu bauen oder
auch nur zu installieren, dann stärkt ihr die open hardware Bewegung.
Denn die kleine platine des orange pis ist open hardware.
Dazu könnt ihr euren eigenen Hidden Service nutzen, um euch über das
Tor Netzwerk auf dem Cube einzuloggen.
Öffnet eine shell, installiert euch torsocks und ssh, anschließend
könnt ihr euch mit

connect2Kaos

verbinden.

Mit dem hiddenService kommt auch eure eigene Website im ZwiebelNetz.
Wenn ihr die htmls im Ordner

/ordner/ordner/oleola

ändert, dann ändert das die seite xyz.onion.

+ en-US: Oi +freedom_p2: + de-DE: Der komplette code der Interface findet sich im Ordner interface im home ordner.
Dabei wurde ganz bewusst auf javascript verzichtet.

Es lohnt sich, Zeit im Terminal zu verbringen und das Betriebssystem zu erforschen
Denn dieser Router ist keine Blackbox.
Er ist ein richtiger kompletter Computer.
Und jeglichen Code kann man sich durchlesen.
Oder ihn verändern.

Warum zum Beispiel nicht einen eigenen Mailserver aufsetzen?
Oder einen eigenen Messenger Server, wie zum Beispiel Matrix oder Jami?
Oder statt Google oder Zoom zu nutzen, warum nicht ein eigener Video Konferenz Server?
Oder statt Youtube zu nutzen, warum nicht ein eigener Peertube server?
Oder statt Facebook oder Twitter, warum nicht eine eigene Mastodon oder Diaspora Instanz?

Oder eine eigene Cloud, zb auf basis von Nextcloud?

Die Liste geht noch ewig weiter.
Alles was ihr im internet nutzt, geht auch auf eurem eigenen Server.

Das ist manchmal einfacher, manchmal schwieriger zu realisieren.
Aber nichts davon müsst ihr selbst bauen.
Alles gibt es schon, und ihr müsst es vor allem einrichten und installieren.
Und das wird auch immer einfacher, je mehr Menschen das machen.
Oder zum beispiel auch mal nen euro bezahlen, hier und da, für coole Programme.
In allen fällen lernt man viel darüber, wer einem alles probleme macht, was eigentlich falsch läuft, und vor allem:

Was eigentlich die meisten Menschen für Probleme verursachen, wenn sie Programme im Internet nutzen, ohne zu verstehen, was sie tun.
+ en-US: Oi diff --git a/locale.yaml.save b/locale.yaml.save new file mode 100644 index 0000000..ecb7d29 --- /dev/null +++ b/locale.yaml.save @@ -0,0 +1,189 @@ +# Verpflegungsmehraufwandsformular wikimedia Deutschland + +title: + de-DE: Cyber Conscious Production - Bewusste Produktion via Cyberspace + en-US: Cyber Conscious Production - Conscious Production via Cyberspace +inputSite_header: + de-DE: Erstelle einen ID Schlüssel für ein neues Objekt + en-US: Generate an ID key for a new object +inputSite_title_subtext_1: + de-DE: Die angehängten Bilder oder Dokumente werden auf der Seite angezeigt, die der BarCode darstellt + en-US: The uploaded Pictures or Documents will be displayed on the website, which is represented by the barcode. +newEntry: + de-DE: Neuer Eintrag + en-US: New Entry +existingEntries: + de-DE: gespeicherte Einträge + en-US: existing Entries +genetikx: + de-DE: Genetik + en-US: Genetics +time: + de-DE: Zeit + en-US: Time +locality: + de-DE: Ort + en-US: Locality +uploads: + de-DE: Fotos / Dokumente + en-US: Photos / documents +form_3_timeword_1: + de-DE: um + en-US: at +form_3_timeword_2: + de-DE: Uhr + en-US: o'clock +form_4_header: + de-DE: Abfahrtsort + en-US: Place of departure +form_4_placeholder_1: + de-DE: Wohnort + en-US: Home +form_4_placeholder_2: + de-DE: Arbeitsstätte + en-US: Office +form_4_placeholder_3: + de-DE: sonstiger Ort + en-US: other location +form_4_placeholder_4: + de-DE: Anschrift aufführen + en-US: other location +form_5_header: + de-DE: Zielland + en-US: Country of destination +form_5_question_description: + de-DE: Bei Reisen ins Ausland können andere Tagessätze gelten. + en-US: Different per diem rates may apply when traveling abroad. +form_6_header: + de-DE: Reiseende + en-US: Return date and time +form_6_timeword_1: + de-DE: um + en-US: at +form_6_timeword_2: + de-DE: Uhr + en-US: o'clock +form_7_header: + de-DE: Ort des Reiseendes + en-US: Destination at the end of your journey +form_7_placeholder_1: + de-DE: wie Abfahrtsort + en-US: same as the place of departure +form_7_placeholder_2: + de-DE: anderer Ort + en-US: other destination +form_7_placeholder_3: + de-DE: Anschrift aufführen + en-US: please enter the address +resultbox_1: + de-DE: 'voll:' + en-US: 'full:' +resultbox_1_question_description: + de-DE: Der volle Tagessatz wird für jeden Tag zwischen Anreisetag und Abreisetag angesetzt. + en-US: The full daily rate is applied for each day between the day of arrival and the day of departure. +resultbox_2: + de-DE: 'vermindert:' + en-US: 'reduced:' +resultbox_2_question_description: + de-DE: Der verminderte Tagessatz gilt für Anreisetag und Abreisetag. + en-US: The reduced daily rate applies to the day of arrival and departure. +resultbox_3: + de-DE: 'Pauschbetrag Übernachtung:' + en-US: 'lump sum overnight compensation:' +resultbox_3_question_description: + de-DE: 'Kann die reisende Person privat übernachten, besteht daraus ein Anspruch in Höhe dieses Pauschbetrages.' + en-US: 'If the person traveling can stay overnight privately, there is a claim from this in the amount of this lump sum.' +description_header: + de-DE: Aufstellung + en-US: Trip itinerary +description_1: + de-DE: Bitte trage jeden Reisetag ein. + en-US: Please enter the appropriate selection for each day of your journey. +description_2: + de-DE: Bitte setze für jeden Tag, an dem dir im Rahmen der Reisekostenübernahme die entsprechende Mahlzeit gestellt wurde (z.B. Ü/F (Übernachtung/Frühstück), HP (Halbpension), Buffet bei Konferenz) einen Haken an passender Stelle. Dein Anspruch für den jeweiligen Reisetag wird um den Anteil der jeweiligen Mahlzeit verringert. Konntest du privat übernachten, erhöht sich dein Anspruch für den Tag der jeweiligen privaten Übernachtung. + en-US: For every day of your journey, please select every meal that will already be reimbursed as part of your travel expenses (e.g. bed and breakfast, half board, conference buffet). Your reimbursement for each day of travel will be reduced depending on the meal. If you are staying somewhere free of charge (i.e. with friends or family), the amount of your reimbursement for that day will increase. +total: + de-DE: 'Summe:' + en-US: 'Total:' +print_button_bottom: + de-DE: Anlage Verpflegungsmehraufwand drucken + en-US: Print attachment for extra meal expenses +contact: + de-DE: Kontakt + en-US: Contact details +connect: + de-DE: KonnekKt + en-US: Connect +changePassword: + de-DE: Passwort ändern + en-US: Change Password +info: + de-DE: Info + en-US: Info +onionFeatures: + de-DE: Zwiebel + en-US: Onion +freedom: + de-DE: Freiheit + en-US: Freedom +placeholderName: + de-DE: Eingabe Netzwerkname + en-US: Enter Network Name +placeholderPassword: + de-DE: Eingabe Netzwerkpasswort + en-US: Enter Network Password +placeholderrootPW: + de-DE: Eingabe Root passwort + en-US: Enter Root Password +submitButton: + de-DE: Verbinden + en-US: Connect +connections: + de-DE: Verbindungen + en-US: Connections +devices: + de-DE: Verfügbare Interfaces + en-US: Available Interfaces +ssids: + de-DE: Netzwerke in der Nähe + en-US: Networks around +freedom_p1: + de-DE: Die Freiheit des Internets ist nicht selbstverständlich.

+ +Sie erfordert, dass wir verstehen, was wir am Computer machen.

+ +Wie versteht man am besten die Tomate, die man isst?
+Indem man selbst mal Tomaten anbaut.

+ +Der KaosCube lädt euch dazu ein, ihn zu verstehen.
+ + +Wenn ihr es schafft, irgendwas auf diesem ARM system zu bauen oder
+auch nur zu installieren, dann stärkt ihr die open hardware Bewegung.
+Denn die kleine platine des orange pis ist open hardware.
+ + +Dazu könnt ihr euren eigenen Hidden Service nutzen, um euch über das
+Tor Netzwerk auf dem Cube einzuloggen.
+ +Öffnet eine shell, installiert euch torsocks und ssh, anschließend
+ +könnt ihr euch mit

+ + connect2Kaos

+ +verbinden.

+ +Mit dem hiddenService kommt auch eure eigene Website im ZwiebelNetz.
+ +Wenn ihr die htmls im Ordner

+ + /ordner/ordner/oleola

+ +ändert, dann ändert das die seite xyz.onion.

+ + +Der komplette code der Interface findet sich im Ordner interface im home ordner.
Dabei wurde ganz bewusst auf javascript verzichtet.

+ + + diff --git a/onion.php b/onion.php new file mode 100644 index 0000000..906cc47 --- /dev/null +++ b/onion.php @@ -0,0 +1,188 @@ + + + + + + + + + <?php echo _($localeYaml['title'][$loc1])?> + + + + + + + + + +
+
+

+

+

+

+

+
+
+ + + +




+
+

get your first hidden service running

+
+ + +





+
+
+

Insert the name of your hiddenservice Project (internal name)

+

+





+

Insert the name of your node publicly visible on the tor network

+

+





+

Insert your root password

+

+





+ +
+ +
+




+ + + +GFG; + }elseif(strcmp($state,'node')==0){ + echo << you have a node running

+ + +





+
+
+

give your bridge a name

+

+

+

+





+ +
+ +
+




+ + + +GFG; + + }elseif(strcmp($state,'bridge')==0){ + echo << +

you have a Bridge running


+ + + + +





+
+
+

type in the nickname of your middle node

+

+

+

+





+ +
+ +
+




+ + + +GFG; + } +?> + + + +
+
+

+

© 2022 by Cannabinieri

+
+ https://www.cannabinieri.de
+ E-Mail: contact@cannabinieri.de

+
+
+
+ +
+
+

pink

+

azurro

+
+
+ + + + diff --git a/ssids.csv b/ssids.csv new file mode 100644 index 0000000..bd4b347 --- /dev/null +++ b/ssids.csv @@ -0,0 +1,20 @@ +KaosCube:0 Mbit/s: :WPA1 WPA2 + +KaosCube:65 Mbit/s:****:WPA1 WPA2 +Faber Castell:540 Mbit/s:*** :WPA2 +FRITZ!Box 7560 XJ:195 Mbit/s:*** :WPA2 +MagentaWLAN-G3JX:540 Mbit/s:** :WPA2 WPA3 +o2-WLAN77:130 Mbit/s:** :WPA2 +FRITZ!Box 7530 SC:130 Mbit/s:** :WPA2 +WLAN-817540:540 Mbit/s:** :WPA2 +FaFoMasch:540 Mbit/s:** :WPA2 +FROST:195 Mbit/s:** :WPA2 +o2-WLAN72:130 Mbit/s:** :WPA2 +FRITZ!Box 7412:130 Mbit/s:** :WPA2 +WLAN-175967:540 Mbit/s:** :WPA2 +FRITZ!Box 7530 Sue:270 Mbit/s:** :WPA2 +Vodafone-674242:270 Mbit/s:* :WPA2 +o2-WLAN76:130 Mbit/s:* :WPA2 +FRITZ!Box 7490:195 Mbit/s:* :WPA2 +Jupiter:195 Mbit/s:* :WPA2 +o2-WLAN13:130 Mbit/s:* :WPA2 diff --git a/startserver.sh b/startserver.sh new file mode 100644 index 0000000..fb23d9d --- /dev/null +++ b/startserver.sh @@ -0,0 +1 @@ +sudo php -S 0.0.0.0:666 diff --git a/submittedNewEntry.php b/submittedNewEntry.php new file mode 100644 index 0000000..01c5fbf --- /dev/null +++ b/submittedNewEntry.php @@ -0,0 +1,45 @@ + + + + + + + + +


+
+

+Oi +

+
+


+ + diff --git a/torState.csv b/torState.csv new file mode 100644 index 0000000..3e75765 --- /dev/null +++ b/torState.csv @@ -0,0 +1 @@ +new diff --git a/updateInfo.php b/updateInfo.php new file mode 100644 index 0000000..e86fade --- /dev/null +++ b/updateInfo.php @@ -0,0 +1,7 @@ + connections.csv" + +$output = shell_exec($shellcommand2); + +?>