diff --git a/information/cat.jpg b/information/cat.jpg new file mode 100644 index 0000000..7351fbc Binary files /dev/null and b/information/cat.jpg differ diff --git a/nice_netcat/nc_out b/nice_netcat/nc_out new file mode 100644 index 0000000..778674e --- /dev/null +++ b/nice_netcat/nc_out @@ -0,0 +1,42 @@ +112 +105 +99 +111 +67 +84 +70 +123 +103 +48 +48 +100 +95 +107 +49 +116 +116 +121 +33 +95 +110 +49 +99 +51 +95 +107 +49 +116 +116 +121 +33 +95 +97 +102 +100 +53 +102 +100 +97 +52 +125 +10 diff --git a/nice_netcat/sol.py b/nice_netcat/sol.py new file mode 100755 index 0000000..6a13db9 --- /dev/null +++ b/nice_netcat/sol.py @@ -0,0 +1,8 @@ +#!/usr/bin/python + +with open("nc_out", "r") as f: + lines = f.readlines() + for line in lines: + char = chr(int(line)) + print(char, end='') + diff --git a/transformation/enc b/transformation/enc new file mode 100755 index 0000000..eedb484 --- /dev/null +++ b/transformation/enc @@ -0,0 +1 @@ +灩捯䍔䙻ㄶ形楴獟楮獴㌴摟潦弸彤㔲挶戹㍽ \ No newline at end of file diff --git a/transformation/sol.py b/transformation/sol.py new file mode 100755 index 0000000..6cd6b19 --- /dev/null +++ b/transformation/sol.py @@ -0,0 +1,15 @@ +#!/usr/bin/python + +with open("enc", "r") as f: + while True: + char = f.read(1) + if not char: + break + c = ord(char) + char_1 = chr(c >> 8) + char_2 = chr(c%(2**8)) + print(char_1, end='') + print(char_2, end='') + +print('\n') + diff --git a/wave_a_flag/warm b/wave_a_flag/warm new file mode 100755 index 0000000..e55b92f Binary files /dev/null and b/wave_a_flag/warm differ