├── .gitattributes ├── README.md ├── code ├── Md5.go ├── readme.txt ├── ucoide.go ├── unicode.go └── unkown.go ├── common ├── Parse.go ├── config.go ├── file.go ├── flag.go └── randstr.go ├── go.mod ├── main.go └── shell ├── Behinder └── jspshell.go ├── Godzilla ├── Jspun.go └── jspshell.go ├── bypass └── bypassphp.go ├── java.go ├── memory ├── Behinder │ ├── BeResin │ │ ├── BeRase128.go │ │ └── BeRxor.go │ ├── Bespring │ │ ├── Behsaes128.go │ │ └── Behxor.go │ └── Betomcat │ │ ├── Bettaes128.go │ │ └── Bettxor.go └── Godzilla │ ├── GoResin │ └── GoResin128.go │ ├── GoSpring │ └── GoSpring128.go │ ├── Gotomcat │ └── GoTomcat128.go │ └── JDK │ └── HttpServlet.go ├── php.go └── plugin.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/README.md -------------------------------------------------------------------------------- /code/Md5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/code/Md5.go -------------------------------------------------------------------------------- /code/readme.txt: -------------------------------------------------------------------------------- 1 | 此目录文件用于普通的php和jsp加密 2 | 3 | This directory file is used for normal php and jsp encryption -------------------------------------------------------------------------------- /code/ucoide.go: -------------------------------------------------------------------------------- 1 | package code 2 | 3 | func Uncoide() { 4 | //后续开发 5 | } 6 | -------------------------------------------------------------------------------- /code/unicode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/code/unicode.go -------------------------------------------------------------------------------- /code/unkown.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/code/unkown.go -------------------------------------------------------------------------------- /common/Parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/common/Parse.go -------------------------------------------------------------------------------- /common/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/common/config.go -------------------------------------------------------------------------------- /common/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/common/file.go -------------------------------------------------------------------------------- /common/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/common/flag.go -------------------------------------------------------------------------------- /common/randstr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/common/randstr.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module webshell 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/main.go -------------------------------------------------------------------------------- /shell/Behinder/jspshell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/Behinder/jspshell.go -------------------------------------------------------------------------------- /shell/Godzilla/Jspun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/Godzilla/Jspun.go -------------------------------------------------------------------------------- /shell/Godzilla/jspshell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/Godzilla/jspshell.go -------------------------------------------------------------------------------- /shell/bypass/bypassphp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/bypass/bypassphp.go -------------------------------------------------------------------------------- /shell/java.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/java.go -------------------------------------------------------------------------------- /shell/memory/Behinder/BeResin/BeRase128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/BeResin/BeRase128.go -------------------------------------------------------------------------------- /shell/memory/Behinder/BeResin/BeRxor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/BeResin/BeRxor.go -------------------------------------------------------------------------------- /shell/memory/Behinder/Bespring/Behsaes128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/Bespring/Behsaes128.go -------------------------------------------------------------------------------- /shell/memory/Behinder/Bespring/Behxor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/Bespring/Behxor.go -------------------------------------------------------------------------------- /shell/memory/Behinder/Betomcat/Bettaes128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/Betomcat/Bettaes128.go -------------------------------------------------------------------------------- /shell/memory/Behinder/Betomcat/Bettxor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Behinder/Betomcat/Bettxor.go -------------------------------------------------------------------------------- /shell/memory/Godzilla/GoResin/GoResin128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Godzilla/GoResin/GoResin128.go -------------------------------------------------------------------------------- /shell/memory/Godzilla/GoSpring/GoSpring128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Godzilla/GoSpring/GoSpring128.go -------------------------------------------------------------------------------- /shell/memory/Godzilla/Gotomcat/GoTomcat128.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Godzilla/Gotomcat/GoTomcat128.go -------------------------------------------------------------------------------- /shell/memory/Godzilla/JDK/HttpServlet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/memory/Godzilla/JDK/HttpServlet.go -------------------------------------------------------------------------------- /shell/php.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/php.go -------------------------------------------------------------------------------- /shell/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yusinomy/Webshell-Generate/HEAD/shell/plugin.go --------------------------------------------------------------------------------