Skip to content

Commit 1db5c6f

Browse files
committed
Appease the linter
1 parent bb1f213 commit 1db5c6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

payload/reverse/python.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var (
1313
//go:embed python/reverse27_secure.py
1414
Python27Secure string
1515
//go:embed python/reverse3_12_secure.py
16-
Python3_12_Secure string
16+
Python3_12Secure string
1717
)
1818

1919
func (py *PythonPayload) Default(lhost string, lport int) string {
@@ -34,5 +34,5 @@ func (py *PythonPayload) SecurePython27(lhost string, lport int) string {
3434
// This payload is required when doing 3.12 SSL reverse shells as Python moved to requiring SSL
3535
// context over simple socket wraps.
3636
func (py *PythonPayload) SecurePython312(lhost string, lport int) string {
37-
return fmt.Sprintf(Python3_12_Secure, lhost, lport)
37+
return fmt.Sprintf(Python3_12Secure, lhost, lport)
3838
}

0 commit comments

Comments
 (0)