Weekly Report for 2024-10-11 to 2024-10-18

STIX2 Files

Weekly Summary

  • No country attack data available for this period
  • No protocol attack data available for this period
  • No comparison available for this week
Weekly Threat Intelligence Report
    <div>
    <h2>Weekly Comparison</h2>
    <div id="weekcomparisonchart"></div>
    <h2>Attacks by Destination</h2>
    <div id="honeychart"></div>
    <h2>Attacks By Country & ASN</h2>
    <div id="chartdiv"></div>
    <h2>Attacks By Date</h2>
    <div id="protocolbarchart"></div>
    <h2>Attacks By Protocol</h2>
    <table>
    <tbody>
      <tr>
        <td><div id="sshattacks"></div></td>
        <td><div id="ftpattacks"></div></td>
        <td><div id="ntpattacks"></div></td>
      </tr>
      <tr>
        <td><div id="sipattacks"></div></td>
        <td><div id="snmpattacks"></div></td>
        <td><div id="telnetattacks"></div></td>
      </tr>
      <tr>
        <td><div id="mssqlattacks"></div></td>
        <td><div id="mysqlattacks"></div></td>
        <td><div id="redisattacks"></div></td>
      </tr>
      <tr>
        <td><div id="nmapattacks"></div></td>
        <td><div id="gitattacks"></div></td>
        <td><div id="dorkattacks"></div></td>
      </tr>
    </tbody>
    </table>
    <h2>Phishing Domains by Category</h2>
    <div id="phishingchart"></div>
    
        <script>
        am4core.ready(function() {
            am4core.useTheme(am4themes_dark);
            am4core.useTheme(am4themes_animated);
            var honeychart = am4core.create("honeychart", am4charts.PieChart);
            honeychart.hiddenState.properties.opacity = 0;

            honeychart.data = [
        
            ];

            honeychart.radius = am4core.percent(70);
            honeychart.innerRadius = am4core.percent(40);
            honeychart.startAngle = 180;
            honeychart.endAngle = 360;

            var series = honeychart.series.push(new am4charts.PieSeries());
            series.dataFields.value = "value";
            series.dataFields.category = "country";
            series.slices.template.cornerRadius = 10;
            series.slices.template.innerCornerRadius = 7;
            series.slices.template.draggable = true;
            series.slices.template.inert = true;
            series.alignLabels = false;
            series.hiddenState.properties.startAngle = 90;
            series.hiddenState.properties.endAngle = 90;
            honeychart.legend = new am4charts.Legend();

            series.colors.list = [
                am4core.color("#17b924"), am4core.color("#16a622"),
                am4core.color("#12821b"), am4core.color("#0d6614"),
                am4core.color("#0a4f10"), am4core.color("#347a3a"),
                am4core.color("#2d6932"), am4core.color("#377f3d"),
                am4core.color("#43994a"), am4core.color("#4fb057"),
                am4core.color("#5ac964"), am4core.color("#3b5f3e"),
                am4core.color("#4f7f53"), am4core.color("#629e67"),
                am4core.color("#77c57e"), am4core.color("#8ee796")
            ];
        });
        </script>
        
        <div id="countryasnchart"></div>
        <script>
        am4core.useTheme(am4themes_dark);
        am4core.useTheme(am4themes_animated);
        var container = am4core.create("countryasnchart", am4core.Container);
        container.width = am4core.percent(100);
        container.height = am4core.percent(100);
        container.layout = "horizontal";
        var chart = container.createChild(am4charts.PieChart);

        chart.data = [
        
        ];

        var pieSeries = chart.series.push(new am4charts.PieSeries());
        pieSeries.dataFields.value = "attacks";
        pieSeries.dataFields.category = "country";
        pieSeries.slices.template.states.getKey("active").properties.shiftRadius = 0;
        pieSeries.slices.template.events.on("hit", function(event) {
            selectSlice(event.target.dataItem);
        });

        var chart2 = container.createChild(am4charts.PieChart);
        chart2.width = am4core.percent(25);
        chart2.radius = am4core.percent(80);

        var pieSeries2 = chart2.series.push(new am4charts.PieSeries());
        pieSeries2.dataFields.value = "value";
        pieSeries2.dataFields.category = "name";
        pieSeries2.slices.template.states.getKey("active").properties.shiftRadius = 0;
        pieSeries2.labels.template.disabled = true;
        pieSeries2.ticks.template.disabled = true;
        pieSeries2.alignLabels = false;
        pieSeries2.events.on("positionchanged", updateLines);

        var interfaceColors = new am4core.InterfaceColorSet();

        var line1 = container.createChild(am4core.Line);
        line1.strokeDasharray = "2,2";
        line1.strokeOpacity = 1;
        line1.stroke = interfaceColors.getFor("alternativeBackground");
        line1.isMeasured = false;

        var line2 = container.createChild(am4core.Line);
        line2.strokeDasharray = "2,2";
        line2.strokeOpacity = 1;
        line2.stroke = interfaceColors.getFor("alternativeBackground");
        line2.isMeasured = false;

        var selectedSlice;

        function selectSlice(dataItem) {
            selectedSlice = dataItem.slice;
            var fill = selectedSlice.fill;
            var count = dataItem.dataContext.subData.length;
            pieSeries2.colors.list = [];
            for (var i = 0; i < count; i++) {
                pieSeries2.colors.list.push(fill.brighten(i * 2 / count));
            }

            chart2.data = dataItem.dataContext.subData;
            pieSeries2.appear();

            var middleAngle = selectedSlice.middleAngle;
            var firstAngle = pieSeries.slices.getIndex(0).startAngle;
            var animation = pieSeries.animate([
                { property: "startAngle", to: firstAngle - middleAngle },
                { property: "endAngle", to: firstAngle - middleAngle + 360 }
            ], 600, am4core.ease.sinOut);

            animation.events.on("animationprogress", updateLines);
            selectedSlice.events.on("transformed", updateLines);
        }

        function updateLines() {
            if (selectedSlice) {
                var p11 = { x: selectedSlice.radius * am4core.math.cos(selectedSlice.startAngle),
                           y: selectedSlice.radius * am4core.math.sin(selectedSlice.startAngle) };
                var p12 = { x: selectedSlice.radius * am4core.math.cos(selectedSlice.startAngle + selectedSlice.arc),
                           y: selectedSlice.radius * am4core.math.sin(selectedSlice.startAngle + selectedSlice.arc) };

                p11 = am4core.utils.spritePointToSvg(p11, selectedSlice);
                p12 = am4core.utils.spritePointToSvg(p12, selectedSlice);

                var p21 = { x: 0, y: -pieSeries2.pixelRadius };
                var p22 = { x: 0, y: pieSeries2.pixelRadius };

                p21 = am4core.utils.spritePointToSvg(p21, pieSeries2);
                p22 = am4core.utils.spritePointToSvg(p22, pieSeries2);

                line1.x1 = p11.x;
                line1.x2 = p21.x;
                line1.y1 = p11.y;
                line1.y2 = p21.y;

                line2.x1 = p12.x;
                line2.x2 = p22.x;
                line2.y1 = p12.y;
                line2.y2 = p22.y;
            }
        }

        chart.events.on("datavalidated", function() {
            setTimeout(function() {
                selectSlice(pieSeries.dataItems.getIndex(0));
            }, 1000);
        });
        </script>
        
            <h2>Anonymous Proxy Hosts</h2>
            <div id="proxychart"></div>
            <script>
            am4core.ready(function() {
                am4core.useTheme(am4themes_dark);
                am4core.useTheme(am4themes_animated);
                var proxychart = am4core.create("proxychart", am4charts.PieChart);
                proxychart.hiddenState.properties.opacity = 0;

                proxychart.data = [
            {"country": "United States", "value": 2717},{"country": "Indonesia", "value": 1312},{"country": "China", "value": 868},{"country": "Iran", "value": 689},{"country": "India", "value": 637},{"country": "Russia", "value": 567},{"country": "Thailand", "value": 451},{"country": "United Kingdom", "value": 433},{"country": "South Korea", "value": 431},{"country": "Bangladesh", "value": 421},{"country": "Vietnam", "value": 414},{"country": "Japan", "value": 353},{"country": "France", "value": 345},{"country": "Germany", "value": 323},{"country": "Ukraine", "value": 279},{"country": "Hong Kong", "value": 199},{"country": "Brazil", "value": 186},{"country": "Canada", "value": 178},{"country": "Singapore", "value": 173},{"country": "Netherlands", "value": 130},{"country": "Poland", "value": 126},{"country": "South Africa", "value": 94},{"country": "Bulgaria", "value": 80},{"country": "Spain", "value": 74},{"country": "Philippines", "value": 73},{"country": "Czechia", "value": 70},{"country": "Cambodia", "value": 67},{"country": "Turkey", "value": 66},{"country": "Italy", "value": 65},{"country": "Finland", "value": 59},{"country": "Kenya", "value": 57},{"country": "Ecuador", "value": 56},{"country": "Lithuania", "value": 54},{"country": "Egypt", "value": 49},{"country": "Albania", "value": 45},{"country": "Moldova", "value": 43},{"country": "Romania", "value": 42},{"country": "Australia", "value": 41},{"country": "Mexico", "value": 41},{"country": "Colombia", "value": 39},{"country": "Iraq", "value": 37},{"country": "Argentina", "value": 35},{"country": "Serbia", "value": 35},{"country": "Georgia", "value": 33},{"country": "Taiwan", "value": 33},{"country": "Malaysia", "value": 33},{"country": "Hungary", "value": 32},{"country": "Pakistan", "value": 31},{"country": "Chile", "value": 31},{"country": "Kazakhstan", "value": 29},{"country": "Libya", "value": 26},{"country": "Sweden", "value": 25},{"country": "Nigeria", "value": 25},{"country": "Belgium", "value": 22},{"country": "Slovakia", "value": 21},{"country": "Nepal", "value": 20},{"country": "Austria", "value": 20},{"country": "United Arab Emirates", "value": 18},{"country": "Armenia", "value": 17},{"country": "Mauritius", "value": 15},{"country": "Latvia", "value": 14},{"country": "Switzerland", "value": 13},{"country": "Botswana", "value": 13},{"country": "Kosovo", "value": 11},{"country": "Myanmar", "value": 11},{"country": "Tanzania", "value": 10},{"country": "Malawi", "value": 10},{"country": "Dominican Republic", "value": 10},{"country": "Bosnia and Herzegovina", "value": 10},{"country": "Qatar", "value": 9},{"country": "Ghana", "value": 9},{"country": "Greece", "value": 8},{"country": "Venezuela", "value": 8},{"country": "Portugal", "value": 8},{"country": "Azerbaijan", "value": 8},{"country": "Syria", "value": 7},{"country": "Palestine", "value": 7},{"country": "Uganda", "value": 7},{"country": "Algeria", "value": 7},{"country": "Yemen", "value": 7},{"country": "New Zealand", "value": 7},{"country": "Guatemala", "value": 7},{"country": "Maldives", "value": 6},{"country": "Croatia", "value": 6},{"country": "Seychelles", "value": 6},{"country": "Mongolia", "value": 6},{"country": "Denmark", "value": 6},{"country": "Ireland", "value": 6},{"country": "Norway", "value": 6},{"country": "Burkina Faso", "value": 6},{"country": "Lesotho", "value": 5},{"country": "Paraguay", "value": 5},{"country": "Congo Republic", "value": 5},{"country": "Guinea", "value": 5},{"country": "Puerto Rico", "value": 5},{"country": "Montenegro", "value": 5},{"country": "Belarus", "value": 5},{"country": "Morocco", "value": 5},{"country": "Luxembourg", "value": 5},{"country": "Honduras", "value": 4},{"country": "Panama", "value": 4},{"country": "Somalia", "value": 4},{"country": "Israel", "value": 4},{"country": "Benin", "value": 4},{"country": "Kyrgyzstan", "value": 4},{"country": "Saudi Arabia", "value": 4},{"country": "Afghanistan", "value": 4},{"country": "Equatorial Guinea", "value": 4},{"country": "Eswatini", "value": 3},{"country": "Peru", "value": 3},{"country": "Estonia", "value": 3},{"country": "North Macedonia", "value": 3},{"country": "Malta", "value": 3},{"country": "Uzbekistan", "value": 3},{"country": "Slovenia", "value": 3},{"country": "DR Congo", "value": 2},{"country": "Oman", "value": 2},{"country": "Cyprus", "value": 2},{"country": "Senegal", "value": 2},{"country": "El Salvador", "value": 2},{"country": "Laos", "value": 2},{"country": "Togo", "value": 2},{"country": "Mauritania", "value": 2},{"country": "Djibouti", "value": 1},{"country": "Burundi", "value": 1},{"country": "Lebanon", "value": 1},{"country": "Belize", "value": 1},{"country": "Tunisia", "value": 1},{"country": "Gibraltar", "value": 1},{"country": "Cameroon", "value": 1},{"country": "Zambia", "value": 1},{"country": "Rwanda", "value": 1},{"country": "Angola", "value": 1},{"country": "Zimbabwe", "value": 1},
                ];

                proxychart.radius = am4core.percent(70);
                proxychart.innerRadius = am4core.percent(40);

                var series = proxychart.series.push(new am4charts.PieSeries());
                series.dataFields.value = "value";
                series.dataFields.category = "country";
                series.slices.template.cornerRadius = 10;
                series.slices.template.innerCornerRadius = 7;
                series.alignLabels = false;
                proxychart.legend = new am4charts.Legend();
            });
            </script>
            
            <script>
            am4core.useTheme(am4themes_dark);
            var phishingchart = am4core.create("phishingchart", am4charts.XYChart);

            phishingchart.data = [
            
            ];

            var categoryAxis = phishingchart.xAxes.push(new am4charts.CategoryAxis());
            categoryAxis.dataFields.category = "campaign";
            categoryAxis.renderer.grid.template.location = 0;
            categoryAxis.renderer.minGridDistance = 30;
            categoryAxis.renderer.labels.template.adapter.add("dy", function(dy, target) {
                if (target.dataItem && target.dataItem.index & 2 == 2) {
                    return dy + 25;
                }
                return dy;
            });

            var valueAxis = phishingchart.yAxes.push(new am4charts.ValueAxis());
            var series = phishingchart.series.push(new am4charts.ColumnSeries());
            series.dataFields.valueY = "domains";
            series.dataFields.categoryX = "campaign";
            series.name = "Domains";
            series.columns.template.tooltipText = "{categoryX}: [bold]{valueY}[/]";
            series.columns.template.fillOpacity = .8;
            series.columns.template.fill = am4core.color("limegreen").lighten(0);
            series.columns.template.stroke = am4core.color("limegreen").lighten(0.1);

            var columnTemplate = series.columns.template;
            columnTemplate.strokeWidth = 2;
            columnTemplate.strokeOpacity = 1;
            </script>
            
            </div>
Share on: