├── .DS_Store ├── .gitattributes ├── README.md ├── autoPhpCode.py ├── autoShell.py ├── debug.log ├── md5mshell.php ├── mysql ├── list.txt └── mysqlPwn.py ├── shell.txt ├── shellplus.php ├── smb └── smbPwn.py ├── ssh ├── changesshpwd_darwin_amd64.zip ├── help.txt ├── multissh.zip ├── multissh_ ├── sshPwn.py └── sshPwndebug.log ├── upload.php ├── 权限维持 ├── lock.php └── lock_simple.php └── 防御手段 └── quickDefense.sh /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # badGuyHacker 2 | 一些自己打比赛的搅屎脚本org 3 | -------------------------------------------------------------------------------- /autoPhpCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/autoPhpCode.py -------------------------------------------------------------------------------- /autoShell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/autoShell.py -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /md5mshell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/md5mshell.php -------------------------------------------------------------------------------- /mysql/list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/mysql/list.txt -------------------------------------------------------------------------------- /mysql/mysqlPwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/mysql/mysqlPwn.py -------------------------------------------------------------------------------- /shell.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shellplus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/shellplus.php -------------------------------------------------------------------------------- /smb/smbPwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/smb/smbPwn.py -------------------------------------------------------------------------------- /ssh/changesshpwd_darwin_amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/changesshpwd_darwin_amd64.zip -------------------------------------------------------------------------------- /ssh/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/help.txt -------------------------------------------------------------------------------- /ssh/multissh.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/multissh.zip -------------------------------------------------------------------------------- /ssh/multissh_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/multissh_ -------------------------------------------------------------------------------- /ssh/sshPwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/sshPwn.py -------------------------------------------------------------------------------- /ssh/sshPwndebug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/ssh/sshPwndebug.log -------------------------------------------------------------------------------- /upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/upload.php -------------------------------------------------------------------------------- /权限维持/lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/权限维持/lock.php -------------------------------------------------------------------------------- /权限维持/lock_simple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstxq17/badGuyHacker/HEAD/权限维持/lock_simple.php -------------------------------------------------------------------------------- /防御手段/quickDefense.sh: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------