1 2 3 4 5 6 7 8 9 10 11 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
|
openapi: 3.0.1
info:
title: OX Abuse Shield (Wforce)
description: An API to the wforce daemon to prevent brute-force and abuse of mail
systems
contact:
name: Open-Xchange
license:
name: GPL3
url: https://github.com/PowerDNS/weakforced/blob/master/LICENSE
version: "3.0.0"
servers:
- url: http://doesnotexist.open-xchange.com/
- url: https://doesnotexist.open-xchange.com/
paths:
/command/report:
post:
description: Creates a new report about a login (successful or unsuccessful)
operationId: report
requestBody:
description: Login Tuple for report command
content:
application/json:
schema:
$ref: '#/components/schemas/LoginTupleReport'
required: true
responses:
"200":
description: report response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: LoginTupleReport
/command/allow:
post:
description: Query whether a login should be allowed
operationId: allow
requestBody:
description: Login Tuple for allow command
content:
application/json:
schema:
$ref: '#/components/schemas/LoginTupleAllow'
required: true
responses:
"200":
description: allow response
content:
application/json:
schema:
required:
- msg
- r_attrs
- status
type: object
properties:
status:
type: integer
msg:
type: string
r_attrs:
type: object
properties:
attr_name:
type: string
example:
two_factor_required: true
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: LoginTupleAllow
/command/reset:
post:
description: Reset the stats and any blacklist entry for an IP and/or login
operationId: reset
requestBody:
description: Provide IP and/or login
content:
application/json:
schema:
$ref: '#/components/schemas/ResetStatsParams'
required: true
responses:
"200":
description: reset response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: Reset
/command/delBLEntry:
post:
description: Delete a blacklist entry for an IP and/or login and/or JA3 hash. Note that netmask
and other parameters are mutually exclusive.
operationId: delBLEntry
requestBody:
description: Provide IP and/or login
content:
application/json:
schema:
$ref: '#/components/schemas/DelBLWLEntryParams'
required: true
responses:
"200":
description: delBLEntry response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: delBLEntry
/command/addBLEntry:
post:
description: Add a blacklist entry for an IP and/or login and/or JA3 hash. Note that netmask
and other parameters are mutually exclusive.
operationId: addBLEntry
requestBody:
description: Provide IP and/or login and/or JA3 hash
content:
application/json:
schema:
$ref: '#/components/schemas/AddBLWLEntryParams'
required: true
responses:
"200":
description: addBLEntry response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: addBLEntry
/command/delWLEntry:
post:
description: Delete a whitelist entry for an IP and/or login and/or JA3 hash. Note that netmask
and other parameters are mutually exclusive.
operationId: delWLEntry
requestBody:
description: Provide IP and/or login and/or JA3 hash
content:
application/json:
schema:
$ref: '#/components/schemas/DelBLWLEntryParams'
required: true
responses:
"200":
description: delWLEntry response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: delWLEntry
/command/addWLEntry:
post:
description: Add a whitelist entry for an IP and/or login and/or JA3 hash. Note that netmask
and other parameters are mutually exclusive.
operationId: addWLEntry
requestBody:
description: Provide IP and/or login and/or JA3 hash
content:
application/json:
schema:
$ref: '#/components/schemas/AddBLWLEntryParams'
required: true
responses:
"200":
description: addWLEntry response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: addWLEntry
/command/ping:
get:
description: Ping the server to ensure it is operational
operationId: ping
responses:
"200":
description: ping response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/command/syncDone:
get:
description: Tell the server that DB syncing is done
operationId: syncDone
responses:
"200":
description: syncDone response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/command/stats:
get:
description: Get server stats (deprecated - will be removed in future version)
operationId: stats
responses:
"200":
description: stats response
content:
application/json:
schema:
$ref: '#/components/schemas/statsResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/command/getBL:
get:
description: Get the list of all blacklisted IPs and/or Logins and/or JA3 hashes
operationId: getBL
responses:
"200":
description: getBL response
content:
application/json:
schema:
$ref: '#/components/schemas/BLWLResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/command/getWL:
get:
description: Get the list of all whitelisted IPs and/or Logins and/or JA3 hashes
operationId: getWL
responses:
"200":
description: getWL response
content:
application/json:
schema:
$ref: '#/components/schemas/BLWLResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/command/getDBStats:
post:
description: Get the db stats for an IP and/or login
operationId: getDBStats
requestBody:
description: Provide IP and/or login
content:
application/json:
schema:
$ref: '#/components/schemas/ResetStatsParams'
required: true
responses:
"200":
description: getDBStats response
content:
application/json:
schema:
$ref: '#/components/schemas/DBStatsResponse'
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: GetDBStats
/command/syncDBs:
post:
description: This is a request to synchronize StatsDBs.
operationId: syncDBs
requestBody:
description: The ip and address to sync to
content:
application/json:
schema:
$ref: '#/components/schemas/syncDBsParams'
required: true
responses:
"200":
description: syncDBs response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: syncDBs
/command/dumpEntries:
post:
description: This is a request to dump StatsDB entries (consisting of the values
of each of the time windows for each field) to a specified IP address and
port over TCP.
operationId: dumpEntries
requestBody:
description: The ip and port to dump to
content:
application/json:
schema:
$ref: '#/components/schemas/dumpEntriesParams'
required: true
responses:
"200":
description: dumpEntries response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: dumpEntries
/command/customEndpoint:
post:
description: Extensible mechanism allows custom REST endpoints to be defined
- this is an example
operationId: customEndpoint
requestBody:
description: Arguments to custom REST endpoint
content:
application/json:
schema:
$ref: '#/components/schemas/CustomFuncArgs'
required: true
responses:
"200":
description: custom endpoint response
content:
application/json:
schema:
required:
- r_attrs
- success
type: object
properties:
success:
type: boolean
r_attrs:
type: object
properties:
attr_name:
type: string
example:
two_factor_required: true
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/CustomError'
x-codegen-request-body-name: CustomFuncArgs
/command/addSibling:
post:
description: This is a request to add a new Sibling for replication purposes.
operationId: addSibling
requestBody:
description: Details about the Sibling to add
content:
application/json:
schema:
$ref: '#/components/schemas/addSiblingParams'
required: true
responses:
"200":
description: addSibling response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: addSibling
/command/removeSibling:
post:
description: This is a request to add remove a Sibling for replication purposes.
operationId: removeSibling
requestBody:
description: Details about the Sibling to remove
content:
application/json:
schema:
$ref: '#/components/schemas/removeSiblingParams'
required: true
responses:
"200":
description: removeSibling response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: removeSibling
/command/setSiblings:
post:
description: This is a request to set the Siblings for replication purposes.
operationId: setSiblings
requestBody:
description: Details about the Sibling to add
content:
application/json:
schema:
$ref: '#/components/schemas/setSiblingsParams'
required: true
responses:
"200":
description: setSiblings response
content:
application/json:
schema:
required:
- status
type: object
properties:
status:
type: string
example:
status: ok
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
x-codegen-request-body-name: setSiblings
/metrics:
get:
description: Retrieve prometheus metrics
operationId: metrics
responses:
"200":
description: Prometheus metrics in the format described at https://prometheus.io/docs/instrumenting/exposition_formats/
content:
text/plain:
schema:
type: string
default:
description: unexpected error
content:
text/plain:
schema:
$ref: '#/components/schemas/Error'
/readyz:
get:
security: [] # No auth needed
description: Determine if wforce is ready to accept queries
operationId: readyz
responses:
"200":
description: wforce is ready to accept queries
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
/livez:
get:
security: [] # No auth needed
description: Determine if wforce is up
operationId: livez
responses:
"200":
description: wforce is up
default:
description: unexpected error
content:
application/json:
schema:
$ref: '#/components/schemas/Error'
components:
securitySchemes:
BasicAuth:
type: http
scheme: basic
schemas:
CustomFuncArgs:
required:
- attrs
type: object
properties:
attrs:
$ref: '#/components/schemas/LTAttrs'
example:
attrs:
key: value
LoginTupleReport:
required:
- login
- pwhash
- remote
- success
type: object
properties:
login:
type: string
remote:
type: string
pwhash:
type: string
success:
type: boolean
policy_reject:
type: boolean
fail_type:
type: string
enum:
- internal
- credentials
- account
- expired
- disabled
- policy
protocol:
type: string
enum:
- http
- imap
- pop3
- smtp
- mobileapi
tls:
type: boolean
device_id:
type: string
attrs:
$ref: '#/components/schemas/LTAttrs'
example:
login: joe.bloggs
remote: 192.168.1.2
pwhash: cc04
success: true
fail_type: credentials
LTAttrs:
type: object
properties:
attr_name_single_value:
type: string
attr_name multi_value:
type: array
items:
type: string
example:
attr1: value1
attr2: value2
attr3:
- value3
- value4
LoginTupleAllow:
required:
- login
- pwhash
- remote
type: object
properties:
login:
type: string
remote:
type: string
pwhash:
type: string
protocol:
type: string
enum:
- http
- imap
- pop
- smtp
- mobileapi
tls:
type: boolean
device_id:
type: string
attrs:
$ref: '#/components/schemas/LTAttrs'
example:
login: joe.bloggs
remote: 192.168.1.2
pwhash: cc04
success: true
protocol: http
tls: true
attrs:
foo: bar
ResetStatsParams:
type: object
properties:
ip:
type: string
login:
type: string
ja3:
type: string
example:
ip: 127.0.0.1
DelBLWLEntryParams:
type: object
properties:
ip:
type: string
netmask:
type: string
login:
type: string
ja3:
type: string
example:
ip: 127.0.0.1
netmask: 2001:503:ba3e/64
AddBLWLEntryParams:
type: object
properties:
ip:
type: string
netmask:
type: string
login:
type: string
ja3:
type: string
expire_secs:
type: integer
reason:
type: string
example:
ip: 127.0.0.1
netmask: 2001:503:ba3e::/64
expire_secs: 3600
reason: Is there ever a good reason
CustomError:
required:
- reason
- success
type: object
properties:
success:
type: boolean
reason:
type: string
example:
success: false
reason: Unauthorized
Error:
required:
- reason
- status
type: object
properties:
status:
type: string
reason:
type: string
example:
status: failure
reason: Unauthorized
BLWLResponse:
type: object
properties:
bl_entries:
type: array
items:
$ref: '#/components/schemas/BLWLArray'
BLWLArray:
type: object
properties:
ip:
$ref: '#/components/schemas/BLWLEntry'
login:
$ref: '#/components/schemas/BLWLEntry'
iplogin:
$ref: '#/components/schemas/BLWLEntry'
ja3:
$ref: '#/components/schemas/BLWLEntry'
ipja3:
$ref: '#/components/schemas/BLWLEntry'
BLWLEntry:
type: array
items:
type: object
properties:
key_name:
type: string
expiration:
type: string
reason:
type: string
example:
login: joe.bloggs
expiration: 2002-Jan-01 10:00:01
reason: Too many invalid login attempts from greylisted countries
DBStatsResponse:
required:
- blacklisted
- key_name
- stats
type: object
properties:
key_name:
type: string
blacklisted:
type: boolean
bl_expire:
type: string
bl_reason:
type: string
whitelisted:
type: boolean
wl_expire:
type: string
wl_reason:
type: string
stats:
$ref: '#/components/schemas/DBStatsEntry'
DBStatsEntry:
type: object
properties:
db_name:
$ref: '#/components/schemas/DBStatsFields'
DBStatsFields:
type: object
properties:
field_name:
type: integer
example:
countLogins: 239
diffPassword: 10
statsResponse:
type: object
properties:
reports:
type: integer
allows:
type: integer
denieds:
type: integer
sys-msec:
type: integer
user-msec:
type: integer
perfstats:
type: object
properties:
WTW_0_1:
type: integer
WTW_1_10:
type: integer
WTW_10_100:
type: integer
WTW_100_1000:
type: integer
WTW_Slow:
type: integer
WTR_0_1:
type: integer
WTR_1_10:
type: integer
WTR_10_100:
type: integer
WTR_100_1000:
type: integer
WTR_Slow:
type: integer
description: Latency buckets for worker thread wait (WTW) and run (WTR)for
last 5 minutes
commandstats:
type: object
properties:
addBLEntry:
type: integer
delBLEntry:
type: integer
getBL:
type: integer
addWLEntry:
type: integer
delWLEntry:
type: integer
getWL:
type: integer
getDBStats:
type: integer
stats:
type: integer
allow:
type: integer
allow_allowed:
type: integer
allow_blacklisted:
type: integer
allow_whitelisted:
type: integer
allow_denied:
type: integer
allow_tarpitted:
type: integer
report:
type: integer
reset:
type: integer
ping:
type: integer
syncDBs:
type: integer
syncDone:
type: integer
description: Count of REST API commands run in last 5 minutes
customstats:
type: object
properties:
custom_stat:
type: integer
description: Count of custom statistics in last 5 minutes
example:
reports: 28291
allows: 120321
denieds: 20201
sys-msec: 97211221
user-msec: 292910108
perfstats:
WTR_0_1: 0
WTR_100_1000: 0
WTR_10_100: 0
WTR_1_10: 0
WTR_Slow: 0
WTW_0_1: 1
WTW_100_1000: 0
WTW_10_100: 0
WTW_1_10: 0
WTW_Slow: 0
commandstats:
addBLEntry: 0
addWLEntry: 1
allow: 8
allow_allowed: 4
allow_blacklisted: 0
allow_denied: 0
allow_tarpitted: 0
allow_whitelisted: 4
delBLEntry: 0
delWLEntry: 0
getBL: 0
getDBStats: 0
getWL: 0
ping: 0
report: 0
reset: 0
stats: 3
syncDBs: 0
syncDone: 0
customstats:
custom1: 0
custom2: 0
syncDBsParams:
required:
- callback_url
- replication_host
- replication_port
type: object
properties:
replication_host:
type: string
replication_port:
type: integer
callback_url:
type: string
callback_auth_pw:
type: string
encryption_key:
type: string
dumpEntriesParams:
required:
- dump_host
- dump_port
type: object
properties:
dump_host:
type: string
dump_port:
type: integer
addSiblingParams:
required:
- sibling_host
- sibling_port
type: object
properties:
sibling_host:
type: string
sibling_port:
type: integer
sibling_protocol:
type: string
enum:
- tcp
- udp
encryption_key:
type: string
removeSiblingParams:
required:
- sibling_host
- sibling_port
type: object
properties:
sibling_host:
type: string
sibling_port:
type: integer
setSiblingsParams:
type: object
properties:
siblings:
type: array
items:
required:
- sibling_host
- sibling_port
type: object
properties:
sibling_host:
type: string
sibling_port:
type: integer
sibling_protocol:
type: string
enum:
- tcp
- udp
encryption_key:
type: string
security:
- BasicAuth: []
|