mirror of
https://github.com/phishingclub/phishingclub.git
synced 2026-06-08 23:43:59 +02:00
07c8adaf76
Signed-off-by: Ronni Skansing <rskansing@gmail.com>
8 lines
166 B
Go
8 lines
166 B
Go
package utils
|
|
|
|
func IsGREASEUint16(v uint16) bool {
|
|
// First byte is same as second byte
|
|
// and lowest nibble is 0xa
|
|
return ((v >> 8) == v&0xff) && v&0xf == 0xa
|
|
}
|