URL: http://links.notification.intuit.com Model: Joe Sandbox AI | {
"typosquatting": false,
"unusual_query_string": false,
"suspicious_tld": false,
"ip_in_url": false,
"long_subdomain": false,
"malicious_keywords": false,
"encoded_characters": false,
"redirection": false,
"contains_email_address": false,
"known_domain": true,
"brand_spoofing_attempt": false,
"third_party_hosting": false,
"reasoning": "This appears to be a legitimate subdomain of intuit.com, which is a well-known financial software company. The subdomain structure (links.notification) is typical for corporate email notification systems."
} |
URL: http://links.notification.intuit.com |
URL: https://connect.intuit.com/t/scs-v1-2ab5cd5cd4e340... Model: Joe Sandbox AI | {
"risk_score": 2,
"reasoning": "This script appears to be a legitimate analytics implementation using the Segment analytics platform. While it uses some legacy practices like the `XDomainRequest` API, the overall behavior is consistent with typical analytics functionality. The script does not exhibit any high-risk indicators like dynamic code execution or data exfiltration. The risk is low, with some minor concerns around the use of outdated APIs."
} |
try {
var analytics = window.analytics = window.analytics || [];
if (!analytics.initialize) {
if (analytics.invoked) window.console && console.error && console.error("Segment snippet included twice.");
else {
analytics.invoked = !0;
analytics.methods = ["trackSubmit", "trackClick", "trackLink", "trackForm", "pageview", "identify", "reset", "group", "track", "ready", "alias", "debug", "page", "once", "off", "on"];
analytics.factory = function(t) {
return function() {
var e = Array.prototype.slice.call(arguments);
e.unshift(t);
analytics.push(e);
return analytics
}
};
for (var t = 0; t < analytics.methods.length; t++) {
var e = analytics.methods[t];
analytics[e] = analytics.factory(e)
}
analytics.load = function(t, e) {
try {
var n = document.createElement("script");
n.type = "text/javascript";
n.async = !0;
n.src = "https://cdn.segment.com/analytics.js/v1/" + t + "/analytics.min.js";
n.onerror = (error) => {
window.analyticsError = error
}
var a = document.getElementsByTagName("script")[0];
a.parentNode.insertBefore(n, a);
analytics._loadOptions = e
} catch (error) {
window.analyticsError = error
}
};
analytics.SNIPPET_VERSION = "4.1.0";
analytics.load("xCFNzXfegnqVeUJzI6KkruZL5ZzL7iXy");
analytics.page();
}
};
} catch (e) {
window.analyticsError = e
}
|
URL: https://connect.intuit.com/t/scs-v1-2ab5cd5cd4e340... Model: Joe Sandbox AI | {
"risk_score": 1,
"reasoning": "This script checks if the `performance` object and `performance.now()` function are available, and if so, it sets a global variable `window.SSR_VISIBLE` to the current timestamp. This is a common practice for measuring the time it takes to render a page on the server-side (SSR) and is generally considered a benign and legitimate use case."
} |
if (typeof performance === 'object' && typeof performance.now === 'function') {
window.SSR_VISIBLE = performance.now();
}
|
URL: https://connect.intuit.com/t/scs-v1-2ab5cd5cd4e340... Model: Joe Sandbox AI | {
"risk_score": 5,
"reasoning": "The script demonstrates moderate-risk behaviors, including external data transmission and potential data exfiltration. However, the intent appears to be error reporting and logging, which is a common practice. The script also interacts with known, reputable domains, which reduces the overall risk. Further review may be necessary to ensure the script is not misusing the data it collects."
} |
window.onerror = function (message, source, lineno, colno, error) {
function callSSRErrorEndpoint() {
try {
let headers = {
'Content-Type': 'application/json',
};
let endpoint = window.location.href.replace('view', 'clientError');
let xhr = new XMLHttpRequest();
xhr.open('POST', endpoint);
xhr.withCredentials = true;
Object.keys(headers).map(function (header) {
xhr.setRequestHeader(header, headers[header]);
});
xhr.send(
JSON.stringify({
EventName: 'Uncaught Error',
EventType: 'Global Error Catcher',
message: message,
source: source,
lineNumber: lineno,
colNumber: colno,
error: error,
stack: error && error.stack,
ErrorMessage: error && error.message,
})
);
} catch (e) {
console.log(e);
}
}
try {
if (typeof window.__NEXT_DATA__ === 'object') {
let state = __NEXT_DATA__.props.initialReduxState;
let featureFlags = state.featureFlags;
let config = state.config;
let invoice = state.invoice;
let auth = state.auth;
let wallet = state.wallet;
let endpoint = '/' + config.portal + '/rest/reporting/batch';
let ssrtid = config.ssrtid;
let headers = {
'Content-Type': 'application/json',
'Intuit-DomainId': invoice.domainId,
'Intuit-IntuitId': auth.entityId,
'Intuit-RealmId': auth.realmId,
'Intuit-ACSToken': invoice.token,
sessionTicket: auth.ticket,
'user-signed-in': auth.isUserSignedIn,
syncToken: auth.syncToken,
'ssr-session-id': ssrtid,
};
let xhr = new XMLHttpRequest();
xhr.open('POST', endpoint);
xhr.withCredentials = true;
Object.keys(headers).map(function (header) {
xhr.setRequestHeader(header, headers[header]);
});
xhr.send(
JSON.stringify({
messages: [
{
data: {
EventName: 'Uncaught Error',
EventType: 'Global Error Catcher',
message: message,
source: source,
lineNumber: lineno,
colNumber: colno,
error: error,
stack: error && error.stack,
ErrorMessage: error && error.message,
endpoint: endpoint,
ssrtid: ssrtid,
token: invoice.token,
companyLocale: invoice.companyLocale,
view2pay: invoice.view2pay,
isDetectingApplePayStatus: wallet.isDetectingApplePayStatus,
fetchWalletStatus: wallet.fetchWalletStatus,
isUserSignedIn: auth.isUserSignedIn,
},
opts: {
logLevel: 3,
logType: 'error',
userLogLevel: 3,
},
},
],
ssrtid: ssrtid,
})
);
} else {
callSSRErrorEndpoint();
}
} catch (e) {
callSSRErrorEndpoint();
}
}
|
URL: https://static.cns-icn-prod.a.intuit.com/_next/sta... Model: Joe Sandbox AI | {
"risk_score": 3,
"reasoning": "The provided JavaScript snippet appears to be a part of a larger React application. It contains some common React-related code, such as error handling, attribute handling, and DOM manipulation. While it uses some legacy APIs like `XDomainRequest`, the overall behavior seems to be focused on rendering and managing the application's UI, which is a typical and expected use case for a React application. There are no clear indicators of malicious intent or high-risk behaviors, so the risk score is assessed as low."
} |
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[9774],{64448:function(e,n,t){var r=t(67294),l=t(63840);function a(e){for(var n="https://reactjs.org/docs/error-decoder.html?invariant="+e,t=1;t<arguments.length;t++)n+="&args[]="+encodeURIComponent(arguments[t]);return"Minified React error #"+e+"; visit "+n+" for the full message or use the non-minified dev environment for full errors and additional helpful warnings."}var o=new Set,u={};function i(e,n){s(e,n),s(e+"Capture",n)}function s(e,n){for(u[e]=n,e=0;e<n.length;e++)o.add(n[e])}var c=!("undefined"===typeof window||"undefined"===typeof window.document||"undefined"===typeof window.document.createElement),f=Object.prototype.hasOwnProperty,d=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,p={},m={};function h(e,n,t,r,l,a,o){this.acceptsBooleans=2===n||3===n||4===n,this.attributeName=r,this.attributeNamespace=l,this.mustUseProperty=t,this.propertyName=e,this.type=n,this.sanitizeURL=a,this.removeEmptyString=o}var v={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach((function(e){v[e]=new h(e,0,!1,e,null,!1,!1)})),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach((function(e){var n=e[0];v[n]=new h(n,1,!1,e[1],null,!1,!1)})),["contentEditable","draggable","spellCheck","value"].forEach((function(e){v[e]=new h(e,2,!1,e.toLowerCase(),null,!1,!1)})),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach((function(e){v[e]=new h(e,2,!1,e,null,!1,!1)})),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach((function(e){v[e]=new h(e,3,!1,e.toLowerCase(),null,!1,!1)})),["checked","multiple","muted","selected"].forEach((function(e){v[e]=new h(e,3,!0,e,null,!1,!1)})),["capture","download"].forEach((function(e){v[e]=new h(e,4,!1,e,null,!1,!1)})),["cols","rows","size","span"].forEach((function(e){v[e]=new h(e,6,!1,e,null,!1,!1)})),["rowSpan","start"].forEach((function(e){v[e]=new h(e,5,!1,e.toLowerCase(),null,!1,!1)}));var g=/[\-:]([a-z])/g;function y(e){return e[1].toUpperCase()}function b(e,n,t,r){var l=v.hasOwnProperty(n)?v[n]:null;(null!==l?0!==l.type:r||!(2<n.length)||"o"!==n[0]&&"O"!==n[0]||"n"!==n[1]&&"N"!==n[1])&&(function(e,n,t,r){if(null===n||"undefined"===typeof n||function(e,n,t,r){if(null!==t&&0===t.type)return!1;switch(typeof n){case"function":case"symbol":return!0;case"boolean":return!r&&(null!==t?!t.acceptsBooleans:"data-"!==(e=e.toLowerCase().slice(0,5))&&"aria-"!==e);default:return!1}}(e,n,t,r))return!0;if(r)return!1;if(null!==t)switch(t.type){case 3:return!n;case 4:return!1===n;case 5:return isNaN(n);case 6:return isNaN(n)||1>n}return!1}(n,t,l,r)&&(t=null),r||null===l?function(e){return!!f.call(m,e)||!f.call(p,e)&&(d.test(e)?m[e]=!0:(p[e]=!0,!1))}(n)&&(null===t?e.removeAttribute(n):e.setAttribute(n,""+t)):l.mustUseProperty?e[l.propertyName]=null===t?3!==l.type&&"":t:(n=l.attributeName,r=l.attributeNamespace,null===t?e.removeAttribute(n):(t=3===(l=l.type)||4===l&&!0===t?"":""+t,r?e.setAttributeNS(r,n,t):e.setAttribute(n,t))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name gly |
URL: https://static.cns-icn-prod.a.intuit.com/_next/sta... Model: Joe Sandbox AI | {
"risk_score": 4,
"reasoning": "The provided JavaScript snippet appears to be a part of a larger web application and contains some behaviors that require further review, but does not demonstrate clear malicious intent. The script uses standard web development practices like DOM manipulation and data transmission, but some of these behaviors could be overly aggressive or lack transparency. Overall, the script warrants closer inspection but is likely not a high-risk security concern."
} |
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[9595],{4722:function(s,e,i){i.d(e,{Z:function(){return b}});var a=i(59499),l=i(19848),t=i.n(l),r=i(67294),o=i(44012),n=i(54490),c=i(55244),u=i(85893);var x=s=>{let{color:e="#6B6C72",width:i=24,height:a=24,className:l=""}=s;return(0,u.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:i,height:a,className:l,viewBox:"0 0 24 24",fill:"none",children:[(0,u.jsx)("path",{d:"M17 4H15.816C15.6099 3.41709 15.2288 2.91209 14.7247 2.55409C14.2206 2.19608 13.6183 2.00256 13 2H11C10.3817 2.00256 9.77937 2.19608 9.2753 2.55409C8.77123 2.91209 8.39008 3.41709 8.184 4H7C6.20435 4 5.44129 4.31607 4.87868 4.87868C4.31607 5.44129 4 6.20435 4 7V19C4 19.7956 4.31607 20.5587 4.87868 21.1213C5.44129 21.6839 6.20435 22 7 22H17C17.7956 22 18.5587 21.6839 19.1213 21.1213C19.6839 20.5587 20 19.7956 20 19V7C20 6.20435 19.6839 5.44129 19.1213 4.87868C18.5587 4.31607 17.7956 4 17 4ZM11 4H13C13.2652 4 13.5196 4.10536 13.7071 4.29289C13.8946 4.48043 14 4.73478 14 5V6H10V5C10 4.73478 10.1054 4.48043 10.2929 4.29289C10.4804 4.10536 10.7348 4 11 4ZM18 19C18 19.2652 17.8946 19.5196 17.7071 19.7071C17.5196 19.8946 17.2652 20 17 20H7C6.73478 20 6.48043 19.8946 6.29289 19.7071C6.10536 19.5196 6 19.2652 6 19V7C6 6.73478 6.10536 6.48043 6.29289 6.29289C6.48043 6.10536 6.73478 6 7 6H8V7C8 7.26522 8.10536 7.51957 8.29289 7.70711C8.48043 7.89464 8.73478 8 9 8H15C15.2652 8 15.5196 7.89464 15.7071 7.70711C15.8946 7.51957 16 7.26522 16 7V6H17C17.2652 6 17.5196 6.10536 17.7071 6.29289C17.8946 6.48043 18 6.73478 18 7V19Z",fill:e}),(0,u.jsx)("path",{d:"M13.543 11.293L11.25 13.586L10.457 12.793C10.2684 12.6108 10.0158 12.51 9.75361 12.5123C9.49141 12.5146 9.2406 12.6198 9.05519 12.8052C8.86978 12.9906 8.76461 13.2414 8.76234 13.5036C8.76006 13.7658 8.86085 14.0184 9.04301 14.207L10.543 15.707C10.7305 15.8945 10.9848 15.9998 11.25 15.9998C11.5152 15.9998 11.7695 15.8945 11.957 15.707L14.957 12.707C15.1392 12.5184 15.24 12.2658 15.2377 12.0036C15.2354 11.7414 15.1302 11.4906 14.9448 11.3052C14.7594 11.1198 14.5086 11.0146 14.2464 11.0123C13.9842 11.01 13.7316 11.1108 13.543 11.293Z",fill:e})]})},d=i(85545),p=i(46612),y=i(84293);var m=s=>{let{index:e,isSuccessScreen:i,autoPayInfo:{isAutoPay:a=!1,isAutoPayOn:l=!1}={},balance:m,docNumber:f,link:g,dueDate:b,saleStatus:h,saleType:k,onHoverBackground:j,isDisplayWhenNoBalance:_=!1,viewInvoiceCallback:w}=s;if(!b||!g||!f||!m&&!_)return(0,u.jsx)(r.Fragment,{});let v=(0,p.formatISO8601Date)(b);if(!v)return(0,u.jsx)(r.Fragment,{});const C=new Date;v.setHours(0,0,0,0),C.setHours(0,0,0,0);const O=(+v-+C)/864e5,N=w||(()=>{const s=i?"success_screen":null;d.Z.clickViewOpenInvoice({invoiceId:f,source:s}),window.open(g,"_blank")});return k=k?(0,u.jsx)(o.Z,{id:k,defaultMessage:k}):"Invoice",(0,u.jsxs)(r.Fragment,{children:[(0,u.jsxs)("div",{"data-cy":`OpenInvoiceCard-${f}`,className:t().dynamic([["2172567305",[i?"18px":"14px",j,y.colors.gray02,i?"14px":"12px",y.colors.gray02,y.colors.blue,y.colors.blue,y.colors.blue]]])+" card",children:[(0,u.jsxs)("div",{className:t().dynamic([["2172567305",[i?"18px":"14px",j,y.colors.gray02,i?"14px":"12px",y.colors.gray02,y.colors.blue,y.colors.blue,y.colors.blue]]])+" balance",children:[(0,u.jsx)(n.BK,{value:m,style:"currency",currency:"USD"}),(!i&&!a||a&&0===e)&&(0,u.jsxs)("div",{className:t().dynamic([["2172567305",[i?"18px":"14px",j,y.colors.gray02,i?"14px":"12px",y.colors.gray02,y.colors.blue,y.colors.blue,y.colors.blue]]])+" invoice-number",children:[k,"\xa0",f]})]}),(0,u.jsxs)("div",{className:t().dynamic([["2172567305",[i?"18px":"14px",j,y.colors.gray02,i?"14px":"12px",y.colors.gray02,y.colors.blue,y.colors.blue,y.colors.blue]]])+" info",children:[i&&(0,u.jsxs)(r.Fragment,{children:[k,"\xa0",f,(0,u.jsx)("span",{className:t().dynamic([["2172567305",[i?"18px":"14px",j,y.colors.gray02,i?"14px":"12px",y.colors.gray02,y.colors.blue,y.colors.blue,y.colors.blue]]])+" separator"})]}),a&&0===e&&(0,u.jsx)("span",{className:t().dynamic([["217256730 |
URL: https://static.cns-icn-prod.a.intuit.com/_next/sta... Model: Joe Sandbox AI | {
"risk_score": 2,
"reasoning": "The provided JavaScript snippet appears to be a part of a larger Next.js application and does not contain any high-risk indicators. It primarily consists of utility functions related to path manipulation and locale handling, which are common in web development frameworks. The code does not exhibit any behaviors associated with dynamic code execution, data exfiltration, or obfuscation. While it uses some legacy APIs like `XDomainRequest`, these are not inherently malicious and are likely used for compatibility purposes. Overall, the snippet seems to be part of a legitimate web application and poses a low risk."
} |
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[179],{26085:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"addBasePath",{enumerable:!0,get:function(){return a}});const n=r(97686),o=r(56962);function a(e,t){return(0,o.normalizePathTrailingSlash)((0,n.addPathPrefix)(e,""))}("function"===typeof t.default||"object"===typeof t.default&&null!==t.default)&&"undefined"===typeof t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},84318:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"addLocale",{enumerable:!0,get:function(){return n}});r(56962);const n=function(e){return e};("function"===typeof t.default||"object"===typeof t.default&&null!==t.default)&&"undefined"===typeof t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},39355:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"detectDomainLocale",{enumerable:!0,get:function(){return r}});const r=function(){0};("function"===typeof t.default||"object"===typeof t.default&&null!==t.default)&&"undefined"===typeof t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},52919:function(e,t,r){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),Object.defineProperty(t,"hasBasePath",{enumerable:!0,get:function(){return o}});const n=r(16977);function o(e){return(0,n.pathHasPrefix)(e,"")}("function"===typeof t.default||"object"===typeof t.default&&null!==t.default)&&"undefined"===typeof t.default.__esModule&&(Object.defineProperty(t.default,"__esModule",{value:!0}),Object.assign(t.default,t),e.exports=t.default)},41135:function(e,t){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),function(e,t){for(var r in t)Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}(t,{DOMAttributeNames:function(){return r},isEqualNode:function(){return o},default:function(){return i}});const r={acceptCharset:"accept-charset",className:"class",htmlFor:"for",httpEquiv:"http-equiv",noModule:"noModule"};function n(e){let{type:t,props:n}=e;const o=document.createElement(t);for(const s in n){if(!n.hasOwnProperty(s))continue;if("children"===s||"dangerouslySetInnerHTML"===s)continue;if(void 0===n[s])continue;const e=r[s]||s.toLowerCase();"script"!==t||"async"!==e&&"defer"!==e&&"noModule"!==e?o.setAttribute(e,n[s]):o[e]=!!n[s]}const{children:a,dangerouslySetInnerHTML:i}=n;return i?o.innerHTML=i.__html||"":a&&(o.textContent="string"===typeof a?a:Array.isArray(a)?a.join(""):""),o}function o(e,t){if(e instanceof HTMLElement&&t instanceof HTMLElement){const r=t.getAttribute("nonce");if(r&&!e.getAttribute("nonce")){const n=t.cloneNode(!0);return n.setAttribute("nonce",""),n.nonce=r,r===e.nonce&&e.isEqualNode(n)}}return e.isEqualNode(t)}let a;function i(){return{mountedInstances:new Set,updateHead:e=>{const t={};e.forEach((e=>{if("link"===e.type&&e.props["data-optimized-fonts"]){if(document.querySelector(`style[data-href="${e.props["data-href"]}"]`))return;e.props.href=e.props["data-href"],e.props["data-href"]=void 0}const r=t[e.type]||[];r.push(e),t[e.type]=r}));const r=t.title?t.title[0]:null;let n="";if(r){const{children:e}=r.props;n="string"===typeof e?e:Array.isArray(e)?e.join(""):""}n!==document.title&&(document.title=n),["meta","base","link","style","script"].forEach((e=>{a(e,t[e]||[])}))}}}a=(e,t)=>{const r=document.getElementsByTagName("head")[0],a=r.querySelector("meta[name=next-head-count]");const i=Number(a.content),s=[];for(let n=0,o=a.previousElementSibling;n<i;n++,o=(null==o?void 0:o.previousElementSibling)||null){var u;(null==o||null==(u=o.tagName)?void 0:u.toLowerCase())===e&&s.push(o)}const l=t.map(n).filter((e=>{for(let t=0,r=s.length;t<r;t++){if(o(s[t],e))return s.splice(t,1),!1}return!0}));s.forEach((e |
URL: https://cdn.segment.com/analytics-next/bundles/ajs... Model: Joe Sandbox AI | {
"risk_score": 3,
"reasoning": "The provided JavaScript snippet appears to be a part of the Segment Analytics Next.js integration. It includes behaviors related to loading and initializing a destination integration, which is a common practice for analytics platforms. While it uses some legacy APIs like `XDomainRequest`, the overall behavior is consistent with legitimate analytics functionality and does not demonstrate any high-risk indicators. The risk score is low, as the script is likely implementing standard analytics practices, albeit with some outdated techniques."
} |
"use strict";(self.webpackChunk_segment_analytics_next=self.webpackChunk_segment_analytics_next||[]).push([[464],{9254:function(t,n,i){function e(t,n){var i,e;return"boolean"==typeof(null==n?void 0:n.enabled)?n.enabled:null===(e=null===(i=null==t?void 0:t.__default)||void 0===i?void 0:i.enabled)||void 0===e||e}i.d(n,{n:function(){return e}})},3162:function(t,n,i){i.r(n),i.d(n,{LegacyDestination:function(){return G},ajsDestinations:function(){return S}});var e=i(5163),r=i(4122),o=i(94),s=i(8404),a=i(1494),u=i(204),c=i(6096),l=i(9254),d=i(5944),h=i(8044),v=i(3098),f=i(3061),p=i(6338),m=i(7566),g=i(7070);function y(t){return t.toLowerCase().replace(".","").replace(/\s+/g,"-")}function w(t,n){return void 0===n&&(n=!1),n?btoa(t).replace(/=/g,""):void 0}function b(t,n,i,r){return(0,e.mG)(this,void 0,Promise,(function(){var o,s,a,u,c,l;return(0,e.Jh)(this,(function(d){switch(d.label){case 0:o=y(n),s=w(o,r),a=(0,m.Kg)(),u="".concat(a,"/integrations/").concat(null!=s?s:o,"/").concat(i,"/").concat(null!=s?s:o,".dynamic.js.gz"),d.label=1;case 1:return d.trys.push([1,3,,4]),[4,(0,g.v)(u)];case 2:return d.sent(),function(t,n,i){var r,o;try{var s=(null!==(o=null===(r=null===window||void 0===window?void 0:window.performance)||void 0===r?void 0:r.getEntriesByName(t,"resource"))&&void 0!==o?o:[])[0];s&&n.stats.gauge("legacy_destination_time",Math.round(s.duration),(0,e.ev)([i],s.duration<100?["cached"]:[],!0))}catch(t){}}(u,t,n),[3,4];case 3:throw c=d.sent(),t.stats.gauge("legacy_destination_time",-1,["plugin:".concat(n),"failed"]),c;case 4:return l=window["".concat(o,"Deps")],[4,Promise.all(l.map((function(t){return(0,g.v)(a+t+".gz")})))];case 5:return d.sent(),window["".concat(o,"Loader")](),[2,window["".concat(o,"Integration")]]}}))}))}var P=i(7595),_=i(98),z=i(7848);function k(t,n){return(0,e.mG)(this,void 0,Promise,(function(){var i,r=this;return(0,e.Jh)(this,(function(a){switch(a.label){case 0:return i=[],(0,o.s)()?[2,n]:[4,(0,h.x)((function(){return n.length>0&&(0,o.G)()}),(function(){return(0,e.mG)(r,void 0,void 0,(function(){var r,o;return(0,e.Jh)(this,(function(e){switch(e.label){case 0:return(r=n.pop())?[4,(0,c.a)(r,t)]:[2];case 1:return o=e.sent(),o instanceof s._||i.push(r),[2]}}))}))}))];case 1:return a.sent(),i.map((function(t){return n.pushWithBackoff(t)})),[2,n]}}))}))}var G=function(){function t(t,n,i,r,o,s){void 0===r&&(r={});var a=this;this.options={},this.type="destination",this.middleware=[],this.initializePromise=(0,z.d)(),this.flushing=!1,this.name=t,this.version=n,this.settings=(0,e.pi)({},r),this.disableAutoISOConversion=o.disableAutoISOConversion||!1,this.integrationSource=s,this.settings.type&&"browser"===this.settings.type&&delete this.settings.type,this.initializePromise.promise.then((function(t){return a._initialized=t}),(function(){})),this.options=o,this.buffer=o.disableClientPersistence?new v.Z(4,[]):new f.$(4,"".concat(i,":dest-").concat(t)),this.scheduleFlush()}return t.prototype.isLoaded=function(){return!!this._ready},t.prototype.ready=function(){var t=this;return this.initializePromise.promise.then((function(){var n;return null!==(n=t.onReady)&&void 0!==n?n:Promise.resolve()}))},t.prototype.load=function(t,n){var i;return(0,e.mG)(this,void 0,Promise,(function(){var r,o,s=this;return(0,e.Jh)(this,(function(e){switch(e.label){case 0:return this._ready||void 0!==this.onReady?[2]:null===(i=this.integrationSource)||void 0===i?[3,1]:(o=i,[3,3]);case 1:return[4,b(t,this.name,this.version,this.options.obfuscate)];case 2:o=e.sent(),e.label=3;case 3:r=o,this.integration=function(t,n,i){var e;"Integration"in t?(t({user:function(){return i.user()},addIntegration:function(){}}),e=t.Integration):e=t;var r=new e(n);return r.analytics=i,r}(r,this.settings,n),this.onReady=new Promise((function(t){s.integration.once("ready",(function(){s._ready=!0,t(!0)}))})),this.integration.on("initialize",(function(){s.initializePromise.resolve(!0)}));try{(0,_.z)(t,{integrationName:this.name,methodName:"initialize",type:"classic"}),this.int |
URL: https://connect.intuit.com/t/scs-v1-2ab5cd5cd4e3402db0c5a761f4ae4bcf2852cd012d7943b6aeab2470b3f0cb2880e489ebbbcb4d028a58f9c0c065f767?cta=viewinvoicenow&locale=fr_CA Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: https://connect.intuit.com Model: Joe Sandbox AI | {
"typosquatting": false,
"unusual_query_string": false,
"suspicious_tld": false,
"ip_in_url": false,
"long_subdomain": false,
"malicious_keywords": false,
"encoded_characters": false,
"redirection": false,
"contains_email_address": false,
"known_domain": true,
"brand_spoofing_attempt": false,
"third_party_hosting": false,
"reasoning": "This is a legitimate URL for Intuit's connection service. It uses a standard subdomain structure, legitimate TLD (.com), and belongs to the known company Intuit."
} |
URL: https://connect.intuit.com |
URL: https://connect.intuit.com/t/scs-v1-2ab5cd5cd4e3402db0c5a761f4ae4bcf2852cd012d7943b6aeab2470b3f0cb2880e489ebbbcb4d028a58f9c0c065f767?cta=viewinvoicenow&locale=fr_CA Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: https://static.cns-icn-prod.a.intuit.com/_next/sta... Model: Joe Sandbox AI | ```json
{
"risk_score": 4,
"reasoning": "The script sends data to an endpoint using POST requests, which could involve user data. However, it appears to be part of a legitimate reporting or telemetry system, as indicated by the use of known libraries and structured data handling. The risk is moderate due to potential data transmission to external servers without explicit transparency."
} |
(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[8677],{88677:function(e,t,n){"use strict";n.d(t,{lj:function(){return Q},Pz:function(){return X}});var a=n(59499),i=(n(56859),n(67294)),o=n(93235);const r=e=>{if(e&&e.config){var t,n,a,i;if(o.e((function(t){t.addEventProcessor((function(t){return new Promise((function(n){return t.environment=e.config.env,n(t)}))}))})),o.v("config",{ssrtid:e.config.ssrtid,originatingIp:e.config.originatingIp}),e.sale)o.v("sale",{amount:e.sale.amount,type:e.sale.type,txnDate:e.sale.txnDate,currency:null===(t=e.sale.currencyInfo)||void 0===t?void 0:t.currency,id:e.sale.id,referenceNumber:e.sale.referenceNumber,recipientEmail:e.auth.recipientEmail});if(e.companyInfo)o.v("companyInfo",{companyName:e.companyInfo.companyName,language:e.companyInfo.language,region:e.companyInfo.region,primaryEmail:null===(n=e.companyInfo.contactMethods)||void 0===n||null===(a=n[0])||void 0===a||null===(i=a.primaryEmail)||void 0===i?void 0:i.emailAddress});e.payment&&o.v("payment",{balanceAmount:e.payment.balanceAmount,inputAmount:e.payment.inputAmount,amount:e.payment.amount,isAmountValid:e.payment.isAmountValid,payPalProcessor:e.payment.payPalProcessor,isPayPalCommerceInvoice:e.payment.isPayPalCommerceInvoice,isSavePaymentMethodChecked:e.payment.isSavePaymentMethodChecked}),e.auth&&o.av({username:e.auth.username,realmId:e.auth.realmId,entityId:e.auth.entityId})}};var s=n(9918),l=n(36718),c=n(36899),p=(n(45681),n(85893));var d=n(48381),u=n.n(d),y=n(85545),m=n(91502),h=n(40195),g=n.n(h),f=n(98258),P=n.n(f),S=n(3077),v=n.n(S),b=n(6638),I=n(73535);function O(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);t&&(a=a.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,a)}return n}function k(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?O(Object(n),!0).forEach((function(t){(0,a.Z)(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):O(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}const w=n(6097),E=g()("reporting:ClientSplunkHandler"),x=v().getInstance();let A;class C extends(P()){constructor(e){const{config:{cpVersion:t,portal:n,ssrtid:a,dockerTag:i},auth:o,insight:{offeringId:r,token:s,domainId:l,merchantId:c},sale:{type:p,subType:d,subscriptionPaymentsSetting:u},companyInfo:y={}}=e.getState();super({reportOrigin:"client",cpVersion:t});const{entityId:m,realmId:h,ticket:g,isUserSignedIn:f,syncToken:P,authToken:S}=o;this.NAME="SplunkClient",this.store=e,this.cpVersion=t,this.portal=n,this.endpoint=`/${n}/rest/reporting`,this.imageName=i,this.transactionType=`${p}`,this.offeringId=r||"",this.merchantId=c,this.locale=I.companyInfoSelectors.localeSelector(y),d&&(this.subType=d),u&&(this.subscriptionPaymentsSetting=u),this.token=s,this.ssrtid=a,this.headers={"Content-Type":"application/json","Intuit-DomainId":l,"Intuit-IntuitId":m,"Intuit-RealmId":h,"Intuit-ACSToken":s,sessionTicket:g,"user-signed-in":"boolean"===typeof f?f.toString():"false",syncToken:P,"ssr-session-id":a,Authorization:`Bearer ${S}`},this.endpoint=`/${n}/rest/reporting/batch`,this.logBatcher=new w({invokedCallback:e=>{x({url:this.endpoint,method:"POST",headers:this.headers,endpoint:this.endpoint,ssrtid:this.ssrtid,token:this.token,ignoreErrorInterceptor:!0,ignoreProfilingInterceptor:!0,event:"splunkReporting",data:{messages:e}}).then((e=>{const{data:{auth:t}}=e;t&&this.store.dispatch(b.YV.refreshAuthenticationSuccessful({auth:t}))}))}}),A=e=>this.logBatcher.push(e),E(`Name: ${this.NAME}`),E(`Endpoint: ${this.endpoint}`),E(`token: ${this.token}`),E(`ssrtid: ${this.ssrtid}`),this.report=this.report.bind(this)}enrich(e,t){let n=Object.assign({},t,{ssrtid:this.ssrtid,token:this.token,transactionType:this.transactionType,merchantId:this.merchantId,locale:this.locale});return super.enrich(e,n,!1)}report(e,t){if(localStorage& |
URL: https://cdn.segment.com/analytics.js/v1/xCFNzXfegn... Model: Joe Sandbox AI | ```json
{
"risk_score": 2,
"reasoning": "The script appears to be part of a larger library or framework, likely dealing with user data and analytics. It includes moderate-risk indicators such as potential external data transmission and aggressive DOM manipulation, but lacks high-risk behaviors like dynamic code execution or data exfiltration. Without evidence of malicious intent or interaction with suspicious domains, the risk remains moderate."
} |
!function(){var t,e,n,r,i={8878:function(t,e,n){"use strict";var r=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(e,"__esModule",{value:!0});var i=r(n(325));function o(t,e){return function(){var n=this.traits(),r=this.properties?this.properties():{};return i.default(n,"address."+t)||i.default(n,t)||(e?i.default(n,"address."+e):null)||(e?i.default(n,e):null)||i.default(r,"address."+t)||i.default(r,t)||(e?i.default(r,"address."+e):null)||(e?i.default(r,e):null)}}e.default=function(t){t.zip=o("postalCode","zip"),t.country=o("country"),t.street=o("street"),t.state=o("state"),t.city=o("city"),t.region=o("region")}},4780:function(t,e,n){"use strict";var r=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(e,"__esModule",{value:!0}),e.Alias=void 0;var i=r(n(1285)),o=n(9512);function s(t,e){o.Facade.call(this,t,e)}e.Alias=s,i.default(s,o.Facade),s.prototype.action=function(){return"alias"},s.prototype.type=s.prototype.action,s.prototype.previousId=function(){return this.field("previousId")||this.field("from")},s.prototype.from=s.prototype.previousId,s.prototype.userId=function(){return this.field("userId")||this.field("to")},s.prototype.to=s.prototype.userId},4814:function(t,e){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.clone=void 0,e.clone=function t(e){if("[object Object]"===Object.prototype.toString.call(e)){var n={};for(var r in e)n[r]=t(e[r]);return n}return Array.isArray(e)?e.map(t):e}},5257:function(t,e,n){"use strict";var r=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(e,"__esModule",{value:!0}),e.Delete=void 0;var i=r(n(1285)),o=n(9512);function s(t,e){o.Facade.call(this,t,e)}e.Delete=s,i.default(s,o.Facade),s.prototype.type=function(){return"delete"}},9512:function(t,e,n){"use strict";var r=this&&this.__importDefault||function(t){return t&&t.__esModule?t:{default:t}};Object.defineProperty(e,"__esModule",{value:!0}),e.Facade=void 0;var i=r(n(8878)),o=n(4814),s=r(n(2272)),u=r(n(5870)),a=r(n(325)),c=r(n(6279));function l(t,e){e=e||{},this.raw=o.clone(t),"clone"in e||(e.clone=!0),e.clone&&(t=o.clone(t)),"traverse"in e||(e.traverse=!0),t.timestamp="timestamp"in t?u.default(t.timestamp):new Date,e.traverse&&c.default(t),this.opts=e,this.obj=t}e.Facade=l;var p=l.prototype;function f(t){return o.clone(t)}p.proxy=function(t){var e=t.split("."),n=this[t=e.shift()]||this.field(t);return n?("function"==typeof n&&(n=n.call(this)||{}),0===e.length||(n=a.default(n,e.join("."))),this.opts.clone?f(n):n):n},p.field=function(t){var e=this.obj[t];return this.opts.clone?f(e):e},l.proxy=function(t){return function(){return this.proxy(t)}},l.field=function(t){return function(){return this.field(t)}},l.multi=function(t){return function(){var e=this.proxy(t+"s");if(Array.isArray(e))return e;var n=this.proxy(t);return n&&(n=[this.opts.clone?o.clone(n):n]),n||[]}},l.one=function(t){return function(){var e=this.proxy(t);if(e)return e;var n=this.proxy(t+"s");return Array.isArray(n)?n[0]:void 0}},p.json=function(){var t=this.opts.clone?o.clone(this.obj):this.obj;return this.type&&(t.type=this.type()),t},p.rawEvent=function(){return this.raw},p.options=function(t){var e=this.obj.options||this.obj.context||{},n=this.opts.clone?o.clone(e):e;if(!t)return n;if(this.enabled(t)){var r=this.integrations(),i=r[t]||a.default(r,t);return"object"!=typeof i&&(i=a.default(this.options(),t)),"object"==typeof i?i:{}}},p.context=p.options,p.enabled=function(t){var e=this.proxy("options.providers.all");"boolean"!=typeof e&&(e=this.proxy("options.all")),"boolean"!=typeof e&&(e=this.proxy("integrations.all")),"boolean"!=typeof e&&(e=!0);var n=e&&s.default(t),r=this.integrations();if(r.providers&&r.providers.hasOwnProperty(t)&&(n=r.providers[t]),r.hasOwnProperty(t)){var i=r[t];n="boolean"!=typeof i||i}return!!n},p.integrations=function(){return this.obj.integrations||this.proxy("options.providers")||this. |
URL: https://static.cns-icn-prod.a.intuit.com/_next/sta... Model: Joe Sandbox AI | ```json
{
"risk_score": 1,
"reasoning": "The script appears to be a component of a larger web application, likely using a module bundler like Webpack. It primarily involves UI rendering and component management without any high-risk behaviors such as dynamic code execution or data exfiltration. There are no interactions with external domains or obfuscated code, indicating low risk."
} |
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[9761,4772],{8707:function(e,i,t){var n=t(19848),s=t.n(n),o=t(67294),a=t(44012),c=t(2664),l=t(48094),r=t(39317),d=t(80912),m=t(93912),x=t(385),y=t(36327),p=t(60719),f=t(15043),h=t(47020),u=t(85545),_=t(89591),g=t(84293),b=t(45681),j=t(85893);const w=e=>(0,j.jsxs)("div",{className:s().dynamic([["791317644",[g.colors.white,g.fontSize.sm]]])+" w",children:[(0,j.jsx)(s(),{id:"791317644",dynamic:[g.colors.white,g.fontSize.sm],children:[".w.__jsx-style-dynamic-selector{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}",`.w-i.__jsx-style-dynamic-selector{width:320px;height:auto;background-color:${g.colors.white};padding:30px 20px;text-align:center;}`,`.t.__jsx-style-dynamic-selector{display:block;width:100%;text-align:left;font-size:${g.fontSize.sm};font-family:AvenirNextforINTUIT-Bold;font-weight:bold;}`]}),(0,j.jsxs)("div",{className:s().dynamic([["791317644",[g.colors.white,g.fontSize.sm]]])+" w-i",children:[(0,j.jsx)("span",{className:s().dynamic([["791317644",[g.colors.white,g.fontSize.sm]]])+" t",children:(0,j.jsx)(a.Z,{id:"SETTINGS_CONTACT_INFO",defaultMessage:"Contact info"})}),(0,j.jsx)(y.Z,{}),(0,j.jsx)(p.Z,{companyAddress:e.companyAddress,companyEmail:e.companyEmail,companyPhone:e.companyPhone,companyWebAddr:e.companyWebAddr,number:e.number}),(0,j.jsx)(h.Z,{height:25}),(0,j.jsx)(x.Z,{onClick:e.hide,width:"125px","data-cy":"invoiceMoreDetails-contact-info-close",children:(0,j.jsx)(a.Z,{id:"SETTINGS_CLOSE",defaultMessage:"Close"})})]})]});class k extends o.Component{constructor(e){super(e),this.state={isOpen:!1,invoiceViewClicked:!1};["onShowContactInfoClick"].forEach((e=>this[e]=this[e].bind(this)))}onShowContactInfoClick(){this.props.showModal({component:w,componentProps:{companyEmail:this.props.companyEmail,companyPhone:this.props.companyPhone,companyWebAddr:this.props.companyWebAddr,companyAddress:this.props.companyAddress,number:this.props.number,showCloseButton:!1}}),u.Z.clickContactInformation()}render(){const{number:e,dueDate:i,balanceAmount:t,currency:n,isPartiallyPaid:c=!1,achOnlineConvenienceFeeAmount:p,achOnlineConvenienceFeeAmountPaid:h,totalAmount:_,fetchPDFStatus:w=b.GO.STATUS.IN_PROGRESS,pdfUrl:k,token:S,lazyFetch:v=!1,featureFlags:N,lineItems:I,taxAmount:z,amount:C}=this.props,A=null===this.props.fetchPDFStatus&&this.props.lazyFetch,T=()=>!A||this.props.fetchPDFDocument(S),P=w===b.GO.STATUS.SUCCESS;return P&&this.state.invoiceViewClicked&&window.open(k,"_self","noopener,nofollow"),(0,j.jsxs)(o.Fragment,{children:[(0,j.jsx)(s(),{id:"1987196940",dynamic:[g.breakpoints.md,g.breakpoints.sm],children:[`@media (max-width:${g.breakpoints.md}){.HR-margin.__jsx-style-dynamic-selector{max-width:400px;margin:10px auto;}}`,`@media (max-width:${g.breakpoints.sm}){.HR-margin.__jsx-style-dynamic-selector{max-width:576px;}}`,".cta-w.__jsx-style-dynamic-selector{padding:0;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:space-evenly;-webkit-justify-content:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;max-width:266px;margin:20px auto;}"]}),(0,j.jsxs)(r.Z,{children:[(0,j.jsx)(l.Z,{useRedesign:!1,featureFlags:N,invoiceNumber:e,invoiceDueDate:i,invoiceAmount:C,currency:n,isPartiallyPaid:c,achOnlineConvenienceFeeAmount:p,achOnlineConvenienceFeeAmountPaid:h,invoiceLineItems:I,invoiceTaxAmount:z}),(0,j.jsx)("div",{className:s().dynamic([["1987196940",[g.breakpoints.md,g.breakpoints.sm]]])+" HR-margin",children:(0,j.jsx)(y.Z,{marginTop:0,marginBottom:11,opacity:1,borderColor:g.colors.gray06,borderThickness: |
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "Communiquez avec CDTEC userbration inc. si vous ne savez pas comment payer cette facture.",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/downloaded.htm Model: Joe Sandbox AI | {
"brands": [
"Intuit Quickbooks",
"CDTEC userbration inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/Invoice%206979.pdf Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "userbration, repair and certification on site of 2 portable gas detectors: Hellas Revenger ( port of Montreal)",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/Invoice%206979.pdf Model: Joe Sandbox AI | {
"contains_trigger_text": true,
"trigger_text": "userbration, repair and certification on site of 2 portable gas detectors: Hellas Revenger ( port of Montreal)",
"prominent_button_name": "unknown",
"text_input_field_labels": "unknown",
"pdf_icon_visible": false,
"has_visible_captcha": false,
"has_urgent_text": false,
"has_visible_qrcode": false,
"contains_chinese_text": false,
"contains_fake_security_alerts": false
} |
|
URL: file:///C:/Users/user/Downloads/Invoice%206979.pdf Model: Joe Sandbox AI | {
"brands": [
"CDTEC userbration Inc."
]
} |
|
URL: file:///C:/Users/user/Downloads/Invoice%206979.pdf Model: Joe Sandbox AI | {
"brands": [
"CDTEC userbration Inc."
]
} |
|