![]() |
|
another zero - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: General (https://sinister.ly/Forum-General) +--- Forum: Introductions (https://sinister.ly/Forum-Introductions) +--- Thread: another zero (/Thread-another-zero) |
another zero - NmZero - 04-04-2013 hello, im NmZero. im kinda new to this and i hope i can learn more about hacking AND protection. i can code a little java but thats all ^^ hope to see you around! ~NmZero RE: another zero - Snipa - 04-04-2013 Learn hacking and protection, thats for sure ! ![]() you can also check our programming section for some java tutorials See you around Snipa RE: another zero - NmZero - 04-05-2013 thanks both of you ^^ i have a question already, where is the common help section :-| if there isnt, here is my problem: iget ddossed by this kid and i got his ip, but i dont know how to block that ip. any idea where to do that? RE: another zero - NmZero - 04-05-2013 thanks both of you ^^ i have a question already, where is the common help section :-| if there isnt, here is my problem: iget ddossed by this kid and i got his ip, but i dont know how to block that ip. any idea where to do that? RE: another zero - Snipa - 04-05-2013 You can use a firewall, windows have one built in, you can use it, or download comodo for example and block that ip from there. And for the section, it goes in the Tutorial request section, you could have posted a new thread there. :wink: Snipa RE: another zero - noize - 04-06-2013 (04-05-2013, 12:05 AM)NmZero Wrote: thanks both of you ^^ You as a host, or either you as your online server? As a host, Snipa's right, as a server just make a file, like blockip.php, which you'll require in all of your pages once, with the lines PHP Code: if (getenv(HTTP_X_FORWARDED_FOR)){
$ip = getenv(HTTP_X_FORWARDED_FOR); } else {
$ip = getenv(REMOTE_ADDR);
}
if ( $ip == KID'SIPHERE ) {
header('Location:http://google.com');
}
But this wouldn't drop incoming packets, would just prevent him from accessing the website further. This way you may prevent DoS attacks aiming to use things like forms (he cannot make thousands of users or else and overload your server, for instance), for more protection against DoS attacks you can use http://cloudflare.com . However, if he's DDoS'ng you (unless you wanted to say DoS'd) you won't be able to do much by blocking his IP. RE: another zero - NmZero - 04-06-2013 well it kinda stopped now. im actually hosting a maplestory private server. it was till yesterday hosting on my own computer. so the ip of the website was my ip. he totally killed my internet with it. before i started i met this guy before on another private server. he was saying that he used "slowloris". i bought a dedicated server now and it has ddos protection. but i dont know if it works cause i dont think he has tried it yet :\ anyway if the guy finds my ip again and uses slowloris on me, will that ip block that you guys told me about help? RE: another zero - Psycho_Coder - 04-07-2013 Welcome to HC, Enjoy your stay and have a happy time learning. |