You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fmt.Printf("[!] The size of the encrypted shellcode exceeds the maximum display limit.\n\n[!] Supernova cannot display it on the screen.\n\n")
29
+
fmt.Printf("[!] The size of the %s shellcode exceeds the maximum display limit.\n\n[!] Supernova cannot display it on the screen.\n\n", strings.ToLower(process))
30
30
} else {
31
31
iffoundLanguage=="raw" {
32
32
// If the foundLanguage is "raw"
33
-
fmt.Printf("[!] The encrypted shellcode is displayed in raw format represented as hexadecimal on the terminal.\n\n")
33
+
fmt.Printf("[!] The %s shellcode is displayed in raw format represented as hexadecimal on the terminal.\n\n", strings.ToLower(process))
34
34
}
35
35
// Print the encrypted template
36
-
fmt.Printf("[+] The encrypted payload with %s:\n\n%s\n\n", strings.ToUpper(Encryption), template)
36
+
fmt.Printf("[+] The %s payload with %s:\n\n%s\n\n", strings.ToLower(process), strings.ToUpper(Encryption), template)
37
37
}
38
38
} else {
39
39
// Handle the case when Obfuscation is not empty
40
40
ifDebug {
41
41
// If Debug mode is enabled
42
42
iffileSizeFlag {
43
43
// If fileSizeFlag is true
44
-
fmt.Printf("[!] The size of the encrypted shellcode exceeds the maximum display limit.\n\n[!] Supernova cannot display it on the screen.\n\n")
44
+
fmt.Printf("[!] The size of the %s shellcode exceeds the maximum display limit.\n\n[!] Supernova cannot display it on the screen.\n\n", strings.ToLower(process))
45
45
} else {
46
46
iffoundLanguage=="raw" {
47
47
// If the foundLanguage is "raw"
48
-
fmt.Printf("[!] The encrypted shellcode is displayed in raw format represented as hexadecimal on the terminal.\n\n")
48
+
fmt.Printf("[!] The %s shellcode is displayed in raw format represented as hexadecimal on the terminal.\n\n", strings.ToLower(process))
49
49
}
50
50
// Print the encrypted template
51
-
fmt.Printf("[+] The encrypted payload with %s:\n\n%s\n\n", strings.ToUpper(Encryption), template)
51
+
fmt.Printf("[+] The %s payload with %s:\n\n%s\n\n", strings.ToLower(process), strings.ToUpper(Encryption), template)
0 commit comments