package main
import (
"fmt"
"io"
"log"
"net/http"
wappalyzer "github.com/projectdiscovery/wappalyzergo"
)
func main() {
resp, err := http.DefaultClient.Get("https://www.cetus.zone")
if err != nil {
log.Fatal(err)
}
data, _ := io.ReadAll(resp.Body) // Ignoring error for example
wappalyzerClient, err := wappalyzer.New()
if err != nil {
log.Fatal(err)
}
fingerprints := wappalyzerClient.Fingerprint(resp.Header, data)
fmt.Printf("%v\n", fingerprints)
// Output: map[Acquia Cloud Platform:{} Amazon EC2:{} Apache:{} Cloudflare:{} Drupal:{} PHP:{} Percona:{} React:{} Varnish:{}]
fingerprintsWithCats := wappalyzerClient.FingerprintWithCats(resp.Header, data)
fmt.Printf("%v\n", fingerprintsWithCats)
}
// go run main.go
// map[Amazon CloudFront:{} Amazon Web Services:{} HSTS:{} Netlify:{}]
// map[Amazon CloudFront:{[31]} Amazon Web Services:{[62]} HSTS:{[16]} Netlify:{[62 31]}]
wappalyzer -i https://www.cetus.zone/
wappalyzer
https://www.cetus.zone/ Amazon CloudFront, HSTS, HTTP/2, Netlify, Framer Motion, Next.js v14.2.16, LottieFiles, Open Graph, Priority Hints, Swiper, Amazon Web Services, React
something is wrong with wappalyzergo this is not giving accurate output but wappalyzer-next giving accurate output i'm thinking mabye wappalyzergo not using headless browser or something is wrong with fingerprints_data.json