From de40154fe82b81a568bc95a1e93fc31c3ebaa16a Mon Sep 17 00:00:00 2001 From: Rockey Nebhwani Date: Sun, 8 May 2022 11:53:01 +0100 Subject: [PATCH 1/3] Improve 'Borderfree' detection https://github.com/wappalyzer/wappalyzer/issues/6261 --- src/technologies/b.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/technologies/b.json b/src/technologies/b.json index 78511aeac..5302bd6ea 100644 --- a/src/technologies/b.json +++ b/src/technologies/b.json @@ -1402,16 +1402,16 @@ 106 ], "cookies": { - "bfx.apiKey:": "^[\\w\\d-]+$\\;confidence:25", - "bfx.country:": "^\\w+$\\;confidence:25", - "bfx.language": "^\\w+$\\;confidence:25", - "bfx.logLevel": "^\\w+$\\;confidence:25" + "bfx.apiKey:": "^[\\w\\d-]+$", + "bfx.country:": "^\\w+$", + "bfx.language": "^\\w+$", + "bfx.logLevel": "^\\w+$" }, "description": "Borderfree is an cross-border ecommerce solutions provider.", "icon": "Borderfree.png", "js": { - "bfx._apiKey": "\\;confidence:50", - "bfx._brand": "\\;confidence:50" + "bfx._apiKey": "", + "bfx._brand": "" }, "pricing": [ "poa" @@ -1420,8 +1420,7 @@ "scriptSrc": [ "global\\.prd\\.borderfree\\.com", "wm\\.prd\\.borderfree\\.com", - "bfx\\.js", - "cbt\\.js" + "bfx-objects\\.prd\\.borderfree\\.com" ], "website": "https://www.borderfree.com" }, From 0428d34a70282d5660e99d94a14205c6a497d39b Mon Sep 17 00:00:00 2001 From: Rockey Nebhwani Date: Sun, 8 May 2022 13:37:15 +0100 Subject: [PATCH 2/3] Improve 'Bazaarvoice' & 'Yotpo' detection https://github.com/wappalyzer/wappalyzer/issues/6263 --- src/technologies/b.json | 25 +++++++++++++++++++----- src/technologies/s.json | 11 ----------- src/technologies/y.json | 42 ++++++++++++++++++++++++++++++++++------- 3 files changed, 55 insertions(+), 23 deletions(-) diff --git a/src/technologies/b.json b/src/technologies/b.json index 5302bd6ea..bf9c152d3 100644 --- a/src/technologies/b.json +++ b/src/technologies/b.json @@ -284,10 +284,9 @@ "oss": true, "website": "https://batflat.org" }, - "Bazaarvoice": { + "Bazaarvoice Reviews": { "cats": [ - 90, - 96 + 90 ], "description": "Bazaarvoice is a provider of user-generated content solutions like ratings and reviews and Q&A.", "icon": "Bazaarvoice.png", @@ -300,10 +299,26 @@ ], "saas": true, "scriptSrc": [ - "apps\\.bazaarvoice\\.com", + "apps\\.bazaarvoice\\.com" + ], + "website": "https://www.bazaarvoice.com/products/ratings-and-reviews/" + }, + "Bazaarvoice Curation": { + "cats": [ + 96 + ], + "description": "Bazaarvoice Curation is a content curation service Bazaarvoice provides post it's acquisition of Curalate.", + "icon": "Bazaarvoice.png", + "pricing": [ + "high", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "edge\\.curalate\\.com", "cdn\\.curalate\\.com" ], - "website": "https://www.bazaarvoice.com/" + "website": "https://www.bazaarvoice.com/products/visual-and-social-content/" }, "Beans": { "cats": [ diff --git a/src/technologies/s.json b/src/technologies/s.json index bb1bec525..78ebf8716 100644 --- a/src/technologies/s.json +++ b/src/technologies/s.json @@ -187,17 +187,6 @@ }, "website": "http://www.simplemachines.org" }, - "SMSBump": { - "cats": [ - 32 - ], - "description": "SMS Bump is a SMS marketing and automations app.", - "icon": "Smsbump.png", - "js": { - "SMSBumpForm": "" - }, - "website": "https://smsbump.com/" - }, "SOBI 2": { "cats": [ 19 diff --git a/src/technologies/y.json b/src/technologies/y.json index 23f5d36d2..d4ad4ee81 100644 --- a/src/technologies/y.json +++ b/src/technologies/y.json @@ -401,17 +401,15 @@ "scriptSrc": "\\.yoomoney\\.ru/", "website": "https://yoomoney.ru" }, - "Yotpo": { + "Yotpo Loyalty & Referrals": { "cats": [ - 84, - 90 + 84 ], "description": "Yotpo is a user-generated content marketing platform.", "icon": "Yotpo.svg", "js": { "SwellConfig": "", - "swellAPI": "", - "yotpo": "" + "swellAPI": "" }, "pricing": [ "freemium", @@ -420,10 +418,40 @@ ], "saas": true, "scriptSrc": [ - "\\.yotpo\\.com/", "cdn\\.swellrewards\\.com/" ], - "website": "https://www.yotpo.com" + "website": "https://www.yotpo.com/platform/loyalty/" + }, + "Yotpo Reviews": { + "cats": [ + 90 + ], + "description": "Yotpo is a user-generated content marketing platform.", + "icon": "Yotpo.svg", + "js": { + "yotpo": "" + }, + "pricing": [ + "freemium", + "low", + "recurring" + ], + "saas": true, + "scriptSrc": [ + "\\.yotpo\\.com/" + ], + "website": "https://www.yotpo.com/platform/reviews/" + }, + "Yotpo SMSBump": { + "cats": [ + 32 + ], + "description": "SMS Bump is a SMS marketing and automations app which was acquired by Yotpo.", + "icon": "Yotpo.svg", + "js": { + "SMSBumpForm": "" + }, + "website": "https://www.yotpo.com/platform/smsbump-sms-marketing/" }, "Yottaa": { "cats": [ From 0e8518345df223a58f12ac4d13b4ec29d94d6835 Mon Sep 17 00:00:00 2001 From: Rockey Nebhwani Date: Sun, 8 May 2022 13:39:50 +0100 Subject: [PATCH 3/3] Removing SMSBump icon --- .../webextension/images/icons/Smsbump.png | Bin 1237 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 src/drivers/webextension/images/icons/Smsbump.png diff --git a/src/drivers/webextension/images/icons/Smsbump.png b/src/drivers/webextension/images/icons/Smsbump.png deleted file mode 100644 index 8c47c420cc94f54b08df1636c3dd8b3c52f89638..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1237 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnE3?yBabR7dyEa{HEjtmSN`?>!lvVtU&J%W50 z7^>757#dm_7=8hT8eT9klo~KFyh>nTu$sZZAYL$MSD+0817mi8Pl)UP|NkBKJD6V$ zF~1#caW%x^YB0n92J0JsKoKC<;e3GQ^-z%bm0-)O!9a%PRS?(sOd5~@VqXg}zZPtE z10-k(Gz2UQGVNNZ3Q1|C=N8l3@iv%A8LLDBn3iOpe9>f16y}B#Oh)o zP(1WM&=#PR7=UcEtD$Ds!y)P+W?Ebcvbr8>buGy33P`c(rC@WQBSB_D+#I5JG1mBu zFVIs!Lx9c$sks~hF#)I&BIs~6)c9s3RPY+qkCq^308y~z<51(fU^d97AQPZcSAZ&m z&B1|VelZ9r4h}JBm_SXt90^pc4R#DLoU07lT!HaXUJ~RN%)nC2*LstQ_r@dv`@e;Y z-U>ZtjmlZ;rTFnm+V*3v8ee}mZDc<`!S>HjmHyWcJ3anou6iMMi8+aJo0Hm?GX?9c zE#>upD0MAA{=J!->sq_>H`#YjVrD+$5qVm#dfhBA;SneQsiP4+$w%Us8b6nrIQMK_ z%CAr2rEG_Fdh=n3X;8m12IpoB?3gJs?nx^c#aHha!p7VMDK zc3J21bFTGE4fk(2k(fF2r1qS!$g5|f6dy#eo0%oMM4!2TFY(knxy66q+sn&rdj932 zVRWHWqLO*@3eDv4o~|$l`N1*g1fRC#@15M| zu$Miia?uH9ejBNn$$y0BvF_RP=r>j|fvQOA2b&jm}z))5# zag8WRNi0dVN-jzTQVd20hL*Yp#=3^aAqJLKCgxT~#@YskRt5&gPycB|(U6;;l9^VC zTf??#F1A1ok{}y`^V3So6N^$A%FE03GV`*FlM@S4_413-XTP(N0xAlx3W+EQN-S3> zD9TUE%t=)!sVqoU$Sf#HW?-n8^Y{}FM`4(T#wq{PXFQ(m_pwD+_y17GV}v zaA`0(oWiWUIYi;~jVmXPoH-(Mg#C1b#{w@shF9W(C7+y3rvj~D@O1TaS?83{1OU%M B`fmUL