This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | band_enumeration = [ | |
| { | |
| "band": "2190m", | |
| "lower_freq": 0.1357, | |
| "upper_freq": 0.1378 | |
| }, | |
| { | |
| "band": "630m", | |
| "lower_freq": 0.472, | |
| "upper_freq": 0.479 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### Keybase proof | |
| I hereby claim: | |
| * I am elnappo on github. | |
| * I am elnappo (https://keybase.io/elnappo) on keybase. | |
| * I have a public key ASBWLm4lX4Yh4-aAAT0MpSkSxBXNQ1S65mZUe1_g0H5zcgo | |
| To claim this, I am signing this object: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | loadkeys de-latin1 | |
| ls /sys/firmware/efi/efivars | |
| ping google.de | |
| timedatectl set-ntp true | |
| fdisk -l | |
| fdisk /dev/sdb | |
| cryptsetup -s 512 luksFormat /dev/sdb2 | |
| cryptsetup open /dev/sdb2 cryptroot | |
| mkfs.btrfs /dev/mapper/cryptroot | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | input { | |
| file { | |
| path => ["/var/log/suricata/eve.json"] | |
| sincedb_path => ["/var/lib/logstash/since.db"] | |
| codec => json | |
| type => "SuricataIDPS" | |
| } | |
| } | |
| filter { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | from scapy.all import * | |
| hosts = ["whitehouse.gov", "mit.edu", "heise.de", "google.ru", "telekom.de", "facebook.com", "vodafone.de", "tu-berlin.de", "m-net.de", "067.cz"] | |
| res,unans = traceroute(hosts) | |
| res.graph(target="> traceroute_graph.svg") | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env bash | |
| ipv4=$(curl -s ipv4.icanhazip.com) | |
| echo IPv4: $ipv4 | |
| hostname_ipv4=$(dig +noall +answer +short -x $ipv4) | |
| echo rDNS: $hostname_ipv4 | |
| ipv6=$(curl -s ipv6.icanhazip.com) | |
| echo IPv6: $ipv6 |