We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb1f213 commit 1db5c6fCopy full SHA for 1db5c6f
payload/reverse/python.go
@@ -13,7 +13,7 @@ var (
13
//go:embed python/reverse27_secure.py
14
Python27Secure string
15
//go:embed python/reverse3_12_secure.py
16
- Python3_12_Secure string
+ Python3_12Secure string
17
)
18
19
func (py *PythonPayload) Default(lhost string, lport int) string {
@@ -34,5 +34,5 @@ func (py *PythonPayload) SecurePython27(lhost string, lport int) string {
34
// This payload is required when doing 3.12 SSL reverse shells as Python moved to requiring SSL
35
// context over simple socket wraps.
36
func (py *PythonPayload) SecurePython312(lhost string, lport int) string {
37
- return fmt.Sprintf(Python3_12_Secure, lhost, lport)
+ return fmt.Sprintf(Python3_12Secure, lhost, lport)
38
}
0 commit comments