Help
RSS
API
Feed
Maltego
Contact
Domain > linemaking.com
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2025-06-27
3.5.79.134
(
ClassC
)
2025-11-22
52.92.237.11
(
ClassC
)
Port 80
HTTP/1.1 200 OKx-amz-id-2: i2vwOx/ilvEbMvEXdb6GzLRQWbsNUodlsp2LhkL6GEsjy/0CmwLmjqAjSKJ/C+Cg6cyYhyqJoAEx-amz-request-id: SFDDPQ3AC48N1PGDDate: Sat, 22 Nov 2025 06:10:34 GMTLast-Modified: Sat, 02 Mar 2024 17:19:13 GMTETag: 8ba814943bdc9806d0f02d514954d891Content-Type: text/htmlContent-Length: 3642Server: AmazonS3 !DOCTYPE html>html>head> script srchttps://cdnjs.cloudflare.com/ajax/libs/processing.js/1.6.6/processing.min.js>/script> script> // Function to reload the page when the window is resized function onWindowResize() { // Reload the page window.location.reload(); } // Add event listener for the resize event window.addEventListener(resize, onWindowResize); /script> style> /* Inline CSS */ html, body { margin: 0; padding: 0; /*overflow: hidden; Prevents scrollbars from appearing */ } canvas { /*display: block; /* Removes the default inline display */ width: 100vw; /* Set width to 100% of the viewport width */ height: 100vh; /* Set height to 100% of the viewport height */ } /style>/head>body> script typetext/processing>// Variables for the first linefloat startX1, startY1, endX1, endY1, currentX1, currentY1;float ctrlX11, ctrlY11, ctrlX12, ctrlY12;float step 0.007; // How quickly the lines draw (smaller slower)//float step random(90)/1000; //generate the speed for each step randomlyfloat t1 0; // Parameters for interpolation for each linevoid setup() { size(window.innerWidth, window.innerHeight); background(255); // White background setupLine1(); // Setup first line fill(random(255),random(255),random(255)); //(random color for fill)}void draw() { //delay(500); if (t1 1) { // Calculate the point on the bezier curve for the current t float x bezierPoint(startX1, ctrlX11, ctrlX12, endX1, t1); float y bezierPoint(startY1, ctrlY11, ctrlY12, endY1, t1); // Optionally, draw a small line segment or a point //stroke(0); // Set the color of the point/line //point(x, y); // Draw a point at the calculated position //fill(random(255),random(255),random(255)); //(random color for fill) ellipse(x, y, 25, 25); //ellipse(x, y, random(10,20), random(10,20)); //ellipse(x, y, random(50), random(50)); //noStroke(); } // Update the current drawing endpoint of the first line currentX1 lerp(startX1, endX1, t1); currentY1 lerp(startY1, endY1, t1); //bezier(startX1, startY1, ctrlX11, ctrlY11, ctrlX12, ctrlY12, currentX1, currentY1); // Draw the first line from its starting point to the current point //line(startX1, startY1, currentX1, currentY1); //draw lines? //noStroke(); // Do not draw a border for the shapes //noFill(); //fill(random(255),random(255),random(255)); //(random color for fill) //ellipse(currentX1, currentY1, random(50), random(50)); // Increment t to draw the lines over time t1 + step; // Reset when the first line is fully drawn if (t1 > 1.0) { t1 0; // Reset interpolation parameter for the first line setupLine1(); // Setup a new first line } // Reset when the second line is fully drawn }// Function to set up a new first line with random parametersvoid setupLine1() { //startX1 random(width); //startY1 random(height); //or if you prefer the line starts where the last ended startX1 endX1; startY1 endY1; // Control points for the first bezier curve ctrlX11 random(width); ctrlY11 random(height); ctrlX12 random(width); ctrlY12 random(height); //set the random end point of the line endX1 random(width); endY1 random(height); //stroke(random(255), random(255), random(255)); // Random color for the first line //step random(90)/1000; //generate the speed for each step randomly} /script> canvas>/canvas>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]