aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2020-03-13 09:03:06 -0500
committerepoch <epoch@hacking.allowed.org>2020-03-13 09:03:06 -0500
commit22942add557f242425ae9d9813ff13377d515b51 (patch)
tree0a3727d3611802e95a15e3017baf95188ce1841a /share
parent1de9b6df32d18eaf44b668f79217ff4a0d7973e2 (diff)
downloadhackvr-22942add557f242425ae9d9813ff13377d515b51.tar.gz
hackvr-22942add557f242425ae9d9813ff13377d515b51.zip
added an anonet map
Diffstat (limited to 'share')
-rwxr-xr-xshare/hackvr/examples/anonet_map/map58
-rwxr-xr-xshare/hackvr/examples/anonet_map/paths-to-edges5
-rwxr-xr-xshare/hackvr/examples/anonet_map/run8
3 files changed, 71 insertions, 0 deletions
diff --git a/share/hackvr/examples/anonet_map/map b/share/hackvr/examples/anonet_map/map
new file mode 100755
index 0000000..4c839a7
--- /dev/null
+++ b/share/hackvr/examples/anonet_map/map
@@ -0,0 +1,58 @@
+#!/bin/bash
+paths="$(ncat --recv-only 21.41.41.1 64777 | sort | uniq)"
+nodes=$(printf "%s\n" "$paths" | tr ' ' '\n' | sort | uniq)
+nodes_count="$(printf "%s\n" "$nodes" | tr ' ' '\n' | wc -l | tr -cd '0-9')"
+#echo $nodes
+#echo $nodes_count
+echo $USER move 0 0 -17
+coords="$( (for node in $nodes;do
+ printf "AS%s addshape 4 2 0 8 0 0 0 0\n" "$node"
+ printf "AS* rotate 0 0 +%d\n" "$[360 / ${nodes_count} ]"
+ printf "AS* flatten\n"
+done
+printf "* export *\n"
+) | hackvr_headless 2>/dev/null | sed 's/^*_AS//g' | cut '-d ' -f5,6)"
+#printf "%s\n" "$coords"
+xcoords="$(printf "%s\n" "$coords" | cut '-d ' -f1)"
+ycoords="$(printf "%s\n" "$coords" | cut '-d ' -f2)"
+
+#echo $xcoords
+#echo $ycoords
+
+edges=$(printf "%s\n" "$paths" | tr '\n' '\0' | xargs -n1 -0 ./paths-to-edges | sort | uniq | tr ' ' '_')
+
+index_of() {
+ printf "%s\n" "$nodes" | grep -n '^'"$1"'$' | cut -d: -f1
+}
+
+xcoord_by_ASN() {
+ printf "%s\n" "$xcoords" | head -n "$(index_of $1)" | tail -n1
+}
+
+ycoord_by_ASN() {
+ printf "%s\n" "$ycoords" | head -n "$(index_of $1)" | tail -n1
+}
+
+line_between_nodes() {
+ a=$(printf "%s\n" "$1" | cut -d_ -f1)
+ b=$(printf "%s\n" "$1" | cut -d_ -f2)
+ printf "%s->%s addshape 2 2 %s %s 0 %s %s 0\n" "$a" "$b" $(xcoord_by_ASN $a) $(ycoord_by_ASN $a) $(xcoord_by_ASN $b) $(ycoord_by_ASN $b)
+}
+
+for node in $nodes;do
+ printf "<whois://whois.ano/AS%s> addshape 5 4 -1 8 0 -1 10 0 1 10 0 1 8 0\n" "$node"
+ printf "<whois://whois.ano/AS* rotate 0 0 +%d\n" "$[360 / ${nodes_count} ]"
+ printf "<whois://whois.ano/AS* flatten\n"
+ makelabel.sh AS$node $( echo | awk "{print $(xcoord_by_ASN $node) * 13}" ) $( echo | awk "{print $(ycoord_by_ASN $node) * 13}" ) -10 <<< $node
+ printf "AS%s scaleup .1 .1 .1\n" "$node"
+done
+
+for i in $edges;do
+ line_between_nodes "$i"
+done
+
+#for i in ${!nodes[@]};do
+# echo $i
+# echo ${nodes[$i]}
+# node=$(printf "%s\n" "${nodes}" | head -n${i} | tail -n1)
+#done
diff --git a/share/hackvr/examples/anonet_map/paths-to-edges b/share/hackvr/examples/anonet_map/paths-to-edges
new file mode 100755
index 0000000..38fc488
--- /dev/null
+++ b/share/hackvr/examples/anonet_map/paths-to-edges
@@ -0,0 +1,5 @@
+#!/usr/bin/env bash
+arr=($*)
+for i in ${!arr[@]};do
+ echo ${arr[$i]} ${arr[$i+1]}
+done | grep ' '
diff --git a/share/hackvr/examples/anonet_map/run b/share/hackvr/examples/anonet_map/run
new file mode 100755
index 0000000..c4c1c05
--- /dev/null
+++ b/share/hackvr/examples/anonet_map/run
@@ -0,0 +1,8 @@
+#!/usr/bin/env bash
+nonblocktail <(./map) /dev/stdin \
+ | hackvr \
+ | while read group action target;do
+ if [ $action = "action" ];then
+ printf "%s\n" "$target" | tee /dev/stderr | grep '^<\(.*\)>$' | sed 's/^<\(.*\)>$/\1/g' | tr '\n' '\0' | xargs -n1 -0 copy_start_nevermind.sh &
+ fi
+ done