All Projects → Sanix-Darker → Antiddos System

Sanix-Darker / Antiddos System

Licence: mit
🛡️⚔️ Protect your web app from DDOS attack or the Dead Ping + CAPTCHA VERIFICATION in one line!

Programming Languages

hack
652 projects

Projects that are alternatives of or similar to Antiddos System

Rvd
Robot Vulnerability Database. An archive of robot vulnerabilities and bugs.
Stars: ✭ 87 (-49.71%)
Mutual labels:  robot, hacking
Scilla
🏴‍☠️ Information Gathering tool 🏴‍☠️ DNS / Subdomains / Ports / Directories enumeration
Stars: ✭ 116 (-32.95%)
Mutual labels:  hacking, security-tools
Hacker Container
Container with all the list of useful tools/commands while hacking and pentesting Kubernetes Clusters
Stars: ✭ 105 (-39.31%)
Mutual labels:  hacking, security-tools
Cloakify
CloakifyFactory - Data Exfiltration & Infiltration In Plain Sight; Convert any filetype into list of everyday strings, using Text-Based Steganography; Evade DLP/MLS Devices, Defeat Data Whitelisting Controls, Social Engineering of Analysts, Evade AV Detection
Stars: ✭ 1,136 (+556.65%)
Mutual labels:  hacking, security-tools
Nosqlmap
Automated NoSQL database enumeration and web application exploitation tool.
Stars: ✭ 1,928 (+1014.45%)
Mutual labels:  hacking, security-tools
Network Threats Taxonomy
Machine Learning based Intrusion Detection Systems are difficult to evaluate due to a shortage of datasets representing accurately network traffic and their associated threats. In this project we attempt at solving this problem by presenting two taxonomies
Stars: ✭ 79 (-54.34%)
Mutual labels:  hacking, security-tools
Awesome Hacking
Awesome hacking is an awesome collection of hacking tools.
Stars: ✭ 1,802 (+941.62%)
Mutual labels:  hacking, security-tools
Shellshockhunter
It's a simple tool for test vulnerability shellshock
Stars: ✭ 52 (-69.94%)
Mutual labels:  hacking, security-tools
Dark Fantasy Hack Tool
DDOS Tool: To take down small websites with HTTP FLOOD. Port scanner: To know the open ports of a site. FTP Password Cracker: To hack file system of websites.. Banner Grabber: To get the service or software running on a port. (After knowing the software running google for its vulnerabilities.) Web Spider: For gathering web application hacking information. Email scraper: To get all emails related to a webpage IMDB Rating: Easy way to access the movie database. Both .exe(compressed as zip) and .py versions are available in files.
Stars: ✭ 131 (-24.28%)
Mutual labels:  hacking, ddos
Awesome Mobile Security
An effort to build a single place for all useful android and iOS security related stuff. All references and tools belong to their respective owners. I'm just maintaining it.
Stars: ✭ 1,837 (+961.85%)
Mutual labels:  hacking, security-tools
Resources
A Storehouse of resources related to Bug Bounty Hunting collected from different sources. Latest guides, tools, methodology, platforms tips, and tricks curated by us.
Stars: ✭ 62 (-64.16%)
Mutual labels:  hacking, security-tools
Personal Security Checklist
🔒 A curated checklist of 300+ tips for protecting digital security and privacy in 2021
Stars: ✭ 2,388 (+1280.35%)
Mutual labels:  security-tools, protection
Jaeles
The Swiss Army knife for automated Web Application Testing
Stars: ✭ 1,073 (+520.23%)
Mutual labels:  hacking, security-tools
Hooman
http interceptor to hoomanize cloudflare requests
Stars: ✭ 82 (-52.6%)
Mutual labels:  captcha, ddos
Spellbook
Micro-framework for rapid development of reusable security tools
Stars: ✭ 53 (-69.36%)
Mutual labels:  hacking, security-tools
Inferno
🔥 Modern command line tool for malware creation on Windows
Stars: ✭ 105 (-39.31%)
Mutual labels:  hacking, ddos
Tic Tac
Client not paid ? This is the solution of your problem
Stars: ✭ 29 (-83.24%)
Mutual labels:  hacking, protection
Vulnx
vulnx 🕷️ is an intelligent bot auto shell injector that detect vulnerabilities in multiple types of cms { `wordpress , joomla , drupal , prestashop .. `}
Stars: ✭ 1,009 (+483.24%)
Mutual labels:  hacking, security-tools
Sippts
Set of tools to audit SIP based VoIP Systems
Stars: ✭ 116 (-32.95%)
Mutual labels:  hacking, security-tools
Reconnoitre
A security tool for multithreaded information gathering and service enumeration whilst building directory structures to store results, along with writing out recommendations for further testing.
Stars: ✭ 1,824 (+954.34%)
Mutual labels:  hacking, security-tools

AntiDDOS-system

A simple way to protect your web application from DDOS attack(FREELY) in *1 line*.

How it work?

At each connection, the system temporarily saves the ip address of the client and monitors its connection frequency, if this connection frequency is abnormal, then the system considers it as a black ip address and sends a verification request in the form of a verification. Captcha integrated into the system, if he passes this check, then it is a human and not a robot!

Testing...

"This project has been tested by severals ddos software with a score of 77%."

How to use it?

Basic USAGE

<?php
	include ("anti_ddos/start.php"); //write this at the top of your PHP application and all is done!!!
?>
<!DOCTYPE html>
<html>
<head>
	<title>
		Example Web page protected!
	</title>
</head>
	<body>
		...
		<h2>Example Web page protected!</h2>
		...
	</body>
</html>

Advance USAGE:

<?php
	try{
		if (!file_exists('anti_ddos/start.php'))
			throw new Exception ('anti_ddos/start.php does not exist');
		else
			require_once('anti_ddos/start.php'); 
	} 
	//CATCH the exception if something goes wrong.
	catch (Exception $ex) {
		// et's print a message saying there is an error
		echo '<div style="padding:10px;color:white;position:fixed;top:0;left:0;width:100%;background:black;text-align:center;">The <a href="https://github.com/sanix-darker/antiddos-system" target="_blank">"AntiDDOS System"</a> failed to load properly on this Web Site, please de-comment the \'catch Exception\' to see what happening!</div>';
		//Print out the exception message.
		//echo $ex->getMessage();
	}
	// cp -r AntiDDOS-system/ /var/www/html/
?>
---- THE HTML PAGE CONTENT ----

Author

LICENSE

MIT License

PS: Send me some feedback to make this project more powerfull than ever! ;-)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].