// Webshell payloads
//
// The webshell package contains webshell payloads that can be dropped onto remote targets
package webshell

type Dropper interface{}

type (
	JSPWebshell struct{}
	PHPWebshell struct{}
)

var (
	PHP = &PHPWebshell{}
	JSP = &JSPWebshell{}
)
