diff --git a/HTB Cyber Apocalypse/Input as a Service.md b/HTB Cyber Apocalypse/Input as a Service.md new file mode 100644 index 0000000..ae6826b --- /dev/null +++ b/HTB Cyber Apocalypse/Input as a Service.md @@ -0,0 +1,27 @@ +## Input as a Service + + + +On connecting with the port it shows a python2 shell , giving it an input it shows an error + + + +But if we supply a string it won't break + + + +On googling around to import a python module I found a techique to import a module using `___import___` as the input is accepting only string so this will be accepting as string + + + + + +And we'll get the flag + + + +We can also look at the source + + + +With this we solved the challenge !!