Skip to content

BaseModule

The base class for all BBOT modules.

Attributes:

  • watched_events (List) –

    Event types to watch.

  • produced_events (List) –

    Event types to produce.

  • meta (Dict) –

    Metadata about the module, such as whether authentication is required and a description.

  • flags (List) –

    Flags indicating the type of module (must have at least "safe" or "aggressive" and "passive" or "active").

  • deps_modules (List) –

    Other BBOT modules this module depends on. Empty list by default.

  • deps_pip (List) –

    Python dependencies to install via pip. Empty list by default.

  • deps_apt (List) –

    APT package dependencies to install. Empty list by default.

  • deps_shell (List) –

    Other dependencies installed via shell commands. Uses ansible.builtin.shell. Empty list by default.

  • deps_ansible (List) –

    Additional Ansible tasks for complex dependencies. Empty list by default.

  • accept_dupes (bool) –

    Whether to accept incoming duplicate events. Default is False.

  • suppress_dupes (bool) –

    Whether to suppress outgoing duplicate events. Default is True.

  • per_host_only (bool) –

    Limit the module to only scanning once per host. Default is False.

  • per_hostport_only (bool) –

    Limit the module to only scanning once per host:port. Default is False.

  • per_domain_only (bool) –

    Limit the module to only scanning once per domain. Default is False.

  • scope_distance_modifier ((int, None)) –

    Modifies scope distance acceptance for events. Default is 0.

    None == accept all events
    2 == accept events up to and including the scan's configured search distance plus two
    1 == accept events up to and including the scan's configured search distance plus one
    0 == (DEFAULT) accept events up to and including the scan's configured search distance
    

  • target_only (bool) –

    Accept only the initial target event(s). Default is False.

  • in_scope_only (bool) –

    Accept only explicitly in-scope events, regardless of the scan's search distance. Default is False.

  • options (Dict) –

    Customizable options for the module, e.g., {"api_key": ""}. Empty dict by default.

  • options_desc (Dict) –

    Descriptions for options, e.g., {"api_key": "API Key"}. Empty dict by default.

  • module_threads (int) –

    Maximum concurrent instances of handle_event() or handle_batch(). Default is 1.

  • batch_size (int) –

    Size of batches processed by handle_batch(). Default is 1.

  • batch_wait (int) –

    Seconds to wait before force-submitting a batch. Default is 10.

  • api_failure_abort_threshold (int) –

    Threshold for setting error state after failed HTTP requests (only takes effect when api_request() is used. Default is 5.

  • _preserve_graph (bool) –

    When set to True, accept events that may be duplicates but are necessary for construction of complete graph. Typically only enabled for output modules that need to maintain full chains of events, e.g. neo4j and json. Default is False.

  • _stats_exclude (bool) –

    Whether to exclude this module from scan statistics. Default is False.

  • _qsize (int) –

    Outgoing queue size (0 for infinite). Default is 0.

  • _priority (int) –

    Priority level of the module. Lower values are higher priority. Default is 3.

  • _name (str) –

    Module name, overridden automatically. Default is 'base'.

  • _type (str) –

    Module type, for differentiating between normal and output modules. Default is 'scan'.

Source code in bbot/modules/base.py
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
class BaseModule:
    """The base class for all BBOT modules.

    Attributes:
        watched_events (List): Event types to watch.

        produced_events (List): Event types to produce.

        meta (Dict): Metadata about the module, such as whether authentication is required and a description.

        flags (List): Flags indicating the type of module (must have at least "safe" or "aggressive" and "passive" or "active").

        deps_modules (List): Other BBOT modules this module depends on. Empty list by default.

        deps_pip (List): Python dependencies to install via pip. Empty list by default.

        deps_apt (List): APT package dependencies to install. Empty list by default.

        deps_shell (List): Other dependencies installed via shell commands. Uses [ansible.builtin.shell](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/shell_module.html). Empty list by default.

        deps_ansible (List): Additional Ansible tasks for complex dependencies. Empty list by default.

        accept_dupes (bool): Whether to accept incoming duplicate events. Default is False.

        suppress_dupes (bool): Whether to suppress outgoing duplicate events. Default is True.

        per_host_only (bool): Limit the module to only scanning once per host. Default is False.

        per_hostport_only (bool): Limit the module to only scanning once per host:port. Default is False.

        per_domain_only (bool): Limit the module to only scanning once per domain. Default is False.

        scope_distance_modifier (int, None): Modifies scope distance acceptance for events. Default is 0.
            ```
            None == accept all events
            2 == accept events up to and including the scan's configured search distance plus two
            1 == accept events up to and including the scan's configured search distance plus one
            0 == (DEFAULT) accept events up to and including the scan's configured search distance
            ```

        target_only (bool): Accept only the initial target event(s). Default is False.

        in_scope_only (bool): Accept only explicitly in-scope events, regardless of the scan's search distance. Default is False.

        options (Dict): Customizable options for the module, e.g., {"api_key": ""}. Empty dict by default.

        options_desc (Dict): Descriptions for options, e.g., {"api_key": "API Key"}. Empty dict by default.

        module_threads (int): Maximum concurrent instances of handle_event() or handle_batch(). Default is 1.

        batch_size (int): Size of batches processed by handle_batch(). Default is 1.

        batch_wait (int): Seconds to wait before force-submitting a batch. Default is 10.

        api_failure_abort_threshold (int): Threshold for setting error state after failed HTTP requests (only takes effect when `api_request()` is used. Default is 5.

        _preserve_graph (bool): When set to True, accept events that may be duplicates but are necessary for construction of complete graph. Typically only enabled for output modules that need to maintain full chains of events, e.g. `neo4j` and `json`. Default is False.

        _stats_exclude (bool): Whether to exclude this module from scan statistics. Default is False.

        _qsize (int): Outgoing queue size (0 for infinite). Default is 0.

        _priority (int): Priority level of the module. Lower values are higher priority. Default is 3.

        _name (str): Module name, overridden automatically. Default is 'base'.

        _type (str): Module type, for differentiating between normal and output modules. Default is 'scan'.
    """

    watched_events = []
    produced_events = []
    meta = {"auth_required": False, "description": "Base module"}
    flags = []
    options = {}
    options_desc = {}

    deps_modules = []
    deps_pip = []
    deps_apt = []
    deps_shell = []
    deps_ansible = []

    accept_dupes = False
    suppress_dupes = True
    per_host_only = False
    per_hostport_only = False
    per_domain_only = False
    scope_distance_modifier = 0
    target_only = False
    in_scope_only = False

    _module_threads = 1
    _batch_size = 1
    batch_wait = 10

    # disable the module after this many failed attempts in a row
    _api_failure_abort_threshold = 3

    default_discovery_context = "{module} discovered {event.type}: {event.data}"

    _preserve_graph = False
    _stats_exclude = False
    _qsize = 1000
    _priority = 3
    _name = "base"
    _type = "scan"
    _intercept = False
    _shuffle_incoming_queue = True

    def __init__(self, scan):
        """Initializes a module instance.

        Args:
            scan: The BBOT scan object associated with this module instance.

        Attributes:
            scan: The scan object associated with this module.

            errored (bool): Whether the module has errored out. Default is False.
        """
        self.scan = scan
        self.errored = False
        self._log = None
        self._incoming_event_queue = None
        self._outgoing_event_queue = None
        # track incoming events to prevent unwanted duplicates
        self._incoming_dup_tracker = set()
        # tracks which subprocesses are running under this module
        self._proc_tracker = set()
        # seconds since we've submitted a batch
        self._last_submitted_batch = None
        # additional callbacks to be executed alongside self.cleanup()
        self.cleanup_callbacks = []
        self._cleanedup = False
        self._watched_events = None

        self._task_counter = TaskCounter()

        # string constant
        self._custom_filter_criteria_msg = "it did not meet custom filter criteria"

        self._api_keys = []

        # track number of failures (for .api_request())
        self._api_request_failures = 0

        self._default_api_retries = self.scan.config.get("web", {}).get("api_retries", 2)

        self._tasks = []
        self._event_received = None

        # used for optional "per host" tracking
        self._per_host_tracker = set()

        # 429 rate limit handling
        self._429_sleep_interval = self.scan.web_config.get("429_sleep_interval", 30)
        self._429_max_sleep_interval = self.scan.web_config.get("429_max_sleep_interval", 60)

    async def setup(self):
        """
        Performs one-time setup tasks for the module.

        This method is responsible for preparing the module for its operation, which may include tasks
        such as downloading necessary resources, validating configuration parameters, or other preliminary
        checks.

        Returns:
            tuple:
                - bool or None: A status indicating the outcome of the setup process. Returns `True` if
                the setup was successful, `None` for a soft-fail where the module setup did not succeed
                but the scan will continue with the module disabled, and `False` for a hard-fail where
                the setup failure causes the scan to abort.
                - str, optional: A reason for the setup failure, provided only when the setup does not
                succeed (i.e., returns `None` or `False`).

        Examples:
            >>> async def setup(self):
            >>>     if not self.config.get("api_key"):
            >>>         # Soft-fail: Configuration missing an API key
            >>>         return None, "No API key specified"

            >>> async def setup(self):
            >>>     try:
            >>>         wordlist = await self.helpers.wordlist("https://raw.githubusercontent.com/user/wordlist.txt")
            >>>     except WordlistError as e:
            >>>         # Hard-fail: Error retrieving wordlist
            >>>         return False, f"Error retrieving wordlist: {e}"

            >>> async def setup(self):
            >>>     self.timeout = self.config.get("timeout", 5)
            >>>     # Success: Setup completed without issues
            >>>     return True
        """

        return True

    async def handle_event(self, event, **kwargs):
        """Asynchronously handles incoming events that the module is configured to watch.

        This method is automatically invoked when an event that matches any in `watched_events` is encountered during a scan. Override this method to implement custom event-handling logic for your module.

        Args:
            event (Event): The event object containing details about the incoming event.

        Note:
            This method should be overridden if the `batch_size` attribute of the module is set to 1.

        Returns:
            None
        """
        pass

    async def handle_batch(self, *events):
        """Handles incoming events in batches for optimized processing.

        This method is automatically called when multiple events that match any in `watched_events` are encountered and the `batch_size` attribute is set to a value greater than 1. Override this method to implement custom batch event-handling logic for your module.

        Args:
            *events (Event): A variable number of Event objects to be processed in a batch.

        Note:
            This method should be overridden if the `batch_size` attribute of the module is set to a value greater than 1.

        Returns:
            None
        """
        pass

    async def filter_event(self, event):
        """Asynchronously filters incoming events based on custom criteria.

        Override this method for more granular control over which events are accepted by your module. This method is called automatically before `handle_event()` for each incoming event that matches any in `watched_events`.

        Args:
            event (Event): The incoming Event object to be filtered.

        Returns:
            tuple: A 2-tuple where the first value is a bool indicating whether the event should be accepted, and the second value is a string explaining the reason for its acceptance or rejection. By default, returns `(True, None)` to indicate acceptance without reason.

        Note:
            This method should be overridden if the module requires custom logic for event filtering.
        """
        return True

    async def finish(self):
        """Asynchronously performs final tasks as the scan nears completion.

        This method can be overridden to execute any necessary finalization logic. For example, if the module relies on a word cloud, you might wait for the scan to finish to ensure the word cloud is most complete before running an operation.

        Returns:
            None

        Warnings:
            This method may be called multiple times since it can raise events, which may re-trigger the "finish" phase of the scan. Optional to override.
        """
        return

    async def report(self):
        """Asynchronously executes a final task after the scan is complete but before cleanup.

        This method can be overridden to aggregate data and raise summary events at the end of the scan.

        Returns:
            None

        Note:
            This method is called only once per scan.
        """
        return

    async def cleanup(self):
        """Asynchronously performs final cleanup operations after the scan is complete.

        This method can be overridden to implement custom cleanup logic. It is called only once per scan and may not raise events.

        Returns:
            None

        Note:
            This method is called only once per scan and may not raise events.
        """
        return

    async def require_api_key(self):
        """
        Asynchronously checks if an API key is required and valid.

        Args:
            None

        Returns:
            bool or tuple: Returns True if API key is valid and ready.
                          Returns a tuple (None, "error message") otherwise.

        Notes:
            - Fetches the API key from the configuration.
            - Calls the 'ping()' method to test API accessibility.
            - Sets the API key readiness status accordingly.
        """
        self.api_key = self.config.get("api_key", "")
        if self.auth_secret:
            try:
                await self.ping()
                self.hugesuccess("API is ready")
                return True, ""
            except Exception as e:
                self.trace(traceback.format_exc())
                return None, f"Error with API ({str(e).strip()})"
        else:
            return None, "No API key set"

    @property
    def api_key(self):
        if self._api_keys:
            return self._api_keys[0]

    @api_key.setter
    def api_key(self, api_keys):
        if isinstance(api_keys, str):
            api_keys = [api_keys]
        self._api_keys = list(api_keys)

    def cycle_api_key(self):
        if len(self._api_keys) > 1:
            self.verbose("Cycling API key")
            self._api_keys.insert(0, self._api_keys.pop())
        else:
            self.debug("No extra API keys to cycle")

    @property
    def api_retries(self):
        return max(self._default_api_retries + 1, len(self._api_keys))

    @property
    def api_failure_abort_threshold(self):
        return (self.api_retries * self._api_failure_abort_threshold) + 1

    async def ping(self, url=None):
        """Asynchronously checks the health of the configured API.

        This method is used in conjunction with require_api_key() to verify that the API is not just configured, but also responsive. It makes a test request to a known endpoint to validate the API's health.

        The method uses the `ping_url` attribute if defined, or falls back to a provided URL. If neither is available, no request is made.

        Args:
            url (str, optional): A specific URL to use for the ping request. If not provided, the method will use the `ping_url` attribute.

        Returns:
            None

        Raises:
            ValueError: If the API response is not successful (status code != 200).

        Example Usage:
            To use this method, simply define the `ping_url` attribute in your module:

            class MyModule(BaseModule):
                ping_url = "https://api.example.com/ping"

            Alternatively, you can override this method for more complex health checks:

            async def ping(self):
                r = await self.api_request(f"{self.base_url}/complex-health-check")
                if r.status_code != 200 or r.json().get('status') != 'healthy':
                    raise ValueError(f"API unhealthy: {r.text}")
        """
        if url is None:
            url = getattr(self, "ping_url", "")
        if url:
            r = await self.api_request(url)
            if getattr(r, "status_code", 0) != 200:
                response_text = getattr(r, "text", "no response from server")
                raise ValueError(response_text)

    @property
    def batch_size(self):
        batch_size = self.config.get("batch_size", None)
        # only allow overriding the batch size if its default value is greater than 1
        # this prevents modules from being accidentally neutered by an incorrect batch_size setting
        if batch_size is None or self._batch_size == 1:
            batch_size = self._batch_size
        return batch_size

    @property
    def module_threads(self):
        module_threads = self.config.get("module_threads", None)
        if module_threads is None:
            module_threads = self._module_threads
        return module_threads

    @property
    def auth_secret(self):
        """Indicates if the module is properly configured for authentication.

        This read-only property should be used to check whether all necessary attributes (e.g., API keys, tokens, etc.) are configured to perform authenticated requests in the module. Commonly used in setup or initialization steps.

        Returns:
            bool: True if the module is properly configured for authentication, otherwise False.
        """
        return getattr(self, "api_key", "")

    @property
    def event_received(self):
        if self._event_received is None:
            self._event_received = asyncio.Condition()
        return self._event_received

    def get_watched_events(self):
        """Retrieve the set of events that the module is interested in observing.

        Override this method if the set of events the module should watch needs to be determined dynamically, e.g., based on configuration options or other runtime conditions.

        Returns:
            set: The set of event types that this module will handle.
        """
        if self._watched_events is None:
            self._watched_events = set(self.watched_events)
        return self._watched_events

    async def _handle_batch(self):
        """
        Asynchronously handles a batch of events in the module.

        Args:
            None

        Returns:
            bool: True if events were submitted for processing, False otherwise.

        Notes:
            - The method is wrapped in a task counter to monitor asynchronous operations.
            - Checks if there are any events in the incoming queue and module is not in an error state.
            - Invokes '_events_waiting()' to fetch a batch of events.
            - Calls the module's 'handle_batch()' method to process these events.
            - If a "FINISHED" event is found, invokes 'finish()' method of the module.
        """
        finish = False
        async with self._task_counter.count(f"{self.name}.handle_batch()") as counter:
            submitted = False
            if self.batch_size <= 1:
                return
            if self.num_incoming_events > 0:
                events, finish = await self._events_waiting()
                if events and not self.errored:
                    counter.n = len(events)
                    self.verbose(f"Handling batch of {len(events):,} events")
                    submitted = True
                    async with self.scan._acatch(f"{self.name}.handle_batch()"):
                        await self.handle_batch(*events)
                    self.verbose(f"Finished handling batch of {len(events):,} events")
        if finish:
            context = f"{self.name}.finish()"
            async with self.scan._acatch(context), self._task_counter.count(context):
                await self.finish()
        return submitted

    def make_event(self, *args, **kwargs):
        """Create an event for the scan.

        Raises a validation error if the event could not be created, unless raise_error is set to False.

        Args:
            *args: Positional arguments to be passed to the scan's make_event method.
            **kwargs: Keyword arguments to be passed to the scan's make_event method.
            raise_error (bool, optional): Whether to raise a validation error if the event could not be created. Defaults to False.

        Examples:
            >>> new_event = self.make_event("1.2.3.4", parent=event)
            >>> await self.emit_event(new_event)

        Returns:
            Event or None: The created event, or None if a validation error occurred and raise_error was False.

        Raises:
            ValidationError: If the event could not be validated and raise_error is True.
        """
        raise_error = kwargs.pop("raise_error", False)
        module = kwargs.pop("module", None)
        if module is None:
            if (not args) or getattr(args[0], "module", None) is None:
                kwargs["module"] = self
        try:
            event = self.scan.make_event(*args, **kwargs)
        except ValidationError as e:
            if raise_error:
                raise
            self.warning(f"{e}")
            return
        return event

    async def emit_event(self, *args, **kwargs):
        """Emit an event to the event queue and distribute it to interested modules.

        This is how modules "return" data.

        The method first creates an event object by calling `self.make_event()` with the provided arguments.
        Then, the event is queued for outgoing distribution using `self.queue_outgoing_event()`.

        Args:
            *args: Positional arguments to be passed to `self.make_event()` for event creation.
            **kwargs: Keyword arguments to be passed for event creation or configuration of the emit action.
                ```markdown
                - on_success_callback: Optional callback function to execute upon successful event emission.
                - abort_if: Optional condition under which the event emission should be aborted.
                - quick: Optional flag to indicate whether the event should be processed quickly.
                ```

        Examples:
            >>> await self.emit_event("www.evilcorp.com", parent=event, tags=["affiliate"])

            >>> new_event = self.make_event("1.2.3.4", parent=event)
            >>> await self.emit_event(new_event)

        Returns:
            None

        Raises:
            ValidationError: If the event cannot be validated (handled in `self.make_event()`).
        """
        event_kwargs = dict(kwargs)
        emit_kwargs = {}
        for o in ("on_success_callback", "abort_if", "quick"):
            v = event_kwargs.pop(o, None)
            if v is not None:
                emit_kwargs[o] = v
        event = self.make_event(*args, **event_kwargs)
        if event:
            await self.queue_outgoing_event(event, **emit_kwargs)
        return event

    async def _events_waiting(self, batch_size=None):
        """
        Asynchronously fetches events from the incoming_event_queue, up to a specified batch size.

        Args:
            None

        Returns:
            tuple: A tuple containing two elements:
                - events (list): A list of acceptable events from the queue.
                - finish (bool): A flag indicating if a "FINISHED" event is encountered.

        Notes:
            - The method pulls events from incoming_event_queue using 'get_nowait()'.
            - Events go through '_event_postcheck()' for validation.
            - "FINISHED" events are handled differently and the finish flag is set to True.
            - If the queue is empty or the batch size is reached, the loop breaks.
        """
        if batch_size is None:
            batch_size = self.batch_size
        events = []
        finish = False
        while self.incoming_event_queue:
            if batch_size != -1 and len(events) > self.batch_size:
                break
            try:
                event = self.incoming_event_queue.get_nowait()
                self.debug(f"Got {event} from {getattr(event, 'module', 'unknown_module')}")
                acceptable, reason = await self._event_postcheck(event)
                if acceptable:
                    if event.type == "FINISHED":
                        finish = True
                    else:
                        events.append(event)
                        self.scan.stats.event_consumed(event, self)
                elif reason:
                    self.debug(f"Not accepting {event} because {reason}")
            except asyncio.queues.QueueEmpty:
                break
        return events, finish

    @property
    def num_incoming_events(self):
        ret = 0
        if self.incoming_event_queue is not False:
            ret = self.incoming_event_queue.qsize()
        return ret

    def start(self):
        self._tasks = [
            asyncio.create_task(self._worker(), name=f"{self.scan.name}.{self.name}._worker()")
            for _ in range(self.module_threads)
        ]

    async def _setup(self):
        """
        Asynchronously sets up the module by invoking its 'setup()' method.

        This method catches exceptions during setup, sets the module's error state if necessary, and determines the
        status code based on the result of the setup process.

        Args:
            None

        Returns:
            tuple: A tuple containing the module's name, status (True for success, False for hard-fail, None for soft-fail),
            and an optional status message.

        Raises:
            Exception: Captured exceptions from the 'setup()' method are logged, but not propagated.

        Notes:
            - The 'setup()' method can return either a simple boolean status or a tuple of status and message.
            - A WordlistError exception triggers a soft-fail status.
            - The debug log will contain setup status information for the module.
        """
        status_codes = {False: "hard-fail", None: "soft-fail", True: "success"}

        status = False
        self.debug(f"Setting up module {self.name}")
        try:
            result = await self.setup()
            if type(result) == tuple and len(result) == 2:
                status, msg = result
            else:
                status = result
                msg = status_codes[status]
            self.debug(f"Finished setting up module {self.name}")
        except Exception as e:
            self.set_error_state(f"Unexpected error during module setup: {e}", critical=True)
            msg = f"{e}"
            self.trace()
        return self, status, str(msg)

    async def _worker(self):
        """
        The core worker loop for the module, responsible for handling events from the incoming event queue.

        This method is a coroutine and is run asynchronously. Multiple instances can run simultaneously based on
        the 'module_threads' configuration. The worker dequeues events from 'incoming_event_queue', performs
        necessary prechecks, and passes the event to the appropriate handler function.

        Args:
            None

        Returns:
            None

        Raises:
            asyncio.CancelledError: If the worker is cancelled during its operation.

        Notes:
            - The worker is sensitive to the 'stopping' flag of the scan. It will terminate if this flag is set.
            - The worker handles backpressure by pausing when the outgoing event queue is full.
            - Batch processing is supported and is activated when 'batch_size' > 1.
            - Each event is subject to a post-check via '_event_postcheck()' to decide whether it should be handled.
            - Special 'FINISHED' events trigger the 'finish()' method of the module.
        """
        async with self.scan._acatch(context=self._worker, unhandled_is_critical=True):
            try:
                while not self.scan.stopping and not self.errored:
                    # hold the reigns if our outgoing queue is full
                    if self._qsize > 0 and self.outgoing_event_queue.qsize() >= self._qsize:
                        await asyncio.sleep(0.1)
                        continue

                    # if batch wasn't big enough, we wait for the next event before continuing
                    if self.batch_size > 1:
                        submitted = await self._handle_batch()
                        if not submitted:
                            async with self.event_received:
                                await self.event_received.wait()

                    else:
                        try:
                            if self.incoming_event_queue is not False:
                                event = await self.incoming_event_queue.get()
                            else:
                                self.debug("Event queue is in bad state")
                                break
                        except asyncio.queues.QueueEmpty:
                            continue
                        self.debug(f"Got {event} from {getattr(event, 'module', 'unknown_module')}")
                        async with self._task_counter.count(f"event_postcheck({event})"):
                            acceptable, reason = await self._event_postcheck(event)
                        if acceptable:
                            if event.type == "FINISHED":
                                context = f"{self.name}.finish()"
                                async with self.scan._acatch(context), self._task_counter.count(context):
                                    await self.finish()
                            else:
                                context = f"{self.name}.handle_event({event})"
                                self.scan.stats.event_consumed(event, self)
                                self.debug(f"Handling {event}")
                                async with self.scan._acatch(context), self._task_counter.count(context):
                                    await self.handle_event(event)
                                self.debug(f"Finished handling {event}")
                        else:
                            self.debug(f"Not accepting {event} because {reason}")
            except asyncio.CancelledError:
                # this trace was used for debugging leaked CancelledErrors from inside httpx
                # self.log.trace("Worker cancelled")
                raise
            except BaseException as e:
                if self.helpers.in_exception_chain(e, (KeyboardInterrupt,)):
                    self.scan.stop()
                else:
                    self.error(f"Critical failure in module {self.name}: {e}")
                    self.error(traceback.format_exc())
        self.log.trace("Worker stopped")

    @property
    def max_scope_distance(self):
        if self.in_scope_only or self.target_only:
            return 0
        if self.scope_distance_modifier is None:
            return 999
        return max(0, self.scan.scope_search_distance + self.scope_distance_modifier)

    def _event_precheck(self, event):
        """
        Pre-checks an event to determine if it should be accepted by the module for queuing.

        This method is called when an event is about to be enqueued into the module's incoming event queue.
        It applies various filters such as special signal event types, module error state, watched event types, and more
        to decide whether or not the event should be enqueued.

        Args:
            event (Event): The event object to check.

        Returns:
            tuple: A tuple (bool, str) where the bool indicates if the event should be accepted, and the str gives the reason.

        Examples:
            >>> result, reason = self._event_precheck(event)
            >>> if result:
            ...     self.incoming_event_queue.put_nowait(event)
            ... else:
            ...     self.debug(f"Not accepting {event} because {reason}")

        Notes:
            - The method considers special signal event types like "FINISHED".
            - Checks whether the module is in an error state.
            - Checks if the event type matches the types this module is interested in (`watched_events`).
            - Checks for events tagged as 'target' if the module has `target_only` flag set.
            - Applies specific filtering based on event type and module name.
        """

        # special signal event types
        if event.type in ("FINISHED",):
            return True, "its type is FINISHED"
        if self.errored:
            return False, "module is in error state"
        # exclude non-watched types
        if not any(t in self.get_watched_events() for t in ("*", event.type)):
            return False, "its type is not in watched_events"
        if self.target_only:
            if "target" not in event.tags:
                return False, "it did not meet target_only filter criteria"

        # exclude certain URLs (e.g. javascript):
        # TODO: revisit this after httpx rework
        if event.type.startswith("URL") and self.name != "httpx" and "httpx-only" in event.tags:
            return False, "its extension was listed in url_extension_httpx_only"

        return True, "precheck succeeded"

    async def _event_postcheck(self, event):
        """
        A simple wrapper for dup tracking
        """
        # special exception for "FINISHED" event
        if event.type in ("FINISHED",):
            return True, ""
        acceptable, reason = await self._event_postcheck_inner(event)
        if acceptable:
            # check duplicates
            is_incoming_duplicate, reason = self.is_incoming_duplicate(event, add=True)
            if is_incoming_duplicate and not self.accept_dupes:
                return False, "module has already seen it" + (f" ({reason})" if reason else "")

        return acceptable, reason

    async def _event_postcheck_inner(self, event):
        """
        Post-checks an event to determine if it should be accepted by the module for handling.

        This method is called when an event is dequeued from the module's incoming event queue, right before it is actually processed.
        It applies various filters such as scope, custom filtering logic, and per-host tracking to decide the event's fate.

        Args:
            event (Event): The event object to check.

        Returns:
            tuple: A tuple (bool, str) where the bool indicates if the event should be accepted, and the str gives the reason.

        Notes:
            - Override the `filter_event` method for custom filtering logic.
            - This method also maintains host-based tracking when the `per_host_only` or similar flags are set.
            - The method will also update event production stats for output modules.
        """
        # force-output certain events to the graph
        if self._is_graph_important(event):
            return True, "event is critical to the graph"

        # check scope distance
        filter_result, reason = self._scope_distance_check(event)
        if not filter_result:
            return filter_result, reason

        # custom filtering
        async with self.scan._acatch(context=self.filter_event):
            try:
                filter_result = await self.filter_event(event)
            except Exception as e:
                msg = f"Unhandled exception in {self.name}.filter_event({event}): {e}"
                self.error(msg)
                return False, msg
            msg = str(self._custom_filter_criteria_msg)
            with suppress(ValueError, TypeError):
                filter_result, reason = filter_result
                msg += f": {reason}"
            if not filter_result:
                return False, msg

        self.debug(f"{event} passed post-check")
        return True, ""

    def _scope_distance_check(self, event):
        if self.in_scope_only:
            if event.scope_distance > 0:
                return False, "it did not meet in_scope_only filter criteria"
        if self.scope_distance_modifier is not None:
            if event.scope_distance < 0:
                return False, f"its scope_distance ({event.scope_distance}) is invalid."
            elif event.scope_distance > self.max_scope_distance:
                return (
                    False,
                    f"its scope_distance ({event.scope_distance}) exceeds the maximum allowed by the scan ({self.scan.scope_search_distance}) + the module ({self.scope_distance_modifier}) == {self.max_scope_distance}",
                )
        return True, ""

    async def _cleanup(self):
        if not self._cleanedup:
            self._cleanedup = True
            for callback in [self.cleanup] + self.cleanup_callbacks:
                context = f"{self.name}.cleanup()"
                if callable(callback):
                    async with self.scan._acatch(context), self._task_counter.count(context):
                        await self.helpers.execute_sync_or_async(callback)

    async def queue_event(self, event):
        """
        Asynchronously queues an incoming event to the module's event queue for further processing.

        The function performs an initial check to see if the event is acceptable for queuing.
        If the event passes the check, it is put into the `incoming_event_queue`.

        Args:
            event: The event object to be queued.

        Returns:
            None: The function doesn't return anything but modifies the state of the `incoming_event_queue`.

        Examples:
            >>> await self.queue_event(some_event)

        Raises:
            AttributeError: If the module is not in an acceptable state to queue incoming events.
        """
        async with self._task_counter.count("queue_event()", _log=False):
            if self.incoming_event_queue is False:
                self.debug("Not in an acceptable state to queue incoming event")
                return
            acceptable, reason = self._event_precheck(event)
            if not acceptable:
                if reason and reason != "its type is not in watched_events":
                    self.debug(f"Not queueing {event} because {reason}")
                return
            else:
                self.debug(f"Queueing {event} because {reason}")
            try:
                self.incoming_event_queue.put_nowait(event)
                async with self.event_received:
                    self.event_received.notify()
                if event.type != "FINISHED":
                    self.scan._new_activity = True
            except AttributeError:
                self.debug("Not in an acceptable state to queue incoming event")

    async def queue_outgoing_event(self, event, **kwargs):
        """
        Queues an outgoing event to the module's outgoing event queue for further processing.

        The function attempts to put the event into the `outgoing_event_queue` immediately.
        If it's not possible due to the current state of the module, an AttributeError is raised, and a debug log is generated.

        Args:
            event: The event object to be queued.
            **kwargs: Additional keyword arguments to be associated with the event.

        Returns:
            None: The function doesn't return anything but modifies the state of the `outgoing_event_queue`.

        Examples:
            >>> self.queue_outgoing_event(some_outgoing_event, abort_if=lambda e: "unresolved" in e.tags)

        Raises:
            AttributeError: If the module is not in an acceptable state to queue outgoing events.
        """
        try:
            await self.outgoing_event_queue.put((event, kwargs))
        except AttributeError:
            self.debug("Not in an acceptable state to queue outgoing event")

    def set_error_state(self, message=None, clear_outgoing_queue=False, critical=False):
        """
        Puts the module into an errored state where it cannot accept new events. Optionally logs a warning message.

        The function sets the module's `errored` attribute to True and logs a warning with the optional message.
        It also clears the incoming event queue to prevent further processing and updates its status to False.

        Args:
            message (str, optional): Additional message to be logged along with the warning.

        Returns:
            None: The function doesn't return anything but updates the `errored` state and clears the incoming event queue.

        Examples:
            >>> self.set_error_state()
            >>> self.set_error_state("Failed to connect to the server")

        Notes:
            - The function sets `self._incoming_event_queue` to False to prevent its further use.
            - If the module was already in an errored state, the function will not reset the error state or the queue.
        """
        if not self.errored:
            log_msg = "Setting error state"
            if message is not None:
                log_msg += f": {message}"
            if critical:
                log_fn = self.error
            else:
                log_fn = self.warning
            log_fn(log_msg)
            self.errored = True
            # clear incoming queue
            if self.incoming_event_queue is not False:
                self.debug("Emptying event_queue")
                with suppress(asyncio.queues.QueueEmpty):
                    while 1:
                        self.incoming_event_queue.get_nowait()
                # set queue to None to prevent its use
                # if there are leftover objects in the queue, the scan will hang.
                self._incoming_event_queue = False

            if clear_outgoing_queue:
                with suppress(asyncio.queues.QueueEmpty):
                    while 1:
                        self.outgoing_event_queue.get_nowait()

    def is_incoming_duplicate(self, event, add=False):
        if event.type in ("FINISHED",):
            return False, ""
        reason = ""
        try:
            event_hash = self._incoming_dedup_hash(event)
        except Exception as e:
            msg = f"Unhandled exception in {self.name}._incoming_dedup_hash({event}): {e}"
            self.error(msg)
            return True, msg
        with suppress(TypeError, ValueError):
            event_hash, reason = event_hash
        is_dup = event_hash in self._incoming_dup_tracker
        if add:
            self._incoming_dup_tracker.add(event_hash)
        return is_dup, reason

    def _incoming_dedup_hash(self, event):
        """
        Determines the criteria for what is considered to be a duplicate event if `accept_dupes` is False.
        """
        if self.per_host_only:
            return self.get_per_host_hash(event), "per_host_only=True"
        if self.per_hostport_only:
            return self.get_per_hostport_hash(event), "per_hostport_only=True"
        elif self.per_domain_only:
            return self.get_per_domain_hash(event), "per_domain_only=True"
        return hash(event), ""

    def _outgoing_dedup_hash(self, event):
        """
        Determines the criteria for what is considered to be a duplicate event if `suppress_dupes` is True.

        We take into account the `internal` attribute we don't want an internal event (which isn't distributed to output modules)
        to inadvertently suppress a non-internal event.
        """
        return hash((event, self.name, event.internal, event.always_emit))

    def get_per_host_hash(self, event):
        """
        Computes a per-host hash value for a given event. This method may be optionally overridden in subclasses.

        The function uses the event's `host` to create a string to be hashed.

        Args:
            event (Event): The event object containing host information.

        Returns:
            int: The hash value computed for the host.

        Examples:
            >>> event = self.make_event("https://example.com:8443")
            >>> self.get_per_host_hash(event)
        """
        return hash(event.host)

    def get_per_hostport_hash(self, event):
        """
        Computes a per-host:port hash value for a given event. This method may be optionally overridden in subclasses.

        The function uses the event's `host`, `port`, and `scheme` (for URLs) to create a string to be hashed.
        The hash value is used for distinguishing events related to the same host.

        Args:
            event (Event): The event object containing host, port, or parsed URL information.

        Returns:
            int: The hash value computed for the host.

        Examples:
            >>> event = self.make_event("https://example.com:8443")
            >>> self.get_per_hostport_hash(event)
        """
        parsed = getattr(event, "parsed_url", None)
        if parsed is None:
            to_hash = self.helpers.make_netloc(event.host, event.port)
        else:
            to_hash = f"{parsed.scheme}://{parsed.netloc}/"
        return hash(to_hash)

    def get_per_domain_hash(self, event):
        """
        Computes a per-domain hash value for a given event. This method may be optionally overridden in subclasses.

        Events with the same root domain will receive the same hash value.

        Args:
            event (Event): The event object containing host, port, or parsed URL information.

        Returns:
            int: The hash value computed for the domain.

        Examples:
            >>> event = self.make_event("https://www.example.com:8443")
            >>> self.get_per_domain_hash(event)
        """
        _, domain = self.helpers.split_domain(event.host)
        return hash(domain)

    @property
    def name(self):
        return str(self._name)

    @property
    def helpers(self):
        return self.scan.helpers

    @property
    def status(self):
        """
        Provides the current status of the module as a dictionary.

        The dictionary contains the following keys:
            - 'events': A sub-dictionary with 'incoming' and 'outgoing' keys, representing the number of events in the respective queues.
            - 'tasks': The current value of the task counter.
            - 'errored': A boolean value indicating if the module is in an error state.
            - 'running': A boolean value indicating if the module is currently processing data.

        Returns:
            dict: A dictionary containing the current status of the module.

        Examples:
            >>> self.status
            {'events': {'incoming': 5, 'outgoing': 2}, 'tasks': 3, 'errored': False, 'running': True}
        """
        status = {
            "events": {"incoming": self.num_incoming_events, "outgoing": self.outgoing_event_queue.qsize()},
            "tasks": self._task_counter.value,
            "errored": self.errored,
        }
        status["running"] = self.running
        return status

    @property
    def running(self):
        """Property indicating whether the module is currently processing data.

        This property checks if the task counter (`self._task_counter.value`) is greater than zero,
        indicating that there are ongoing tasks in the module.

        Returns:
            bool: True if the module is currently processing data, False otherwise.
        """
        return self._task_counter.value > 0

    @property
    def finished(self):
        """Property indicating whether the module has finished processing.

        This property checks three conditions to determine if the module is finished:
        1. The module is not currently running (`self.running` is False).
        2. The number of incoming events in the queue is zero or less (`self.num_incoming_events <= 0`).
        3. The number of outgoing events in the queue is zero or less (`self.outgoing_event_queue.qsize() <= 0`).

        Returns:
            bool: True if the module has finished processing, False otherwise.
        """
        return not self.running and self.num_incoming_events <= 0 and self.outgoing_event_queue.qsize() <= 0

    async def run_process(self, *args, **kwargs):
        kwargs["_proc_tracker"] = self._proc_tracker
        return await self.helpers.run(*args, **kwargs)

    async def run_process_live(self, *args, **kwargs):
        kwargs["_proc_tracker"] = self._proc_tracker
        async for line in self.helpers.run_live(*args, **kwargs):
            yield line

    def prepare_api_request(self, url, kwargs):
        """
        Prepare an API request by adding the necessary authentication - header, bearer token, etc.
        """
        if self.api_key:
            url = url.format(api_key=self.api_key)
            if "headers" not in kwargs:
                kwargs["headers"] = {}
            kwargs["headers"]["Authorization"] = f"Bearer {self.api_key}"
        return url, kwargs

    async def api_request(self, *args, **kwargs):
        """
        Makes an HTTP request while automatically:
            - avoiding rate limits (sleep/retry)
            - cycling API keys
            - cancelling after too many failed attempts
        """
        url = args[0] if args else kwargs.pop("url", "")

        # loop until we have a successful request
        for _ in range(self.api_retries):
            if "headers" not in kwargs:
                kwargs["headers"] = {}
            new_url, kwargs = self.prepare_api_request(url, kwargs)
            kwargs["url"] = new_url

            r = await self.helpers.request(**kwargs)
            success = r is not None and self._api_response_is_success(r)

            if success:
                self._api_request_failures = 0
            else:
                status_code = getattr(r, "status_code", 0)
                response_text = getattr(r, "text", "")
                self.trace(f"API response to {url} failed with status code {status_code}: {response_text}")
                self._api_request_failures += 1
                if self._api_request_failures >= self.api_failure_abort_threshold:
                    self.set_error_state(
                        f"Setting error state due to {self._api_request_failures:,} failed HTTP requests"
                    )
                else:
                    # sleep for a bit if we're being rate limited
                    retry_after = self._get_retry_after(r)
                    if retry_after or status_code == 429:
                        sleep_interval = int(retry_after) if retry_after is not None else self._429_sleep_interval
                        if retry_after and retry_after > self._429_max_sleep_interval:
                            self.verbose(
                                f"Got an excessive retry-after header of {retry_after} from {new_url}, using {self._429_max_sleep_interval} instead"
                            )
                            sleep_interval = self._429_max_sleep_interval
                        self.verbose(
                            f"Sleeping for {sleep_interval:,} seconds due to rate limit (HTTP status: {status_code})"
                        )
                        await asyncio.sleep(sleep_interval)
                    elif self._api_keys:
                        # if request failed, cycle API keys and try again
                        self.cycle_api_key()
                    continue
            break

        return r

    def _get_retry_after(self, r):
        # try to get retry_after from headers first
        headers = getattr(r, "headers", {})
        retry_after = headers.get("Retry-After", None)
        if retry_after is None:
            # then look in body json
            with suppress(Exception):
                body_json = r.json()
                if isinstance(body_json, dict):
                    retry_after = body_json.get("retry_after", None)
        if retry_after is not None:
            return float(retry_after)

    def _prepare_api_iter_req(self, url, page, page_size, offset, **requests_kwargs):
        """
        Default function for preparing an API request for iterating through paginated data.
        """
        url = self.helpers.safe_format(url, page=page, page_size=page_size, offset=offset)
        return url, requests_kwargs

    def _api_response_is_success(self, r):
        # 404s typically indicate no data rather than an actual error with the API, so we don't want to retry them
        return getattr(r, "is_success", False) or getattr(r, "status_code", 0) == 404

    async def api_page_iter(self, url, page_size=100, _json=True, next_key=None, iter_key=None, **requests_kwargs):
        """
        An asynchronous generator function for iterating through paginated API data.

        This function continuously makes requests to a specified API URL, incrementing the page number
        or applying a custom pagination function, and yields the received data one page at a time.
        It is well-suited for APIs that provide paginated results.

        Args:
            url (str): The initial API URL. Can contain placeholders for 'page', 'page_size', and 'offset'.
            page_size (int, optional): The number of items per page. Defaults to 100.
            json (bool, optional): If True, attempts to deserialize the response content to a JSON object. Defaults to True.
            next_key (callable, optional): A function that takes the last page's data and returns the URL for the next page. Defaults to None.
            iter_key (callable, optional): A function that builds each new request based on the page number, page size, and offset. Defaults to a simple implementation that autoreplaces {page} and {page_size} in the url.
            **requests_kwargs: Arbitrary keyword arguments that will be forwarded to the HTTP request function.

        Yields:
            dict or httpx.Response: If 'json' is True, yields a dictionary containing the parsed JSON data. Otherwise, yields the raw HTTP response.

        Note:
            The loop will continue indefinitely unless manually stopped. Make sure to break out of the loop once the last page has been received.

        Examples:
            >>> agen = api_page_iter('https://api.example.com/data?page={page}&page_size={page_size}')
            >>> try:
            >>>     async for page in agen:
            >>>         subdomains = page["subdomains"]
            >>>         self.hugesuccess(subdomains)
            >>>         if not subdomains:
            >>>             break
            >>> finally:
            >>>     await agen.aclose()
        """
        page = 1
        offset = 0
        result = None
        if iter_key is None:
            iter_key = self._prepare_api_iter_req
        while 1:
            if result and callable(next_key):
                try:
                    new_url = next_key(result)
                except Exception as e:
                    self.debug(f"Failed to extract next page of results from {url}: {e}")
                    self.debug(traceback.format_exc())
            else:
                new_url, new_kwargs = iter_key(url, page, page_size, offset, **requests_kwargs)
            result = await self.api_request(new_url, **new_kwargs)
            if result is None:
                self.verbose(f"api_page_iter() got no response for {url}")
                break
            try:
                if _json:
                    result = result.json()
                yield result
            except Exception:
                self.warning(f'Error in api_page_iter() for url: "{new_url}"')
                self.trace(traceback.format_exc())
                break
            finally:
                offset += page_size
                page += 1

    @property
    def preset(self):
        return self.scan.preset

    @property
    def config(self):
        """Property that provides easy access to the module's configuration in the scan's config.

        This property serves as a shortcut to retrieve the module-specific configuration from
        `self.scan.config`. If no configuration is found for this module, an empty dictionary is returned.

        Returns:
            dict: The configuration dictionary specific to this module.
        """
        config = self.scan.config.get("modules", {}).get(self.name, {})
        if config is None:
            config = {}
        return config

    @property
    def incoming_event_queue(self):
        if self._incoming_event_queue is None:
            if self._shuffle_incoming_queue:
                self._incoming_event_queue = ShuffleQueue()
            else:
                self._incoming_event_queue = asyncio.Queue()
        return self._incoming_event_queue

    @property
    def outgoing_event_queue(self):
        if self._outgoing_event_queue is None:
            self._outgoing_event_queue = ShuffleQueue(self._qsize)
        return self._outgoing_event_queue

    @property
    def priority(self):
        """
        Gets the priority level of the module as an integer.

        The priority level is constrained to be between 1 and 5, inclusive.
        A lower value indicates a higher priority.

        Returns:
            int: The priority level of the module, constrained between 1 and 5.

        Examples:
            >>> self.priority
            3
        """
        return int(max(1, min(5, self._priority)))

    @property
    def auth_required(self):
        return self.meta.get("auth_required", False)

    @property
    def http_timeout(self):
        """
        Convenience shortcut to `http_timeout` in the config
        """
        return self.scan.web_config.get("http_timeout", 10)

    @property
    def log(self):
        if getattr(self, "_log", None) is None:
            self._log = logging.getLogger(f"bbot.modules.{self.name}")
        return self._log

    @property
    def memory_usage(self):
        """Property that calculates the current memory usage of the module in bytes.

        This property uses the `get_size` function to estimate the memory consumption
        of the module object. The depth of the object graph traversal is limited to 3 levels
        to avoid performance issues. Commonly shared objects like `self.scan`, `self.helpers`,
        are excluded from the calculation to prevent double-counting.

        Returns:
            int: The estimated memory usage of the module in bytes.
        """
        seen = {self.scan, self.helpers, self.log}  # noqa
        return get_size(self, max_depth=3, seen=seen)

    def __str__(self):
        return self.name

    def log_table(self, *args, **kwargs):
        """Logs a table to the console and optionally writes it to a file.

        This function generates a table using `self.helpers.make_table`, then logs each line
        of the table as an info-level log. If a table_name is provided, it also writes the table to a file.

        Args:
            *args: Variable length argument list to be passed to `self.helpers.make_table`.
            **kwargs: Arbitrary keyword arguments. If 'table_name' is specified, the table will be written to a file.

        Returns:
            str: The generated table as a string.

        Examples:
            >>> self.log_table(['Header1', 'Header2'], [['row1col1', 'row1col2'], ['row2col1', 'row2col2']], table_name="my_table")
        """
        table_name = kwargs.pop("table_name", None)
        max_log_entries = kwargs.pop("max_log_entries", None)
        table = self.helpers.make_table(*args, **kwargs)
        lines_logged = 0
        for line in table.splitlines():
            if max_log_entries is not None and lines_logged > max_log_entries:
                break
            self.info(line)
            lines_logged += 1
        if table_name is not None:
            date = self.helpers.make_date()
            filename = self.scan.home / f"{self.helpers.tagify(table_name)}-table-{date}.txt"
            with open(filename, "w") as f:
                f.write(table)
            self.verbose(f"Wrote {table_name} to {filename}")
        return table

    def _is_graph_important(self, event):
        return self.preserve_graph and getattr(event, "_graph_important", False) and not getattr(event, "_omit", False)

    @property
    def preserve_graph(self):
        preserve_graph = self.config.get("preserve_graph", None)
        if preserve_graph is None:
            preserve_graph = self._preserve_graph
        return preserve_graph

    def debug(self, *args, trace=False, **kwargs):
        """Logs debug messages and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.debug("This is a debug message")
            >>> self.debug("This is a debug message with a trace", trace=True)
        """
        self.log.debug(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def verbose(self, *args, trace=False, **kwargs):
        """Logs messages and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.verbose("This is a verbose message")
            >>> self.verbose("This is a verbose message with a trace", trace=True)
        """
        self.log.verbose(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def hugeverbose(self, *args, trace=False, **kwargs):
        """Logs a whole message in emboldened white text, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.hugeverbose("This is a huge verbose message")
            >>> self.hugeverbose("This is a huge verbose message with a trace", trace=True)
        """
        self.log.hugeverbose(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def info(self, *args, trace=False, **kwargs):
        """Logs informational messages and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.info("This is an informational message")
            >>> self.info("This is an informational message with a trace", trace=True)
        """
        self.log.info(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def hugeinfo(self, *args, trace=False, **kwargs):
        """Logs a whole message in emboldened blue text, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.hugeinfo("This is a huge informational message")
            >>> self.hugeinfo("This is a huge informational message with a trace", trace=True)
        """
        self.log.hugeinfo(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def success(self, *args, trace=False, **kwargs):
        """Logs a success message, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.success("Operation completed successfully")
            >>> self.success("Operation completed with a trace", trace=True)
        """
        self.log.success(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def hugesuccess(self, *args, trace=False, **kwargs):
        """Logs a whole message in emboldened green text, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.hugesuccess("This is a huge success message")
            >>> self.hugesuccess("This is a huge success message with a trace", trace=True)
        """
        self.log.hugesuccess(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def warning(self, *args, trace=True, **kwargs):
        """Logs a warning message, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.warning("This is a warning message")
            >>> self.warning("This is a warning message with a trace", trace=False)
        """
        self.log.warning(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def hugewarning(self, *args, trace=True, **kwargs):
        """Logs a whole message in emboldened orange text, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.hugewarning("This is a huge warning message")
            >>> self.hugewarning("This is a huge warning message with a trace", trace=False)
        """
        self.log.hugewarning(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def error(self, *args, trace=True, **kwargs):
        """Logs an error message, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.error("This is an error message")
            >>> self.error("This is an error message with a trace", trace=False)
        """
        self.log.error(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    def trace(self, msg=None):
        """Logs the stack trace of the most recently caught exception.

        This method captures the type, value, and traceback of the most recent exception and logs it using the trace level. It is typically used for debugging purposes.

        Anything logged using this method will always be written to the scan's `debug.log`, even if debugging is not enabled.

        Examples:
            >>> try:
            >>>     1 / 0
            >>> except ZeroDivisionError:
            >>>     self.trace()
        """
        if msg is None:
            e_type, e_val, e_traceback = exc_info()
            if e_type is not None:
                self.log.trace(traceback.format_exc())
        else:
            self.log.trace(msg)

    def critical(self, *args, trace=True, **kwargs):
        """Logs a whole message in emboldened red text, and optionally the stack trace of the most recent exception.

        Args:
            *args: Variable-length argument list to pass to the logger.
            trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
            **kwargs: Arbitrary keyword arguments to pass to the logger.

        Examples:
            >>> self.critical("This is a critical message")
            >>> self.critical("This is a critical message with a trace", trace=False)
        """
        self.log.critical(*args, extra={"scan_id": self.scan.id}, **kwargs)
        if trace:
            self.trace()

    @classmethod
    def help_text(self):
        """
        Returns a string containing help text for the module.
        This includes the module's description, metadata, events, flags, and available options.
        """
        # Retrieve the module's metadata, options, events, and flags
        meta = getattr(self, "meta", {})
        options = getattr(self, "options", {})
        options_desc = getattr(self, "options_desc", {})
        watched_events = getattr(self, "watched_events", [])
        produced_events = getattr(self, "produced_events", [])
        flags = getattr(self, "flags", [])

        help_text = "\n" + "=" * 40 + "\n"
        help_text += f"Module Help: {self.__name__}\n"
        help_text += "=" * 40 + "\n\n"

        for key, value in meta.items():
            help_text += f"{key.replace('_', ' ').title()}: {value}\n"

        help_text += "\nWatched Events:\n"
        help_text += "  " + ", ".join(watched_events) + "\n" if watched_events else "  None\n"

        help_text += "\nProduced Events:\n"
        help_text += "  " + ", ".join(produced_events) + "\n" if produced_events else "  None\n"

        help_text += "\nFlags:\n"
        help_text += "  " + ", ".join(flags) + "\n" if flags else "  None\n"

        help_text += "\nOptions:\n"
        if options:
            for option, default_value in options.items():
                option_description = options_desc.get(option, "No description available.")
                help_text += f"  - {option}:\n"
                help_text += f"      Description: {option_description}\n"
                help_text += f"      Default: {default_value}\n"
        else:
            help_text += "  No options available."

        return help_text

auth_secret property

auth_secret

Indicates if the module is properly configured for authentication.

This read-only property should be used to check whether all necessary attributes (e.g., API keys, tokens, etc.) are configured to perform authenticated requests in the module. Commonly used in setup or initialization steps.

Returns:

  • bool

    True if the module is properly configured for authentication, otherwise False.

config property

config

Property that provides easy access to the module's configuration in the scan's config.

This property serves as a shortcut to retrieve the module-specific configuration from self.scan.config. If no configuration is found for this module, an empty dictionary is returned.

Returns:

  • dict

    The configuration dictionary specific to this module.

finished property

finished

Property indicating whether the module has finished processing.

This property checks three conditions to determine if the module is finished: 1. The module is not currently running (self.running is False). 2. The number of incoming events in the queue is zero or less (self.num_incoming_events <= 0). 3. The number of outgoing events in the queue is zero or less (self.outgoing_event_queue.qsize() <= 0).

Returns:

  • bool

    True if the module has finished processing, False otherwise.

http_timeout property

http_timeout

Convenience shortcut to http_timeout in the config

memory_usage property

memory_usage

Property that calculates the current memory usage of the module in bytes.

This property uses the get_size function to estimate the memory consumption of the module object. The depth of the object graph traversal is limited to 3 levels to avoid performance issues. Commonly shared objects like self.scan, self.helpers, are excluded from the calculation to prevent double-counting.

Returns:

  • int

    The estimated memory usage of the module in bytes.

priority property

priority

Gets the priority level of the module as an integer.

The priority level is constrained to be between 1 and 5, inclusive. A lower value indicates a higher priority.

Returns:

  • int

    The priority level of the module, constrained between 1 and 5.

Examples:

>>> self.priority
3

running property

running

Property indicating whether the module is currently processing data.

This property checks if the task counter (self._task_counter.value) is greater than zero, indicating that there are ongoing tasks in the module.

Returns:

  • bool

    True if the module is currently processing data, False otherwise.

status property

status

Provides the current status of the module as a dictionary.

The dictionary contains the following keys
  • 'events': A sub-dictionary with 'incoming' and 'outgoing' keys, representing the number of events in the respective queues.
  • 'tasks': The current value of the task counter.
  • 'errored': A boolean value indicating if the module is in an error state.
  • 'running': A boolean value indicating if the module is currently processing data.

Returns:

  • dict

    A dictionary containing the current status of the module.

Examples:

>>> self.status
{'events': {'incoming': 5, 'outgoing': 2}, 'tasks': 3, 'errored': False, 'running': True}

__init__

__init__(scan)

Initializes a module instance.

Parameters:

  • scan

    The BBOT scan object associated with this module instance.

Attributes:

  • scan

    The scan object associated with this module.

  • errored (bool) –

    Whether the module has errored out. Default is False.

Source code in bbot/modules/base.py
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
def __init__(self, scan):
    """Initializes a module instance.

    Args:
        scan: The BBOT scan object associated with this module instance.

    Attributes:
        scan: The scan object associated with this module.

        errored (bool): Whether the module has errored out. Default is False.
    """
    self.scan = scan
    self.errored = False
    self._log = None
    self._incoming_event_queue = None
    self._outgoing_event_queue = None
    # track incoming events to prevent unwanted duplicates
    self._incoming_dup_tracker = set()
    # tracks which subprocesses are running under this module
    self._proc_tracker = set()
    # seconds since we've submitted a batch
    self._last_submitted_batch = None
    # additional callbacks to be executed alongside self.cleanup()
    self.cleanup_callbacks = []
    self._cleanedup = False
    self._watched_events = None

    self._task_counter = TaskCounter()

    # string constant
    self._custom_filter_criteria_msg = "it did not meet custom filter criteria"

    self._api_keys = []

    # track number of failures (for .api_request())
    self._api_request_failures = 0

    self._default_api_retries = self.scan.config.get("web", {}).get("api_retries", 2)

    self._tasks = []
    self._event_received = None

    # used for optional "per host" tracking
    self._per_host_tracker = set()

    # 429 rate limit handling
    self._429_sleep_interval = self.scan.web_config.get("429_sleep_interval", 30)
    self._429_max_sleep_interval = self.scan.web_config.get("429_max_sleep_interval", 60)

api_page_iter async

api_page_iter(url, page_size=100, _json=True, next_key=None, iter_key=None, **requests_kwargs)

An asynchronous generator function for iterating through paginated API data.

This function continuously makes requests to a specified API URL, incrementing the page number or applying a custom pagination function, and yields the received data one page at a time. It is well-suited for APIs that provide paginated results.

Parameters:

  • url (str) –

    The initial API URL. Can contain placeholders for 'page', 'page_size', and 'offset'.

  • page_size (int, default: 100 ) –

    The number of items per page. Defaults to 100.

  • json (bool) –

    If True, attempts to deserialize the response content to a JSON object. Defaults to True.

  • next_key (callable, default: None ) –

    A function that takes the last page's data and returns the URL for the next page. Defaults to None.

  • iter_key (callable, default: None ) –

    A function that builds each new request based on the page number, page size, and offset. Defaults to a simple implementation that autoreplaces {page} and {page_size} in the url.

  • **requests_kwargs

    Arbitrary keyword arguments that will be forwarded to the HTTP request function.

Yields:

  • dict or httpx.Response: If 'json' is True, yields a dictionary containing the parsed JSON data. Otherwise, yields the raw HTTP response.

Note

The loop will continue indefinitely unless manually stopped. Make sure to break out of the loop once the last page has been received.

Examples:

>>> agen = api_page_iter('https://api.example.com/data?page={page}&page_size={page_size}')
>>> try:
>>>     async for page in agen:
>>>         subdomains = page["subdomains"]
>>>         self.hugesuccess(subdomains)
>>>         if not subdomains:
>>>             break
>>> finally:
>>>     await agen.aclose()
Source code in bbot/modules/base.py
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
async def api_page_iter(self, url, page_size=100, _json=True, next_key=None, iter_key=None, **requests_kwargs):
    """
    An asynchronous generator function for iterating through paginated API data.

    This function continuously makes requests to a specified API URL, incrementing the page number
    or applying a custom pagination function, and yields the received data one page at a time.
    It is well-suited for APIs that provide paginated results.

    Args:
        url (str): The initial API URL. Can contain placeholders for 'page', 'page_size', and 'offset'.
        page_size (int, optional): The number of items per page. Defaults to 100.
        json (bool, optional): If True, attempts to deserialize the response content to a JSON object. Defaults to True.
        next_key (callable, optional): A function that takes the last page's data and returns the URL for the next page. Defaults to None.
        iter_key (callable, optional): A function that builds each new request based on the page number, page size, and offset. Defaults to a simple implementation that autoreplaces {page} and {page_size} in the url.
        **requests_kwargs: Arbitrary keyword arguments that will be forwarded to the HTTP request function.

    Yields:
        dict or httpx.Response: If 'json' is True, yields a dictionary containing the parsed JSON data. Otherwise, yields the raw HTTP response.

    Note:
        The loop will continue indefinitely unless manually stopped. Make sure to break out of the loop once the last page has been received.

    Examples:
        >>> agen = api_page_iter('https://api.example.com/data?page={page}&page_size={page_size}')
        >>> try:
        >>>     async for page in agen:
        >>>         subdomains = page["subdomains"]
        >>>         self.hugesuccess(subdomains)
        >>>         if not subdomains:
        >>>             break
        >>> finally:
        >>>     await agen.aclose()
    """
    page = 1
    offset = 0
    result = None
    if iter_key is None:
        iter_key = self._prepare_api_iter_req
    while 1:
        if result and callable(next_key):
            try:
                new_url = next_key(result)
            except Exception as e:
                self.debug(f"Failed to extract next page of results from {url}: {e}")
                self.debug(traceback.format_exc())
        else:
            new_url, new_kwargs = iter_key(url, page, page_size, offset, **requests_kwargs)
        result = await self.api_request(new_url, **new_kwargs)
        if result is None:
            self.verbose(f"api_page_iter() got no response for {url}")
            break
        try:
            if _json:
                result = result.json()
            yield result
        except Exception:
            self.warning(f'Error in api_page_iter() for url: "{new_url}"')
            self.trace(traceback.format_exc())
            break
        finally:
            offset += page_size
            page += 1

api_request async

api_request(*args, **kwargs)
Makes an HTTP request while automatically
  • avoiding rate limits (sleep/retry)
  • cycling API keys
  • cancelling after too many failed attempts
Source code in bbot/modules/base.py
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
async def api_request(self, *args, **kwargs):
    """
    Makes an HTTP request while automatically:
        - avoiding rate limits (sleep/retry)
        - cycling API keys
        - cancelling after too many failed attempts
    """
    url = args[0] if args else kwargs.pop("url", "")

    # loop until we have a successful request
    for _ in range(self.api_retries):
        if "headers" not in kwargs:
            kwargs["headers"] = {}
        new_url, kwargs = self.prepare_api_request(url, kwargs)
        kwargs["url"] = new_url

        r = await self.helpers.request(**kwargs)
        success = r is not None and self._api_response_is_success(r)

        if success:
            self._api_request_failures = 0
        else:
            status_code = getattr(r, "status_code", 0)
            response_text = getattr(r, "text", "")
            self.trace(f"API response to {url} failed with status code {status_code}: {response_text}")
            self._api_request_failures += 1
            if self._api_request_failures >= self.api_failure_abort_threshold:
                self.set_error_state(
                    f"Setting error state due to {self._api_request_failures:,} failed HTTP requests"
                )
            else:
                # sleep for a bit if we're being rate limited
                retry_after = self._get_retry_after(r)
                if retry_after or status_code == 429:
                    sleep_interval = int(retry_after) if retry_after is not None else self._429_sleep_interval
                    if retry_after and retry_after > self._429_max_sleep_interval:
                        self.verbose(
                            f"Got an excessive retry-after header of {retry_after} from {new_url}, using {self._429_max_sleep_interval} instead"
                        )
                        sleep_interval = self._429_max_sleep_interval
                    self.verbose(
                        f"Sleeping for {sleep_interval:,} seconds due to rate limit (HTTP status: {status_code})"
                    )
                    await asyncio.sleep(sleep_interval)
                elif self._api_keys:
                    # if request failed, cycle API keys and try again
                    self.cycle_api_key()
                continue
        break

    return r

cleanup async

cleanup()

Asynchronously performs final cleanup operations after the scan is complete.

This method can be overridden to implement custom cleanup logic. It is called only once per scan and may not raise events.

Returns:

  • None

Note

This method is called only once per scan and may not raise events.

Source code in bbot/modules/base.py
282
283
284
285
286
287
288
289
290
291
292
293
async def cleanup(self):
    """Asynchronously performs final cleanup operations after the scan is complete.

    This method can be overridden to implement custom cleanup logic. It is called only once per scan and may not raise events.

    Returns:
        None

    Note:
        This method is called only once per scan and may not raise events.
    """
    return

critical

critical(*args, trace=True, **kwargs)

Logs a whole message in emboldened red text, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: True ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to True.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.critical("This is a critical message")
>>> self.critical("This is a critical message with a trace", trace=False)
Source code in bbot/modules/base.py
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
def critical(self, *args, trace=True, **kwargs):
    """Logs a whole message in emboldened red text, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.critical("This is a critical message")
        >>> self.critical("This is a critical message with a trace", trace=False)
    """
    self.log.critical(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

debug

debug(*args, trace=False, **kwargs)

Logs debug messages and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.debug("This is a debug message")
>>> self.debug("This is a debug message with a trace", trace=True)
Source code in bbot/modules/base.py
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
def debug(self, *args, trace=False, **kwargs):
    """Logs debug messages and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.debug("This is a debug message")
        >>> self.debug("This is a debug message with a trace", trace=True)
    """
    self.log.debug(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

emit_event async

emit_event(*args, **kwargs)

Emit an event to the event queue and distribute it to interested modules.

This is how modules "return" data.

The method first creates an event object by calling self.make_event() with the provided arguments. Then, the event is queued for outgoing distribution using self.queue_outgoing_event().

Parameters:

  • *args

    Positional arguments to be passed to self.make_event() for event creation.

  • **kwargs

    Keyword arguments to be passed for event creation or configuration of the emit action.

    - on_success_callback: Optional callback function to execute upon successful event emission.
    - abort_if: Optional condition under which the event emission should be aborted.
    - quick: Optional flag to indicate whether the event should be processed quickly.
    

Examples:

>>> await self.emit_event("www.evilcorp.com", parent=event, tags=["affiliate"])
>>> new_event = self.make_event("1.2.3.4", parent=event)
>>> await self.emit_event(new_event)

Returns:

  • None

Raises:

  • ValidationError

    If the event cannot be validated (handled in self.make_event()).

Source code in bbot/modules/base.py
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
async def emit_event(self, *args, **kwargs):
    """Emit an event to the event queue and distribute it to interested modules.

    This is how modules "return" data.

    The method first creates an event object by calling `self.make_event()` with the provided arguments.
    Then, the event is queued for outgoing distribution using `self.queue_outgoing_event()`.

    Args:
        *args: Positional arguments to be passed to `self.make_event()` for event creation.
        **kwargs: Keyword arguments to be passed for event creation or configuration of the emit action.
            ```markdown
            - on_success_callback: Optional callback function to execute upon successful event emission.
            - abort_if: Optional condition under which the event emission should be aborted.
            - quick: Optional flag to indicate whether the event should be processed quickly.
            ```

    Examples:
        >>> await self.emit_event("www.evilcorp.com", parent=event, tags=["affiliate"])

        >>> new_event = self.make_event("1.2.3.4", parent=event)
        >>> await self.emit_event(new_event)

    Returns:
        None

    Raises:
        ValidationError: If the event cannot be validated (handled in `self.make_event()`).
    """
    event_kwargs = dict(kwargs)
    emit_kwargs = {}
    for o in ("on_success_callback", "abort_if", "quick"):
        v = event_kwargs.pop(o, None)
        if v is not None:
            emit_kwargs[o] = v
    event = self.make_event(*args, **event_kwargs)
    if event:
        await self.queue_outgoing_event(event, **emit_kwargs)
    return event

error

error(*args, trace=True, **kwargs)

Logs an error message, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: True ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to True.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.error("This is an error message")
>>> self.error("This is an error message with a trace", trace=False)
Source code in bbot/modules/base.py
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
def error(self, *args, trace=True, **kwargs):
    """Logs an error message, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.error("This is an error message")
        >>> self.error("This is an error message with a trace", trace=False)
    """
    self.log.error(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

filter_event async

filter_event(event)

Asynchronously filters incoming events based on custom criteria.

Override this method for more granular control over which events are accepted by your module. This method is called automatically before handle_event() for each incoming event that matches any in watched_events.

Parameters:

  • event (Event) –

    The incoming Event object to be filtered.

Returns:

  • tuple

    A 2-tuple where the first value is a bool indicating whether the event should be accepted, and the second value is a string explaining the reason for its acceptance or rejection. By default, returns (True, None) to indicate acceptance without reason.

Note

This method should be overridden if the module requires custom logic for event filtering.

Source code in bbot/modules/base.py
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
async def filter_event(self, event):
    """Asynchronously filters incoming events based on custom criteria.

    Override this method for more granular control over which events are accepted by your module. This method is called automatically before `handle_event()` for each incoming event that matches any in `watched_events`.

    Args:
        event (Event): The incoming Event object to be filtered.

    Returns:
        tuple: A 2-tuple where the first value is a bool indicating whether the event should be accepted, and the second value is a string explaining the reason for its acceptance or rejection. By default, returns `(True, None)` to indicate acceptance without reason.

    Note:
        This method should be overridden if the module requires custom logic for event filtering.
    """
    return True

finish async

finish()

Asynchronously performs final tasks as the scan nears completion.

This method can be overridden to execute any necessary finalization logic. For example, if the module relies on a word cloud, you might wait for the scan to finish to ensure the word cloud is most complete before running an operation.

Returns:

  • None

Source code in bbot/modules/base.py
256
257
258
259
260
261
262
263
264
265
266
267
async def finish(self):
    """Asynchronously performs final tasks as the scan nears completion.

    This method can be overridden to execute any necessary finalization logic. For example, if the module relies on a word cloud, you might wait for the scan to finish to ensure the word cloud is most complete before running an operation.

    Returns:
        None

    Warnings:
        This method may be called multiple times since it can raise events, which may re-trigger the "finish" phase of the scan. Optional to override.
    """
    return

get_per_domain_hash

get_per_domain_hash(event)

Computes a per-domain hash value for a given event. This method may be optionally overridden in subclasses.

Events with the same root domain will receive the same hash value.

Parameters:

  • event (Event) –

    The event object containing host, port, or parsed URL information.

Returns:

  • int

    The hash value computed for the domain.

Examples:

>>> event = self.make_event("https://www.example.com:8443")
>>> self.get_per_domain_hash(event)
Source code in bbot/modules/base.py
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
def get_per_domain_hash(self, event):
    """
    Computes a per-domain hash value for a given event. This method may be optionally overridden in subclasses.

    Events with the same root domain will receive the same hash value.

    Args:
        event (Event): The event object containing host, port, or parsed URL information.

    Returns:
        int: The hash value computed for the domain.

    Examples:
        >>> event = self.make_event("https://www.example.com:8443")
        >>> self.get_per_domain_hash(event)
    """
    _, domain = self.helpers.split_domain(event.host)
    return hash(domain)

get_per_host_hash

get_per_host_hash(event)

Computes a per-host hash value for a given event. This method may be optionally overridden in subclasses.

The function uses the event's host to create a string to be hashed.

Parameters:

  • event (Event) –

    The event object containing host information.

Returns:

  • int

    The hash value computed for the host.

Examples:

>>> event = self.make_event("https://example.com:8443")
>>> self.get_per_host_hash(event)
Source code in bbot/modules/base.py
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
def get_per_host_hash(self, event):
    """
    Computes a per-host hash value for a given event. This method may be optionally overridden in subclasses.

    The function uses the event's `host` to create a string to be hashed.

    Args:
        event (Event): The event object containing host information.

    Returns:
        int: The hash value computed for the host.

    Examples:
        >>> event = self.make_event("https://example.com:8443")
        >>> self.get_per_host_hash(event)
    """
    return hash(event.host)

get_per_hostport_hash

get_per_hostport_hash(event)

Computes a per-host:port hash value for a given event. This method may be optionally overridden in subclasses.

The function uses the event's host, port, and scheme (for URLs) to create a string to be hashed. The hash value is used for distinguishing events related to the same host.

Parameters:

  • event (Event) –

    The event object containing host, port, or parsed URL information.

Returns:

  • int

    The hash value computed for the host.

Examples:

>>> event = self.make_event("https://example.com:8443")
>>> self.get_per_hostport_hash(event)
Source code in bbot/modules/base.py
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
def get_per_hostport_hash(self, event):
    """
    Computes a per-host:port hash value for a given event. This method may be optionally overridden in subclasses.

    The function uses the event's `host`, `port`, and `scheme` (for URLs) to create a string to be hashed.
    The hash value is used for distinguishing events related to the same host.

    Args:
        event (Event): The event object containing host, port, or parsed URL information.

    Returns:
        int: The hash value computed for the host.

    Examples:
        >>> event = self.make_event("https://example.com:8443")
        >>> self.get_per_hostport_hash(event)
    """
    parsed = getattr(event, "parsed_url", None)
    if parsed is None:
        to_hash = self.helpers.make_netloc(event.host, event.port)
    else:
        to_hash = f"{parsed.scheme}://{parsed.netloc}/"
    return hash(to_hash)

get_watched_events

get_watched_events()

Retrieve the set of events that the module is interested in observing.

Override this method if the set of events the module should watch needs to be determined dynamically, e.g., based on configuration options or other runtime conditions.

Returns:

  • set

    The set of event types that this module will handle.

Source code in bbot/modules/base.py
419
420
421
422
423
424
425
426
427
428
429
def get_watched_events(self):
    """Retrieve the set of events that the module is interested in observing.

    Override this method if the set of events the module should watch needs to be determined dynamically, e.g., based on configuration options or other runtime conditions.

    Returns:
        set: The set of event types that this module will handle.
    """
    if self._watched_events is None:
        self._watched_events = set(self.watched_events)
    return self._watched_events

handle_batch async

handle_batch(*events)

Handles incoming events in batches for optimized processing.

This method is automatically called when multiple events that match any in watched_events are encountered and the batch_size attribute is set to a value greater than 1. Override this method to implement custom batch event-handling logic for your module.

Parameters:

  • *events (Event, default: () ) –

    A variable number of Event objects to be processed in a batch.

Note

This method should be overridden if the batch_size attribute of the module is set to a value greater than 1.

Returns:

  • None

Source code in bbot/modules/base.py
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
async def handle_batch(self, *events):
    """Handles incoming events in batches for optimized processing.

    This method is automatically called when multiple events that match any in `watched_events` are encountered and the `batch_size` attribute is set to a value greater than 1. Override this method to implement custom batch event-handling logic for your module.

    Args:
        *events (Event): A variable number of Event objects to be processed in a batch.

    Note:
        This method should be overridden if the `batch_size` attribute of the module is set to a value greater than 1.

    Returns:
        None
    """
    pass

handle_event async

handle_event(event, **kwargs)

Asynchronously handles incoming events that the module is configured to watch.

This method is automatically invoked when an event that matches any in watched_events is encountered during a scan. Override this method to implement custom event-handling logic for your module.

Parameters:

  • event (Event) –

    The event object containing details about the incoming event.

Note

This method should be overridden if the batch_size attribute of the module is set to 1.

Returns:

  • None

Source code in bbot/modules/base.py
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
async def handle_event(self, event, **kwargs):
    """Asynchronously handles incoming events that the module is configured to watch.

    This method is automatically invoked when an event that matches any in `watched_events` is encountered during a scan. Override this method to implement custom event-handling logic for your module.

    Args:
        event (Event): The event object containing details about the incoming event.

    Note:
        This method should be overridden if the `batch_size` attribute of the module is set to 1.

    Returns:
        None
    """
    pass

help_text classmethod

help_text()

Returns a string containing help text for the module. This includes the module's description, metadata, events, flags, and available options.

Source code in bbot/modules/base.py
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
@classmethod
def help_text(self):
    """
    Returns a string containing help text for the module.
    This includes the module's description, metadata, events, flags, and available options.
    """
    # Retrieve the module's metadata, options, events, and flags
    meta = getattr(self, "meta", {})
    options = getattr(self, "options", {})
    options_desc = getattr(self, "options_desc", {})
    watched_events = getattr(self, "watched_events", [])
    produced_events = getattr(self, "produced_events", [])
    flags = getattr(self, "flags", [])

    help_text = "\n" + "=" * 40 + "\n"
    help_text += f"Module Help: {self.__name__}\n"
    help_text += "=" * 40 + "\n\n"

    for key, value in meta.items():
        help_text += f"{key.replace('_', ' ').title()}: {value}\n"

    help_text += "\nWatched Events:\n"
    help_text += "  " + ", ".join(watched_events) + "\n" if watched_events else "  None\n"

    help_text += "\nProduced Events:\n"
    help_text += "  " + ", ".join(produced_events) + "\n" if produced_events else "  None\n"

    help_text += "\nFlags:\n"
    help_text += "  " + ", ".join(flags) + "\n" if flags else "  None\n"

    help_text += "\nOptions:\n"
    if options:
        for option, default_value in options.items():
            option_description = options_desc.get(option, "No description available.")
            help_text += f"  - {option}:\n"
            help_text += f"      Description: {option_description}\n"
            help_text += f"      Default: {default_value}\n"
    else:
        help_text += "  No options available."

    return help_text

hugeinfo

hugeinfo(*args, trace=False, **kwargs)

Logs a whole message in emboldened blue text, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.hugeinfo("This is a huge informational message")
>>> self.hugeinfo("This is a huge informational message with a trace", trace=True)
Source code in bbot/modules/base.py
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
def hugeinfo(self, *args, trace=False, **kwargs):
    """Logs a whole message in emboldened blue text, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.hugeinfo("This is a huge informational message")
        >>> self.hugeinfo("This is a huge informational message with a trace", trace=True)
    """
    self.log.hugeinfo(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

hugesuccess

hugesuccess(*args, trace=False, **kwargs)

Logs a whole message in emboldened green text, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.hugesuccess("This is a huge success message")
>>> self.hugesuccess("This is a huge success message with a trace", trace=True)
Source code in bbot/modules/base.py
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
def hugesuccess(self, *args, trace=False, **kwargs):
    """Logs a whole message in emboldened green text, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.hugesuccess("This is a huge success message")
        >>> self.hugesuccess("This is a huge success message with a trace", trace=True)
    """
    self.log.hugesuccess(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

hugeverbose

hugeverbose(*args, trace=False, **kwargs)

Logs a whole message in emboldened white text, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.hugeverbose("This is a huge verbose message")
>>> self.hugeverbose("This is a huge verbose message with a trace", trace=True)
Source code in bbot/modules/base.py
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
def hugeverbose(self, *args, trace=False, **kwargs):
    """Logs a whole message in emboldened white text, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.hugeverbose("This is a huge verbose message")
        >>> self.hugeverbose("This is a huge verbose message with a trace", trace=True)
    """
    self.log.hugeverbose(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

hugewarning

hugewarning(*args, trace=True, **kwargs)

Logs a whole message in emboldened orange text, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: True ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to True.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.hugewarning("This is a huge warning message")
>>> self.hugewarning("This is a huge warning message with a trace", trace=False)
Source code in bbot/modules/base.py
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
def hugewarning(self, *args, trace=True, **kwargs):
    """Logs a whole message in emboldened orange text, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.hugewarning("This is a huge warning message")
        >>> self.hugewarning("This is a huge warning message with a trace", trace=False)
    """
    self.log.hugewarning(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

info

info(*args, trace=False, **kwargs)

Logs informational messages and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.info("This is an informational message")
>>> self.info("This is an informational message with a trace", trace=True)
Source code in bbot/modules/base.py
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
def info(self, *args, trace=False, **kwargs):
    """Logs informational messages and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.info("This is an informational message")
        >>> self.info("This is an informational message with a trace", trace=True)
    """
    self.log.info(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

log_table

log_table(*args, **kwargs)

Logs a table to the console and optionally writes it to a file.

This function generates a table using self.helpers.make_table, then logs each line of the table as an info-level log. If a table_name is provided, it also writes the table to a file.

Parameters:

  • *args

    Variable length argument list to be passed to self.helpers.make_table.

  • **kwargs

    Arbitrary keyword arguments. If 'table_name' is specified, the table will be written to a file.

Returns:

  • str

    The generated table as a string.

Examples:

>>> self.log_table(['Header1', 'Header2'], [['row1col1', 'row1col2'], ['row2col1', 'row2col2']], table_name="my_table")
Source code in bbot/modules/base.py
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
def log_table(self, *args, **kwargs):
    """Logs a table to the console and optionally writes it to a file.

    This function generates a table using `self.helpers.make_table`, then logs each line
    of the table as an info-level log. If a table_name is provided, it also writes the table to a file.

    Args:
        *args: Variable length argument list to be passed to `self.helpers.make_table`.
        **kwargs: Arbitrary keyword arguments. If 'table_name' is specified, the table will be written to a file.

    Returns:
        str: The generated table as a string.

    Examples:
        >>> self.log_table(['Header1', 'Header2'], [['row1col1', 'row1col2'], ['row2col1', 'row2col2']], table_name="my_table")
    """
    table_name = kwargs.pop("table_name", None)
    max_log_entries = kwargs.pop("max_log_entries", None)
    table = self.helpers.make_table(*args, **kwargs)
    lines_logged = 0
    for line in table.splitlines():
        if max_log_entries is not None and lines_logged > max_log_entries:
            break
        self.info(line)
        lines_logged += 1
    if table_name is not None:
        date = self.helpers.make_date()
        filename = self.scan.home / f"{self.helpers.tagify(table_name)}-table-{date}.txt"
        with open(filename, "w") as f:
            f.write(table)
        self.verbose(f"Wrote {table_name} to {filename}")
    return table

make_event

make_event(*args, **kwargs)

Create an event for the scan.

Raises a validation error if the event could not be created, unless raise_error is set to False.

Parameters:

  • *args

    Positional arguments to be passed to the scan's make_event method.

  • **kwargs

    Keyword arguments to be passed to the scan's make_event method.

  • raise_error (bool) –

    Whether to raise a validation error if the event could not be created. Defaults to False.

Examples:

>>> new_event = self.make_event("1.2.3.4", parent=event)
>>> await self.emit_event(new_event)

Returns:

  • Event or None: The created event, or None if a validation error occurred and raise_error was False.

Raises:

  • ValidationError

    If the event could not be validated and raise_error is True.

Source code in bbot/modules/base.py
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
def make_event(self, *args, **kwargs):
    """Create an event for the scan.

    Raises a validation error if the event could not be created, unless raise_error is set to False.

    Args:
        *args: Positional arguments to be passed to the scan's make_event method.
        **kwargs: Keyword arguments to be passed to the scan's make_event method.
        raise_error (bool, optional): Whether to raise a validation error if the event could not be created. Defaults to False.

    Examples:
        >>> new_event = self.make_event("1.2.3.4", parent=event)
        >>> await self.emit_event(new_event)

    Returns:
        Event or None: The created event, or None if a validation error occurred and raise_error was False.

    Raises:
        ValidationError: If the event could not be validated and raise_error is True.
    """
    raise_error = kwargs.pop("raise_error", False)
    module = kwargs.pop("module", None)
    if module is None:
        if (not args) or getattr(args[0], "module", None) is None:
            kwargs["module"] = self
    try:
        event = self.scan.make_event(*args, **kwargs)
    except ValidationError as e:
        if raise_error:
            raise
        self.warning(f"{e}")
        return
    return event

ping async

ping(url=None)

Asynchronously checks the health of the configured API.

This method is used in conjunction with require_api_key() to verify that the API is not just configured, but also responsive. It makes a test request to a known endpoint to validate the API's health.

The method uses the ping_url attribute if defined, or falls back to a provided URL. If neither is available, no request is made.

Parameters:

  • url (str, default: None ) –

    A specific URL to use for the ping request. If not provided, the method will use the ping_url attribute.

Returns:

  • None

Raises:

  • ValueError

    If the API response is not successful (status code != 200).

Example Usage

To use this method, simply define the ping_url attribute in your module:

class MyModule(BaseModule): ping_url = "https://api.example.com/ping"

Alternatively, you can override this method for more complex health checks:

async def ping(self): r = await self.api_request(f"{self.base_url}/complex-health-check") if r.status_code != 200 or r.json().get('status') != 'healthy': raise ValueError(f"API unhealthy: {r.text}")

Source code in bbot/modules/base.py
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
async def ping(self, url=None):
    """Asynchronously checks the health of the configured API.

    This method is used in conjunction with require_api_key() to verify that the API is not just configured, but also responsive. It makes a test request to a known endpoint to validate the API's health.

    The method uses the `ping_url` attribute if defined, or falls back to a provided URL. If neither is available, no request is made.

    Args:
        url (str, optional): A specific URL to use for the ping request. If not provided, the method will use the `ping_url` attribute.

    Returns:
        None

    Raises:
        ValueError: If the API response is not successful (status code != 200).

    Example Usage:
        To use this method, simply define the `ping_url` attribute in your module:

        class MyModule(BaseModule):
            ping_url = "https://api.example.com/ping"

        Alternatively, you can override this method for more complex health checks:

        async def ping(self):
            r = await self.api_request(f"{self.base_url}/complex-health-check")
            if r.status_code != 200 or r.json().get('status') != 'healthy':
                raise ValueError(f"API unhealthy: {r.text}")
    """
    if url is None:
        url = getattr(self, "ping_url", "")
    if url:
        r = await self.api_request(url)
        if getattr(r, "status_code", 0) != 200:
            response_text = getattr(r, "text", "no response from server")
            raise ValueError(response_text)

prepare_api_request

prepare_api_request(url, kwargs)

Prepare an API request by adding the necessary authentication - header, bearer token, etc.

Source code in bbot/modules/base.py
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
def prepare_api_request(self, url, kwargs):
    """
    Prepare an API request by adding the necessary authentication - header, bearer token, etc.
    """
    if self.api_key:
        url = url.format(api_key=self.api_key)
        if "headers" not in kwargs:
            kwargs["headers"] = {}
        kwargs["headers"]["Authorization"] = f"Bearer {self.api_key}"
    return url, kwargs

queue_event async

queue_event(event)

Asynchronously queues an incoming event to the module's event queue for further processing.

The function performs an initial check to see if the event is acceptable for queuing. If the event passes the check, it is put into the incoming_event_queue.

Parameters:

  • event

    The event object to be queued.

Returns:

  • None

    The function doesn't return anything but modifies the state of the incoming_event_queue.

Examples:

>>> await self.queue_event(some_event)

Raises:

  • AttributeError

    If the module is not in an acceptable state to queue incoming events.

Source code in bbot/modules/base.py
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
async def queue_event(self, event):
    """
    Asynchronously queues an incoming event to the module's event queue for further processing.

    The function performs an initial check to see if the event is acceptable for queuing.
    If the event passes the check, it is put into the `incoming_event_queue`.

    Args:
        event: The event object to be queued.

    Returns:
        None: The function doesn't return anything but modifies the state of the `incoming_event_queue`.

    Examples:
        >>> await self.queue_event(some_event)

    Raises:
        AttributeError: If the module is not in an acceptable state to queue incoming events.
    """
    async with self._task_counter.count("queue_event()", _log=False):
        if self.incoming_event_queue is False:
            self.debug("Not in an acceptable state to queue incoming event")
            return
        acceptable, reason = self._event_precheck(event)
        if not acceptable:
            if reason and reason != "its type is not in watched_events":
                self.debug(f"Not queueing {event} because {reason}")
            return
        else:
            self.debug(f"Queueing {event} because {reason}")
        try:
            self.incoming_event_queue.put_nowait(event)
            async with self.event_received:
                self.event_received.notify()
            if event.type != "FINISHED":
                self.scan._new_activity = True
        except AttributeError:
            self.debug("Not in an acceptable state to queue incoming event")

queue_outgoing_event async

queue_outgoing_event(event, **kwargs)

Queues an outgoing event to the module's outgoing event queue for further processing.

The function attempts to put the event into the outgoing_event_queue immediately. If it's not possible due to the current state of the module, an AttributeError is raised, and a debug log is generated.

Parameters:

  • event

    The event object to be queued.

  • **kwargs

    Additional keyword arguments to be associated with the event.

Returns:

  • None

    The function doesn't return anything but modifies the state of the outgoing_event_queue.

Examples:

>>> self.queue_outgoing_event(some_outgoing_event, abort_if=lambda e: "unresolved" in e.tags)

Raises:

  • AttributeError

    If the module is not in an acceptable state to queue outgoing events.

Source code in bbot/modules/base.py
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
async def queue_outgoing_event(self, event, **kwargs):
    """
    Queues an outgoing event to the module's outgoing event queue for further processing.

    The function attempts to put the event into the `outgoing_event_queue` immediately.
    If it's not possible due to the current state of the module, an AttributeError is raised, and a debug log is generated.

    Args:
        event: The event object to be queued.
        **kwargs: Additional keyword arguments to be associated with the event.

    Returns:
        None: The function doesn't return anything but modifies the state of the `outgoing_event_queue`.

    Examples:
        >>> self.queue_outgoing_event(some_outgoing_event, abort_if=lambda e: "unresolved" in e.tags)

    Raises:
        AttributeError: If the module is not in an acceptable state to queue outgoing events.
    """
    try:
        await self.outgoing_event_queue.put((event, kwargs))
    except AttributeError:
        self.debug("Not in an acceptable state to queue outgoing event")

report async

report()

Asynchronously executes a final task after the scan is complete but before cleanup.

This method can be overridden to aggregate data and raise summary events at the end of the scan.

Returns:

  • None

Note

This method is called only once per scan.

Source code in bbot/modules/base.py
269
270
271
272
273
274
275
276
277
278
279
280
async def report(self):
    """Asynchronously executes a final task after the scan is complete but before cleanup.

    This method can be overridden to aggregate data and raise summary events at the end of the scan.

    Returns:
        None

    Note:
        This method is called only once per scan.
    """
    return

require_api_key async

require_api_key()

Asynchronously checks if an API key is required and valid.

Returns:

  • bool or tuple: Returns True if API key is valid and ready. Returns a tuple (None, "error message") otherwise.

Notes
  • Fetches the API key from the configuration.
  • Calls the 'ping()' method to test API accessibility.
  • Sets the API key readiness status accordingly.
Source code in bbot/modules/base.py
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
async def require_api_key(self):
    """
    Asynchronously checks if an API key is required and valid.

    Args:
        None

    Returns:
        bool or tuple: Returns True if API key is valid and ready.
                      Returns a tuple (None, "error message") otherwise.

    Notes:
        - Fetches the API key from the configuration.
        - Calls the 'ping()' method to test API accessibility.
        - Sets the API key readiness status accordingly.
    """
    self.api_key = self.config.get("api_key", "")
    if self.auth_secret:
        try:
            await self.ping()
            self.hugesuccess("API is ready")
            return True, ""
        except Exception as e:
            self.trace(traceback.format_exc())
            return None, f"Error with API ({str(e).strip()})"
    else:
        return None, "No API key set"

set_error_state

set_error_state(message=None, clear_outgoing_queue=False, critical=False)

Puts the module into an errored state where it cannot accept new events. Optionally logs a warning message.

The function sets the module's errored attribute to True and logs a warning with the optional message. It also clears the incoming event queue to prevent further processing and updates its status to False.

Parameters:

  • message (str, default: None ) –

    Additional message to be logged along with the warning.

Returns:

  • None

    The function doesn't return anything but updates the errored state and clears the incoming event queue.

Examples:

>>> self.set_error_state()
>>> self.set_error_state("Failed to connect to the server")
Notes
  • The function sets self._incoming_event_queue to False to prevent its further use.
  • If the module was already in an errored state, the function will not reset the error state or the queue.
Source code in bbot/modules/base.py
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
def set_error_state(self, message=None, clear_outgoing_queue=False, critical=False):
    """
    Puts the module into an errored state where it cannot accept new events. Optionally logs a warning message.

    The function sets the module's `errored` attribute to True and logs a warning with the optional message.
    It also clears the incoming event queue to prevent further processing and updates its status to False.

    Args:
        message (str, optional): Additional message to be logged along with the warning.

    Returns:
        None: The function doesn't return anything but updates the `errored` state and clears the incoming event queue.

    Examples:
        >>> self.set_error_state()
        >>> self.set_error_state("Failed to connect to the server")

    Notes:
        - The function sets `self._incoming_event_queue` to False to prevent its further use.
        - If the module was already in an errored state, the function will not reset the error state or the queue.
    """
    if not self.errored:
        log_msg = "Setting error state"
        if message is not None:
            log_msg += f": {message}"
        if critical:
            log_fn = self.error
        else:
            log_fn = self.warning
        log_fn(log_msg)
        self.errored = True
        # clear incoming queue
        if self.incoming_event_queue is not False:
            self.debug("Emptying event_queue")
            with suppress(asyncio.queues.QueueEmpty):
                while 1:
                    self.incoming_event_queue.get_nowait()
            # set queue to None to prevent its use
            # if there are leftover objects in the queue, the scan will hang.
            self._incoming_event_queue = False

        if clear_outgoing_queue:
            with suppress(asyncio.queues.QueueEmpty):
                while 1:
                    self.outgoing_event_queue.get_nowait()

setup async

setup()

Performs one-time setup tasks for the module.

This method is responsible for preparing the module for its operation, which may include tasks such as downloading necessary resources, validating configuration parameters, or other preliminary checks.

Returns:

  • tuple
    • bool or None: A status indicating the outcome of the setup process. Returns True if the setup was successful, None for a soft-fail where the module setup did not succeed but the scan will continue with the module disabled, and False for a hard-fail where the setup failure causes the scan to abort.
    • str, optional: A reason for the setup failure, provided only when the setup does not succeed (i.e., returns None or False).

Examples:

>>> async def setup(self):
>>>     if not self.config.get("api_key"):
>>>         # Soft-fail: Configuration missing an API key
>>>         return None, "No API key specified"
>>> async def setup(self):
>>>     try:
>>>         wordlist = await self.helpers.wordlist("https://raw.githubusercontent.com/user/wordlist.txt")
>>>     except WordlistError as e:
>>>         # Hard-fail: Error retrieving wordlist
>>>         return False, f"Error retrieving wordlist: {e}"
>>> async def setup(self):
>>>     self.timeout = self.config.get("timeout", 5)
>>>     # Success: Setup completed without issues
>>>     return True
Source code in bbot/modules/base.py
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
async def setup(self):
    """
    Performs one-time setup tasks for the module.

    This method is responsible for preparing the module for its operation, which may include tasks
    such as downloading necessary resources, validating configuration parameters, or other preliminary
    checks.

    Returns:
        tuple:
            - bool or None: A status indicating the outcome of the setup process. Returns `True` if
            the setup was successful, `None` for a soft-fail where the module setup did not succeed
            but the scan will continue with the module disabled, and `False` for a hard-fail where
            the setup failure causes the scan to abort.
            - str, optional: A reason for the setup failure, provided only when the setup does not
            succeed (i.e., returns `None` or `False`).

    Examples:
        >>> async def setup(self):
        >>>     if not self.config.get("api_key"):
        >>>         # Soft-fail: Configuration missing an API key
        >>>         return None, "No API key specified"

        >>> async def setup(self):
        >>>     try:
        >>>         wordlist = await self.helpers.wordlist("https://raw.githubusercontent.com/user/wordlist.txt")
        >>>     except WordlistError as e:
        >>>         # Hard-fail: Error retrieving wordlist
        >>>         return False, f"Error retrieving wordlist: {e}"

        >>> async def setup(self):
        >>>     self.timeout = self.config.get("timeout", 5)
        >>>     # Success: Setup completed without issues
        >>>     return True
    """

    return True

success

success(*args, trace=False, **kwargs)

Logs a success message, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.success("Operation completed successfully")
>>> self.success("Operation completed with a trace", trace=True)
Source code in bbot/modules/base.py
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
def success(self, *args, trace=False, **kwargs):
    """Logs a success message, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.success("Operation completed successfully")
        >>> self.success("Operation completed with a trace", trace=True)
    """
    self.log.success(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

trace

trace(msg=None)

Logs the stack trace of the most recently caught exception.

This method captures the type, value, and traceback of the most recent exception and logs it using the trace level. It is typically used for debugging purposes.

Anything logged using this method will always be written to the scan's debug.log, even if debugging is not enabled.

Examples:

>>> try:
>>>     1 / 0
>>> except ZeroDivisionError:
>>>     self.trace()
Source code in bbot/modules/base.py
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
def trace(self, msg=None):
    """Logs the stack trace of the most recently caught exception.

    This method captures the type, value, and traceback of the most recent exception and logs it using the trace level. It is typically used for debugging purposes.

    Anything logged using this method will always be written to the scan's `debug.log`, even if debugging is not enabled.

    Examples:
        >>> try:
        >>>     1 / 0
        >>> except ZeroDivisionError:
        >>>     self.trace()
    """
    if msg is None:
        e_type, e_val, e_traceback = exc_info()
        if e_type is not None:
            self.log.trace(traceback.format_exc())
    else:
        self.log.trace(msg)

verbose

verbose(*args, trace=False, **kwargs)

Logs messages and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: False ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to False.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.verbose("This is a verbose message")
>>> self.verbose("This is a verbose message with a trace", trace=True)
Source code in bbot/modules/base.py
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
def verbose(self, *args, trace=False, **kwargs):
    """Logs messages and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to False.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.verbose("This is a verbose message")
        >>> self.verbose("This is a verbose message with a trace", trace=True)
    """
    self.log.verbose(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()

warning

warning(*args, trace=True, **kwargs)

Logs a warning message, and optionally the stack trace of the most recent exception.

Parameters:

  • *args

    Variable-length argument list to pass to the logger.

  • trace (bool, default: True ) –

    Whether to log the stack trace of the most recently caught exception. Defaults to True.

  • **kwargs

    Arbitrary keyword arguments to pass to the logger.

Examples:

>>> self.warning("This is a warning message")
>>> self.warning("This is a warning message with a trace", trace=False)
Source code in bbot/modules/base.py
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
def warning(self, *args, trace=True, **kwargs):
    """Logs a warning message, and optionally the stack trace of the most recent exception.

    Args:
        *args: Variable-length argument list to pass to the logger.
        trace (bool, optional): Whether to log the stack trace of the most recently caught exception. Defaults to True.
        **kwargs: Arbitrary keyword arguments to pass to the logger.

    Examples:
        >>> self.warning("This is a warning message")
        >>> self.warning("This is a warning message with a trace", trace=False)
    """
    self.log.warning(*args, extra={"scan_id": self.scan.id}, **kwargs)
    if trace:
        self.trace()