@ -4,6 +4,7 @@ import (
"go/ast"
"go/ast"
"go/token"
"go/token"
"math"
"math"
mathrand "math/rand"
)
)
type swap struct { }
type swap struct { }
@ -44,7 +45,7 @@ func generateSwapCount(dataLen int) int {
maxExtraPositions := dataLen / 2 // Limit the number of extra positions to half the data length
maxExtraPositions := dataLen / 2 // Limit the number of extra positions to half the data length
if maxExtraPositions > 1 {
if maxExtraPositions > 1 {
swapCount += genRand Intn( maxExtraPositions )
swapCount += mathrand . Intn( maxExtraPositions )
}
}
if swapCount % 2 != 0 { // Swap count must be even
if swapCount % 2 != 0 { // Swap count must be even
swapCount ++
swapCount ++
@ -54,12 +55,14 @@ func generateSwapCount(dataLen int) int {
func ( x swap ) obfuscate ( data [ ] byte ) * ast . BlockStmt {
func ( x swap ) obfuscate ( data [ ] byte ) * ast . BlockStmt {
swapCount := generateSwapCount ( len ( data ) )
swapCount := generateSwapCount ( len ( data ) )
shiftKey := byte ( genRand Intn( math . MaxUint8 ) )
shiftKey := byte ( mathrand . Intn( math . MaxUint8 ) )
positions := gen erate IntSlice( len ( data ) , swapCount )
positions := gen Rand IntSlice( len ( data ) , swapCount )
for i := len ( positions ) - 2 ; i >= 0 ; i -= 2 {
for i := len ( positions ) - 2 ; i >= 0 ; i -= 2 {
localKey := byte ( i ) + byte ( positions [ i ] ^ positions [ i + 1 ] ) + shiftKey // Generate local key for xor based on random key and byte position
// Generate local key for xor based on random key and byte position
data [ positions [ i ] ] , data [ positions [ i + 1 ] ] = data [ positions [ i + 1 ] ] ^ localKey , data [ positions [ i ] ] ^ localKey // Swap bytes from i+1 to i and xor using local key
localKey := byte ( i ) + byte ( positions [ i ] ^ positions [ i + 1 ] ) + shiftKey
// Swap bytes from i+1 to i and xor using local key
data [ positions [ i ] ] , data [ positions [ i + 1 ] ] = data [ positions [ i + 1 ] ] ^ localKey , data [ positions [ i ] ] ^ localKey
}
}
return & ast . BlockStmt { List : [ ] ast . Stmt {
return & ast . BlockStmt { List : [ ] ast . Stmt {
@ -89,13 +92,11 @@ func (x swap) obfuscate(data []byte) *ast.BlockStmt {
Tok : token . ADD_ASSIGN ,
Tok : token . ADD_ASSIGN ,
Rhs : [ ] ast . Expr { intLiteral ( 2 ) } ,
Rhs : [ ] ast . Expr { intLiteral ( 2 ) } ,
} ,
} ,
Body : & ast . BlockStmt {
Body : & ast . BlockStmt { List : [ ] ast . Stmt {
List : [ ] ast . Stmt {
& ast . AssignStmt {
& ast . AssignStmt {
Lhs : [ ] ast . Expr { ident ( "localKey" ) } ,
Lhs : [ ] ast . Expr { ident ( "localKey" ) } ,
Tok : token . DEFINE ,
Tok : token . DEFINE ,
Rhs : [ ] ast . Expr {
Rhs : [ ] ast . Expr { & ast . BinaryExpr {
& ast . BinaryExpr {
X : & ast . BinaryExpr {
X : & ast . BinaryExpr {
X : callExpr ( ident ( "byte" ) , ident ( "i" ) ) ,
X : callExpr ( ident ( "byte" ) , ident ( "i" ) ) ,
Op : token . ADD ,
Op : token . ADD ,
@ -111,8 +112,7 @@ func (x swap) obfuscate(data []byte) *ast.BlockStmt {
} ,
} ,
Op : token . ADD ,
Op : token . ADD ,
Y : intLiteral ( int ( shiftKey ) ) ,
Y : intLiteral ( int ( shiftKey ) ) ,
} ,
} } ,
} ,
} ,
} ,
& ast . AssignStmt {
& ast . AssignStmt {
Lhs : [ ] ast . Expr {
Lhs : [ ] ast . Expr {
@ -141,8 +141,7 @@ func (x swap) obfuscate(data []byte) *ast.BlockStmt {
} ,
} ,
} ,
} ,
} ,
} ,
} ,
} } ,
} ,
} ,
} ,
} }
} }
}
}