![38% of CISOs Fear They’re Not Moving Fast Enough on AI](https://cdn.sanity.io/images/cgdhsj6q/production/faa0bc28df98f791e11263f8239b34207f84b86f-1024x1024.webp?w=400&fit=max&auto=format)
Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
zntr.io/typogenerator
A Golang typosquat generator utilizing various strategies to generate potential variants of a string. Some strategies are similar to those utilized by dnstwist. This library is not intended to be a complete port of dnstwist and may include additional strategies.
See files under cmd/
for example usage.
all := []strategy.Strategy{
strategy.Omission,
strategy.Repetition,
}
results, err := typogenerator.Fuzz("zenithar", all...)
if err != nil {
fmt.Println(err)
}
for _, r := range results {
for _, p := range r.Permutations {
fmt.Println(p)
}
}
// enithar
// znithar
// zeithar
// zenthar
// ...
all := []strategy.Strategy{
strategy.Omission,
strategy.Repetition,
}
results, err := typogenerator.FuzzDomain("example.com", all...)
if err != nil {
fmt.Println(err)
}
for _, r := range results {
for _, p := range r.Permutations {
fmt.Println(p)
}
}
// xample.com
// eample.com
// exmple.com
// exaple.com
// ...
-
between the first and last character in a string.
between the first and last character in a stringFuzzDomain
.FuzzDomain
.The following strategies are language dependent:
DoubleHit
Replace
Similar
Supported languages include:
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.