Skip to content
Snippets Groups Projects
  1. Nov 25, 2020
    • Benjamin Bertrand's avatar
      Improve logging · 239d9edf
      Benjamin Bertrand authored
      - Remove extra handler - flask default handler is fine (everything was
        logged twice due to changes in flask 1.0)
      - Add more logging messages
      
      JIRA INFRA-2899 #action In Progress
      239d9edf
  2. Oct 22, 2020
  3. Oct 02, 2020
  4. Jul 08, 2020
  5. Apr 15, 2020
  6. Mar 17, 2020
    • Benjamin Bertrand's avatar
      Fix get_hosts for normal users · 811e936a
      Benjamin Bertrand authored
      The SQL query to filter hosts on sensitive networks was incorrect
      because of the join on Interfaces. There can be several interfaces per
      host.
      DISTINCT added to return only the proper number of hosts.
      
      JIRA INFRA-1888 #action In Progress
      811e936a
  7. Mar 09, 2020
  8. Mar 05, 2020
  9. Feb 03, 2020
  10. Jan 28, 2020
  11. Oct 29, 2019
  12. Aug 27, 2019
  13. Apr 03, 2019
  14. Apr 02, 2019
  15. Mar 05, 2019
    • Benjamin Bertrand's avatar
      Remove tags and add is_ioc field to host table · f331b452
      Benjamin Bertrand authored
      Tags were basically only used for IOCs.
      Tags were linked to the interface (and not the host).
      But for IOC we assume it should always be the main (first) interface.
      
      Using a field on the host table will make it more obvious for users.
      
      Created a IOC dynamic group type, to create a group including all IOCs
      
      JIRA INFRA-862 #action In Progress
      f331b452
  16. Feb 28, 2019
  17. Nov 30, 2018
    • Benjamin Bertrand's avatar
      Add extra fields to the API · e6494e47
      Benjamin Bertrand authored
      - add fqdn to host
      - add gateway to network
      - add netmask to interface
      - allow to pass recursive via the API (to expand interfaces in host)
      - add is_main property to interface (True if the interface is the main
        interface of the host)
      
      JIRA INFRA-640
      e6494e47
  18. Nov 27, 2018
  19. Nov 06, 2018
    • Benjamin Bertrand's avatar
      Make host/interface/cname unique · fc7ac34a
      Benjamin Bertrand authored
      - Host names are unique (no 2 hosts with same name)
      - A host name shall not conflict with a cname or interface (if not main
      interface)
      - Interface names are unique (no 2 interfaces with same name)
      - An interface shall not conflict with a cname or host (if not assigned
      host)
      - cnames are only unique by domain (2 cnames can have the same name if
      different domains)
      - A cname shall not conflict with a host or interface
      - An interface has to be linked to a host
      
      Validation is implemented at the model level.
      Some is also implemented at the form level as it gives nicer feedback,
      but not all as it's a bit more complex when it requires check on several fields.
      
      JIRA INFRA-245
      fc7ac34a
    • Benjamin Bertrand's avatar
      Make mac addresses unique by interface · 16ac3272
      Benjamin Bertrand authored
      - mac is now a column in the interface table (no link to the mac table)
      - mac column is unique (can't have 2 interfaces with the same mac)
      - the mac table is kept for the items
      
      JIRA INFRA-639
      16ac3272
  20. Sep 28, 2018
  21. Aug 08, 2018
    • Benjamin Bertrand's avatar
      Replace jwt decorators with flask-login · fb3f568e
      Benjamin Bertrand authored
      Using flask-login request_loader, we can validate jwt tokens.
      This allows to use the same decorators for the web UI (using cookies)
      and the API (using JWT) as well as the current_user local proxy.
      fb3f568e
  22. Jul 19, 2018
  23. Jul 12, 2018
    • Benjamin Bertrand's avatar
      Add ansible_group table · 5e76c0b1
      Benjamin Bertrand authored
      - add ansible_groups_hosts_table for many-to-many relationship between
      groups and hosts
      - add new api endpoint /network/groups
      
      JIRA INFRA-412
      5e76c0b1
  24. Jul 06, 2018
  25. Apr 20, 2018
  26. Apr 10, 2018
  27. Apr 06, 2018
  28. Mar 13, 2018
  29. Feb 28, 2018
  30. Feb 23, 2018
  31. Feb 20, 2018
  32. Feb 14, 2018
  33. Feb 09, 2018
    • Benjamin Bertrand's avatar
      Add domain table · f627e2c9
      Benjamin Bertrand authored
      - add domain_id on NetworkScope table to define a default domain
      - add domain_id on Network (default to the Network Scope one)
      
      Fixes INFRA-194
      f627e2c9
Loading