Skip to content

Commit b8d0719

Browse files
committed
Add return newline to new payload layout
1 parent 65d177c commit b8d0719

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

payload/dropper/php.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var (
1616
func (php *PHPPayload) HTTP(lhost string, lport int, ssl bool, downloadFile string) string {
1717
if ssl {
1818
return fmt.Sprintf(PHPDropperSecure, lhost, lport, downloadFile)
19-
} else {
20-
return fmt.Sprintf(PHPDropper, lhost, lport, downloadFile)
2119
}
20+
21+
return fmt.Sprintf(PHPDropper, lhost, lport, downloadFile)
2222
}

0 commit comments

Comments
 (0)