@@ -99,7 +99,7 @@ Examples:
9999 fmt .Printf (" Token entropy analysis with %d samples\n " , samples )
100100 }
101101 if config .TestHostHeader {
102- fmt .Printf ("🌐 Host header injection testing enabled\n " )
102+ fmt .Printf ("Host header injection testing enabled\n " )
103103 }
104104 fmt .Println ()
105105
@@ -278,13 +278,13 @@ Examples:
278278 VerboseOutput : verbose ,
279279 }
280280
281- fmt .Printf ("⚡ Testing race conditions for: %s\n " , target )
282- fmt .Printf ("👥 Concurrent workers: %d\n " , workers )
281+ fmt .Printf ("Testing race conditions for: %s\n " , target )
282+ fmt .Printf ("Concurrent workers: %d\n " , workers )
283283 if requestDelay > 0 {
284- fmt .Printf ("⏱️ Request delay: %dms\n " , requestDelay )
284+ fmt .Printf ("Request delay: %dms\n " , requestDelay )
285285 }
286286 if testPayments {
287- fmt .Printf ("💳 Payment race testing enabled\n " )
287+ fmt .Printf ("Payment race testing enabled\n " )
288288 }
289289 if testInventory {
290290 fmt .Printf (" Inventory race testing enabled\n " )
@@ -501,18 +501,18 @@ Examples:
501501 VerboseOutput : verbose ,
502502 }
503503
504- fmt .Printf ("💳 Testing e-commerce payment logic for: %s\n " , target )
504+ fmt .Printf ("Testing e-commerce payment logic for: %s\n " , target )
505505 if testAll || testCart {
506- fmt .Printf ("🛒 Shopping cart testing enabled\n " )
506+ fmt .Printf ("Shopping cart testing enabled\n " )
507507 }
508508 if testAll || testPricing {
509- fmt .Printf ("💰 Pricing logic testing enabled\n " )
509+ fmt .Printf ("Pricing logic testing enabled\n " )
510510 }
511511 if testAll || testCoupons {
512- fmt .Printf ("🎫 Coupon logic testing enabled\n " )
512+ fmt .Printf ("Coupon logic testing enabled\n " )
513513 }
514514 if testAll || testRace {
515- fmt .Printf ("⚡ Race condition testing enabled\n " )
515+ fmt .Printf ("Race condition testing enabled\n " )
516516 }
517517 fmt .Println ()
518518
@@ -546,7 +546,7 @@ Examples:
546546 }
547547 }
548548
549- fmt .Printf ("\n 💳 E -commerce Security Assessment:\n " )
549+ fmt .Printf ("\n E -commerce Security Assessment:\n " )
550550 fmt .Printf (" Total vulnerabilities: %d\n " , len (results ))
551551 fmt .Printf (" Critical issues: %d\n " , criticalCount )
552552 fmt .Printf (" High-risk issues: %d\n " , highCount )
@@ -839,7 +839,7 @@ Examples:
839839 if err != nil {
840840 return fmt .Errorf ("failed to load findings: %w" , err )
841841 }
842- fmt .Printf ("📁 Loaded %d vulnerabilities from %s\n " , len (vulnerabilities ), findingsFile )
842+ fmt .Printf ("Loaded %d vulnerabilities from %s\n " , len (vulnerabilities ), findingsFile )
843843 } else {
844844 // Run comprehensive testing
845845 fmt .Printf (" Running comprehensive business logic tests for: %s\n " , target )
@@ -945,7 +945,7 @@ func printRaceResultsJSON(results []logic.RaceConditionTest) {
945945}
946946
947947func printRaceResultsTable (results []logic.RaceConditionTest , verbose bool ) {
948- fmt .Printf ("⚡ Race Condition Test Results\n " )
948+ fmt .Printf ("Race Condition Test Results\n " )
949949 fmt .Printf ("════════════════════════════\n \n " )
950950
951951 for i , result := range results {
@@ -1042,7 +1042,7 @@ func printPaymentResultsJSON(results []logic.Vulnerability) {
10421042}
10431043
10441044func printPaymentResultsTable (results []logic.Vulnerability , verbose bool ) {
1045- fmt .Printf ("💳 E-commerce Payment Logic Test Results\n " )
1045+ fmt .Printf ("E-commerce Payment Logic Test Results\n " )
10461046 fmt .Printf ("════════════════════════════════════════\n \n " )
10471047
10481048 if len (results ) == 0 {
@@ -1105,9 +1105,9 @@ func getSeverityEmoji(severity string) string {
11051105 case logic .SeverityHigh :
11061106 return ""
11071107 case logic .SeverityMedium :
1108- return "⚡ "
1108+ return "! "
11091109 case logic .SeverityLow :
1110- return "ℹ️ "
1110+ return "i "
11111111 default :
11121112 return ""
11131113 }
0 commit comments