Skip to content

Instantly share code, notes, and snippets.

@sullemanhossam
Created August 9, 2024 22:44
Show Gist options
  • Save sullemanhossam/eeea6eeaf82caaded8ac267c20f228da to your computer and use it in GitHub Desktop.
Save sullemanhossam/eeea6eeaf82caaded8ac267c20f228da to your computer and use it in GitHub Desktop.
package mac
import (
"fmt"
"network-chesswork/utilities"
)
// Sniff performs a sniffing operation based on the provided range.
func Sniff(interfaceRange string) error {
if interfaceRange == "" {
return fmt.Errorf("invalid range provided")
}
// Define the path to your script
scriptPath := "./scripts/sniff-network.bash"
// Define environment variables to pass to the script
props := map[string]string{
"range": interfaceRange,
}
// Run the script with the environment variables
success, err := utilities.RunScript(scriptPath, props)
if !success {
fmt.Printf("Script execution failed: %v\n", err)
} else {
fmt.Println("Script executed successfully")
}
// Assuming utils.RunScript takes a string and an interface{}
if err != nil {
return err
}
return nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment