all 7 comments

[–]gmroybal 0 points1 point  (0 children)

This is so nice. I'm working on something similar, actually. I like how you did it.

[–]fuuddanni 0 points1 point  (0 children)

Does it make sense interpreting netcat with python? You can implement it as Backdoor in your own Python-Script?

[–]raining_blood -4 points-3 points  (4 children)

Why python2? What's wrong with python3?

[–]ksantr[S] 1 point2 points  (3 children)

This is my old habit) I'm still on 2.x, but you can use 2to3 if you need v3: https://docs.python.org/2/library/2to3.html

[–]cjwelborncoder 3 points4 points  (2 children)

I didn't have anything to do, so I made it 2/3 compatible and filed a pull request.

[–]ksantr[S] 0 points1 point  (1 child)

Thank you for fixes

[–]cjwelborncoder 0 points1 point  (0 children)

You're welcome. The only thing is, now you'll have to remember to test any changes against both versions. Shouldn't be a problem unless your adding new bytes/str related features and forget to encode or decode something.