Create an account

Very important

  • To access the important data of the forums, you must be active in each forum and especially in the leaks and database leaks section, send data and after sending the data and activity, data and important content will be opened and visible for you.
  • You will only see chat messages from people who are at or below your level.
  • More than 500,000 database leaks and millions of account leaks are waiting for you, so access and view with more activity.
  • Many important data are inactive and inaccessible for you, so open them with activity. (This will be done automatically)


Thread Rating:
  • 469 Vote(s) - 3.6 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Backdoor Precautions

#1
If you know what a shell is, you know what this is. I won't explain this too much since we don't need to really go over this, another thread, another time.

If you plan on setting up a backdoor on a website, you need to be able to operate unknown, without people knowing. Here's two ways you can keep your backdoor under the radar.

First off is probably the most known way, password (and username) protect it.

Your target may somehow wonder off into the depths of their site, and find, what do you know, your backdoor. If you plan on keeping them how, here's an easy way how.

Setup an account of a sort. Just use this PHP script.

PHP Code:
$username "sheller"
$password "wowsuchshellpasswordfeg123" 

Then, just have your shell echo a prompt/login page, this will keep the owner, and everyone else, out of your backdoor. I won't teach you how to do this, you have to figure it out on your own.

Pros:
  • Keep unwanted visitors out.

Cons:
  • Admin of the site will think it's "fishy" since they can't login with their cresidentials.
  • Login page can still be viewed.

Next, we have the Anti-Crawler. This is simple, all you have to do is implement it into your PHP file.

PHP Code:
if(!empty($_SERVER['HTTP_USER_AGENT']))
{
    
$crawlingLittleBitches = array("Google","MSNbot");
    if(
preg_match('/' implode('|'$crawlingLittleBitches) . '/i'$_SERVER['HTTP_USER_AGENT']))
    {
        
header('HTTP/1.0 404 Not Found');
        exit;
    }


That just denies the bots from seeing your backdoor. At first, it seems useless, but if you really know how much these crawler bots mean, you'll be first in line to add this to your backdoor. I only provided two bots, there are many more. In the code, I called the bots "crawlingLittleBitches". Probably not the best title for them, but hey, works for me. Even though I've never made a backdoor.

These are only two ways to improve your backdoor/shell's privacy, you can do so much more. But I won't go that far since this is a simple thread.

Good luck and all the shit.
Reply

#2
Quote:(03-13-2014, 04:40 PM)w00t Wrote:

[To see links please register here]

Rather than a user/pass, I just make it so you can only view the backdoor with a 16-character random useragent. No crawling can happen, and you can show an error to any unauthorized persons instead of a log in.

That's a good one too.
Reply

#3
Rather than a user/pass, I just make it so you can only view the backdoor with a 16-character random useragent. No crawling can happen, and you can show an error to any unauthorized persons instead of a log in.
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

©0Day  2016 - 2023 | All Rights Reserved.  Made with    for the community. Connected through